/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.header.scrolled .nav-link {
  color: #fff !important;
}


html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: "Inter", sans-serif;
  line-height: 1.6;
  color: #1f2937;
  background-color: #ffffff;
  overflow-x: hidden;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Playfair Display", serif;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
}

h3 {
  font-size: clamp(1.5rem, 3vw, 2rem);
}

h4 {
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
}

p {
  margin-bottom: 1rem;
  line-height: 1.7;
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 768px) {
  .container {
    padding: 0 2rem;
  }
}

/* Utilities */
.text-gradient {
  background: linear-gradient(135deg, #d4af37 0%, #f4e4bc 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-padding {
  padding: 4rem 0;
}

@media (min-width: 768px) {
  .section-padding {
    padding: 6rem 0;
  }
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-title {
  margin-bottom: 1.5rem;
}

.section-description {
  font-size: 1.125rem;
  color: #6b7280;
  max-width: 48rem;
  margin: 0 auto;
}

.section-cta {
  text-align: center;
  margin-top: 3rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 2rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 0.5rem;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  font-size: 1rem;
  line-height: 1;
}

.btn-primary {
  background: linear-gradient(135deg, #d4af37 0%, #f4e4bc 100%);
  color: #000;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #b8941f 0%, #d4af37 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}

.btn-secondary {
  background: transparent;
  color: white;
  border: 2px solid #d4af37;
}

.btn-secondary:hover {
  background: #d4af37;
  color: white;
}

.btn-large {
  padding: 1rem 2.5rem;
  font-size: 1.125rem;
}

.btn-full {
  width: 100%;
}

/* Icons */
.icon {
  width: 1.5rem;
  height: 1.5rem;
  stroke-width: 2;
}

/* Top Bar */
.top-bar {
  background: #1f2937;
  color: white;
  padding: 0.75rem 0;
  font-size: 0.875rem;
  position: relative;
  z-index: 999;
  width: 100%;
  display: block;
}

.top-bar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.contact-info {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  align-items: center;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  white-space: nowrap;
}

.contact-item .icon {
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
}

.availability {
  color: #fbbf24;
  font-weight: 500;
  white-space: nowrap;
}

/* Mobile styles for top bar */
@media (max-width: 768px) {
  .top-bar {
    padding: 0.75rem 0;
    font-size: 0.75rem;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    position: relative;
    z-index: 1001;
  }

  .top-bar-content {
    flex-direction: column;
    gap: 0.75rem;
    text-align: center;
    align-items: center;
  }

  .contact-info {
    gap: 1.5rem;
    justify-content: center;
    width: 100%;
    flex-direction: row;
    flex-wrap: wrap;
  }

  .contact-item {
    font-size: 0.75rem;
    gap: 0.5rem;
    min-width: auto;
  }

  .contact-item span {
    font-size: 0.75rem;
    white-space: nowrap;
  }

  .availability {
    font-size: 0.8rem;
    text-align: center;
    font-weight: 600;
  }
}

@media (max-width: 480px) {
  .top-bar {
    padding: 0.5rem 0;
  }

  .navbar {
    padding: 0px !important;
  }

  .header {
    top: 3.5rem !important;
    /* Altura del top-bar compacto */
  }

  .contact-info {
    flex-direction: column;
    gap: 0.75rem;
  }

  .contact-item {
    justify-content: center;
  }

  .availability {
    font-size: 0.75rem;
  }
}

/* Header */
.header {
  position: fixed;
  top: -10px;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: all 0.3s ease;
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(8px);
  margin-top: 3.5rem;
  /* Espacio para el top-bar */
}

.header.scrolled {
  margin-top: 0;
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  top: 0 !important;
}

@media (max-width: 768px) {
  .header {
    margin-top: 0;
    position: fixed;
    top: 0;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(8px);
    padding-top: 4rem;
    /* Espacio para el top-bar */
  }

  .header.scrolled {
    padding-top: 0;
    margin-top: 0;
  }
}

.navbar {
  padding: 1rem 0;
}

.nav-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-img {
  height: 4rem;
  width: auto;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  color: white;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
  position: relative;
}

.nav-link:hover {
  color: #fbbf24;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: #fbbf24;
  transition: width 0.3s ease;
}

.nav-link:hover::after {
  width: 100%;
}


.header.scrolled .nav-link:hover {
  color: #d4af37;
}

/* Mobile Menu */
.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  color: red;
}

.hamburger-line {
  width: 25px;
  height: 3px;
  background: white;
  transition: all 0.3s ease;
}

.header.scrolled .hamburger-line {
  background: #fff;
}

@media (max-width: 1024px) {
  .nav-menu {
    position: fixed;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    flex-direction: column;
    padding: 2rem;
    gap: 1rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
  }

  .header.scrolled .nav-link {
    color: #000 !important;
  }


  .nav-menu.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .nav-menu .nav-link {
    color: #1f2937;
    padding: 0.5rem 0;
    border-bottom: 1px solid #e5e7eb;
  }

  .nav-menu .nav-link:last-child {
    border-bottom: none;
  }

  .mobile-menu-btn {
    display: flex;
  }

  .mobile-menu-btn.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .mobile-menu-btn.active .hamburger-line:nth-child(2) {
    opacity: 0;
  }

  .mobile-menu-btn.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
  }
}

/* Hero Section */
.hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: white;
  padding-top: 9rem;
  /* Espacio para top-bar + header */
}

@media (max-width: 768px) {
  .hero {
    padding-top: 4rem;
    min-height: 115vh;
  }
}

.hero-slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.hero-slide.active {
  opacity: 1;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 64rem;
  margin: 0 auto;
  padding: 0 1rem;
}

.hero-title {
  font-size: clamp(3rem, 8vw, 5rem);
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

.hero-subtitle {
  font-size: clamp(1.25rem, 3vw, 1.5rem);
  color: #d1d5db;
  margin-bottom: 3rem;
}

.hero-features {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.125rem;
}

.feature-item .icon {
  color: #fbbf24;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  color: white;
}

.bounce {
  animation: bounce 2s infinite;
}

@keyframes bounce {

  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }

  40% {
    transform: translateY(-10px);
  }

  60% {
    transform: translateY(-5px);
  }
}

.slide-indicators {
  position: absolute;
  bottom: 5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.5rem;
}

.indicator {
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.indicator.active {
  background: #fbbf24;
}

/* Services Section */
.services {
  background: #f9fafb;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.service-card {
  background: white;
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.service-icon {
  width: 4rem;
  height: 4rem;
  background: linear-gradient(135deg, #d4af37 0%, #f4e4bc 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: transform 0.3s ease;
}

.service-card:hover .service-icon {
  transform: scale(1.1);
}

.service-icon .icon {
  color: white;
  width: 2rem;
  height: 2rem;
}

.service-title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #1f2937;
}

.service-description {
  color: #6b7280;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.service-features {
  list-style: none;
  margin-bottom: 1.5rem;
}

.service-features li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
  font-size: 0.875rem;
  color: #4b5563;
}

.service-features li::before {
  content: "";
  width: 0.5rem;
  height: 0.5rem;
  background: #fbbf24;
  border-radius: 50%;
  flex-shrink: 0;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #d4af37;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.service-link:hover {
  color: #b8941f;
}

.service-link .icon {
  width: 1rem;
  height: 1rem;
  transition: transform 0.3s ease;
}

.service-link:hover .icon {
  transform: translateX(4px);
}

/* About Section */
.about-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 5rem;
}

@media (min-width: 1024px) {
  .about-content {
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
  }
}

.about-description {
  font-size: 1.125rem;
  color: #6b7280;
  margin-bottom: 2rem;
  line-height: 1.7;
}

.about-features {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.about-feature {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.feature-check {
  width: 1.5rem;
  height: 1.5rem;
  background: #fbbf24;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.feature-check .icon {
  color: white;
  width: 0.75rem;
  height: 0.75rem;
}

.feature-content h4 {
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 0.25rem;
}

.feature-content p {
  color: #6b7280;
  margin: 0;
}

.about-image {
  position: relative;
}

.image-container {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.image-container img {
  width: 100%;
  height: auto;
  display: block;
}

.floating-card {
  position: absolute;
  bottom: -2rem;
  left: -2rem;
  background: white;
  padding: 1.5rem;
  border-radius: 0.75rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  max-width: 12rem;
}

.card-icon {
  width: 3rem;
  height: 3rem;
  background: #fbbf24;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.card-icon .icon {
  color: white;
  width: 1.5rem;
  height: 1.5rem;
}

.card-title {
  font-weight: 700;
  color: #1f2937;
  font-size: 0.875rem;
}

.card-subtitle {
  font-size: 0.75rem;
  color: #6b7280;
}

/* Stats */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

@media (min-width: 768px) {
  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}




.stat-item {
  text-align: center;
}

.stat-icon {
  width: 4rem;
  height: 4rem;
  background: linear-gradient(135deg, #d4af37 0%, #f4e4bc 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.stat-icon .icon {
  color: white;
  width: 2rem;
  height: 2rem;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 0.5rem;
}

@media (min-width: 768px) {
  .stat-number {
    font-size: 3rem;
  }
}

.stat-label {
  color: #6b7280;
  font-weight: 500;
}

/* Testimonials Section */
.testimonials {
  background: #f9fafb;
}

.testimonials-slider {
  position: relative;
  max-width: 64rem;
  margin: 0 auto;
}

.testimonial-card {
  background: white;
  padding: 3rem;
  border-radius: 1rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  text-align: center;
  display: none;
}

.testimonial-card.active {
  display: block;
}

.testimonial-stars {
  display: flex;
  justify-content: center;
  gap: 0.25rem;
  margin-bottom: 1.5rem;
}

.star {
  width: 1.5rem;
  height: 1.5rem;
  color: #fbbf24;
}

.testimonial-quote {
  font-size: 1.25rem;
  color: #4b5563;
  margin-bottom: 2rem;
  line-height: 1.6;
  font-style: italic;
}

@media (min-width: 768px) {
  .testimonial-quote {
    font-size: 1.5rem;
  }
}

.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.author-image {
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  object-fit: cover;
}

.author-info {
  text-align: left;
}

.author-name {
  font-weight: 700;
  color: #1f2937;
  font-size: 1.125rem;
}

.author-role {
  color: #6b7280;
  font-size: 0.875rem;
}

.author-company {
  color: #d4af37;
  font-weight: 500;
  font-size: 0.875rem;
}

.testimonial-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 3rem;
  height: 3rem;
  background: white;
  border: none;
  border-radius: 50%;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.testimonial-nav:hover {
  background: #f9fafb;
}

.testimonial-nav.prev {
  left: 1rem;
}

.testimonial-nav.next {
  right: 1rem;
}

.testimonial-nav .icon {
  color: #6b7280;
}

.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 2rem;
}

.dot {
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 50%;
  background: #d1d5db;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot.active {
  background: #fbbf24;
}

/* Contact Section */
.contact-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
}

@media (min-width: 1024px) {
  .contact-content {
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
  }
}

.contact-title {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  color: #1f2937;
}

.contact-items {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact-icon {
  width: 3rem;
  height: 3rem;
  background: linear-gradient(135deg, #d4af37 0%, #f4e4bc 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon .icon {
  color: white;
  width: 1.5rem;
  height: 1.5rem;
}

.contact-details h4 {
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 0.25rem;
}

.contact-details p {
  color: #6b7280;
  margin: 0;
}

.emergency-contact {
  background: #fef2f2;
  border: 1px solid #fecaca;
  padding: 1.5rem;
  border-radius: 0.75rem;
}

.emergency-contact h4 {
  color: #991b1b;
  margin-bottom: 0.5rem;
}

.emergency-contact p {
  color: #b91c1c;
  margin: 0;
}

.emergency-number {
  font-weight: 700;
  font-size: 1.125rem;
  color: #991b1b !important;
}

/* Contact Form */
.contact-form-container {
  background: #f9fafb;
  padding: 2rem;
  border-radius: 1rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .form-row {
    grid-template-columns: 1fr 1fr;
  }
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-weight: 500;
  color: #374151;
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.75rem 1rem;
  border: 1px solid #d1d5db;
  border-radius: 0.5rem;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #fbbf24;
  box-shadow: 0 0 0 3px rgba(251, 191, 36, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

/* Footer */
.footer {
  background: #1f2937;
  color: white;
}

.footer-main {
  padding: 4rem 0;
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .footer-content {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .footer-content {
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
  }
}

.footer-section {
  display: flex;
  flex-direction: column;
}

.footer-logo {
  display: inline-block;
  margin-bottom: 1.5rem;
}

.footer-description {
  color: #d1d5db;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-link {
  width: 2.5rem;
  height: 2.5rem;
  background: #d4af37;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-link:hover {
  background: #b8941f;
  transform: translateY(-2px);
}

.social-link .icon {
  width: 1.25rem;
  height: 1.25rem;
}

.footer-title {
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
  color: white;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links a {
  color: #d1d5db;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #fbbf24;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-contact .contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.footer-contact .icon {
  color: #fbbf24;
  width: 1.25rem;
  height: 1.25rem;
  margin-top: 0.125rem;
  flex-shrink: 0;
}

.footer-contact .contact-item div {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.footer-contact p {
  color: #d1d5db;
  margin: 0;
  font-size: 0.875rem;
}

.emergency-footer {
  background: rgba(220, 38, 38, 0.2);
  border: 1px solid rgba(220, 38, 38, 0.3);
  padding: 1rem;
  border-radius: 0.5rem;
  margin-top: 1.5rem;
}

.emergency-footer h4 {
  color: #fca5a5;
  margin-bottom: 0.25rem;
  font-size: 0.875rem;
}

.emergency-footer p {
  color: #fecaca;
  font-weight: 700;
  font-size: 1.125rem;
  margin: 0;
}

.footer-bottom {
  border-top: 1px solid #374151;
  padding: 1.5rem 0;
}

.footer-bottom-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  text-align: center;
}

@media (min-width: 768px) {
  .footer-bottom-content {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

.copyright {
  color: #9ca3af;
  font-size: 0.875rem;
}

.legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
}

@media (min-width: 768px) {
  .legal-links {
    justify-content: flex-end;
  }
}

.legal-links a {
  color: #9ca3af;
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.3s ease;
}

.legal-links a:hover {
  color: #fbbf24;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-features {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .about-content {
    text-align: center;
  }

  .about-image {
    order: -1;
  }

  .floating-card {
    position: static;
    margin-top: 1rem;
    max-width: none;
  }

  .stats-grid {
    gap: 1.5rem;
  }

  .testimonial-card {
    padding: 2rem 1rem;
  }

  .testimonial-author {
    flex-direction: column;
    text-align: center;
  }

  .author-info {
    text-align: center;
  }

  .testimonial-nav {
    display: none;
  }

  .contact-content {
    gap: 2rem;
  }
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in-up {
  animation: fadeInUp 0.6s ease-out;
}

/* Loading States */
.loading {
  opacity: 0.6;
  pointer-events: none;
}

/* Smooth Scrolling */
@media (prefers-reduced-motion: no-preference) {
  html {
    scroll-behavior: smooth;
  }
}

/* Print Styles */
@media print {

  .header,
  .footer,
  .btn,
  .social-links {
    display: none;
  }

  body {
    font-size: 12pt;
    line-height: 1.4;
  }

  .section-padding {
    padding: 1rem 0;
  }
}

/* Logo visibility improvements */
.header:not(.scrolled) .logo-img {
  filter: brightness(1.2) contrast(1.1);
  drop-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.header.scrolled .logo-img {
  filter: none;
}

.float-wa {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 40px;
  right: 40px;
  background-color: #25d366;
  color: #FFF;
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  z-index: 100;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

 @keyframes pulse {
            0%, 100% {
                opacity: 1;
            }
            50% {
                opacity: 0.5;
            }
        }
        
        @media (max-width: 768px) {
            .destinations-grid {
                grid-template-columns: 1fr !important;
                gap: 24px !important;
            }
            
            .section-title {
                font-size: 2.5rem !important;
            }
            
            .section-description {
                font-size: 1.1rem !important;
            }
        }
        
        @media (max-width: 480px) {
            .section-title {
                font-size: 2rem !important;
            }
            
            .destination-card {
                margin: 0 10px;
            }
        }

        /* Responsive Design */
@media (max-width: 768px) {
    .contact-form-container {
        margin: 0 16px !important;
        padding: 24px !important;
    }
    
    .form-row {
        grid-template-columns: 1fr !important;
        gap: 16px !important;
    }
    
    .contact-title {
        font-size: 1.5rem !important;
    }
}

@media (max-width: 480px) {
    .contact-form-container {
        margin: 0 8px !important;
        padding: 20px !important;
    }
    
    .contact-title {
        font-size: 1.3rem !important;
    }
    
    input, select, textarea, button {
        font-size: 16px !important; /* Evita zoom en iOS */
    }
}

/* Animaciones adicionales */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.contact-form-container {
    animation: fadeIn 0.6s ease-out;
}

/* Estilos para campos válidos */
input:valid, select:valid, textarea:valid {
    border-color: #10b981 !important;
}

input:invalid:not(:placeholder-shown), select:invalid:not(:placeholder-shown) {
    border-color: #ef4444 !important;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 16px !important;
    }
    
    .section-title {
        font-size: 2.5rem !important;
    }
    
    .section-description {
        font-size: 1.1rem !important;
    }
    
    .faq-question {
        font-size: 1.1rem !important;
        padding: 20px !important;
    }
    
    .faq-question span {
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 12px !important;
    }
    
    .faq-answer > div {
        padding: 0 20px 20px 20px !important;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 2rem !important;
    }
    
    .faq-question {
        font-size: 1rem !important;
        padding: 16px !important;
    }
    
    .faq-answer > div {
        padding: 0 16px 16px 16px !important;
    }
}