        :root {
            --primary-color: #990099; 
            --secondary-color: #d1b28d; 
            --text-color: #4b4b4b;
            --bg-light: #fefcfb;
            --font-main: 'Inter', sans-serif;
            --font-title: 'Georgia', serif;
        }

        body {
            font-family: var(--font-main);
            color: var(--text-color);
            background-color: var(--bg-light);
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            overflow-x: hidden;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1.5rem;
        }
        
.main-header {
  width: 100%;
  box-shadow: var(--shadow-light);
  z-index: 1000;
  background-color: var(--white-color);
  position: fixed;
  top: 0;
  left: 0;
}

.header-superior {
  width: 100%;
  height: 40px;
  background-color: #66003c;
}

.header-inferior {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color:white;
  padding: 0 50px; 
  height: 60px; 
  position: relative;
  z-index: 10;
}

.logo-container {
  position: relative;
  width: 140px;
  height: 80px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  margin-top: -75px;
  z-index: 5;
}

.logo-content {
  position: absolute;
  top: -25px;
  left: 50%;
  transform: translateX(-33%);
  width: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1;
}

.logo-image {
  height: 280px;
  object-fit: contain;
}

/* ===== NAVBAR MEJORADO ===== */
.navbar {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-grow: 1;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 10px;
}

.navbar ul {
  list-style: none;
  display: flex;
  gap: 5px;
  align-items: center;
}

.navbar li {
  position: relative;
}

.navbar li a {
  text-decoration: none;
  color: var(--text-color);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 10px 10px;
  border-radius: 8px;
  transition: all 0.3s ease;
  display: block;
  position: relative;
}

/* Línea animada inferior */
.navbar li a::after {
  content: '';
  position: absolute;
  bottom: 8px;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--primary-color);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.navbar li a:hover {
  color: var(--primary-color);
  background: rgba(0, 170, 162, 0.08);
}

.navbar li a:hover::after {
  width: 60%;
}

/* ===== DROPDOWN ===== */
.dropdown {
  position: relative;
}

.dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 5px;
}

/* Flecha del dropdown */
.dropdown-toggle::before {
  content: '▾';
  font-size: 0.8rem;
  transition: all 0.3s ease;
  order: 2;
}

.dropdown:hover .dropdown-toggle::before {
  transform: rotate(180deg);
}

/* ===== SUBMENU CORREGIDO ===== */
.submenu {
  position: absolute;
  top: 120%;
  left: 0;
  min-width: 260px;
  background: white;
  padding: 8px;
  border-radius: 12px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  transition: all 0.3s ease;
  list-style: none;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(0, 0, 0, 0.06);
  z-index: 1000;
}

.dropdown:hover .submenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.submenu li {
  width: 100%;
  margin: 0;
}

/* SOLUCIÓN: La flecha ahora es position: absolute */
.submenu a {
  display: block;
  padding: 14px 18px 14px 45px;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-color);
  border-radius: 8px;
  transition: all 0.3s ease;
  border-left: 3px solid transparent;
  position: relative;
}

/* Flecha posicionada absolutamente */
.submenu a::before {
  content: '→';
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%) translateX(-10px);
  font-size: 1.2rem;
  color: var(--primary-color);
  opacity: 0;
  transition: all 0.3s ease;
}

.submenu a:hover {
  background: linear-gradient(135deg, rgba(0, 170, 162, 0.1), rgba(22, 50, 60, 0.05));
  padding-left: 45px;
  border-left-color: var(--primary-color);
  color: var(--primary-color);
}

.submenu a:hover::before {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}

/* Eliminar el ::after de los enlaces del submenu */
.submenu a::after {
  display: none !important;
}

/* ===== BOTÓN DE CONTACTO ===== */
.btn-contact {
  background: #66003c;
  color: white !important;
  padding: 12px 28px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.9rem;
  margin-left: 20px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(233, 3, 214, 0.3);
}

.btn-contact:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(211, 6, 214, 0.4);
}

.btn-contact::after {
  display: none !important;
}



/* ===== NAVBAR MÓVIL ===== */
.menu-toggle {
  display: none;
  font-size: 2em;
  cursor: pointer;
  padding: 10px;
  z-index: 1001;
  user-select: none;
  transition: transform 0.3s ease;
}

.menu-toggle::before { 
  content: "☰"; 
}

.menu-toggle.open::before { 
  content: "✖"; 
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
}

@media (hover: hover) {
  .navbar li.dropdown:hover .submenu {
    max-height: 500px;
    opacity: 1;
  }
}

.dropdown-toggle .fa-chevron-down {
  margin-left: 0.4rem;
  font-size: 0.75em;
  transition: transform 0.3s ease;
}

.menu-toggle {
  display: none;
  font-size: 1.8rem;
  cursor: pointer;
  padding: 8px;
  user-select: none;
}

.menu-toggle .fa-xmark { display: none; }
.menu-toggle.open .fa-bars { display: none; }
.menu-toggle.open .fa-xmark { display: inline; }

@media (max-width: 768px) {
  .menu-toggle {
    display: block;
    color: var(--text-color);
  }

  .nav-links {
    display: none;
    flex-direction: column;
    width: 100%;
    background: var(--white-color);
    padding: 1.5rem 0;
    gap: 1rem;
    position: absolute;
    top: 100%;
    left: 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  }

  .nav-links.active { display: flex; }

  .navbar ul {
    flex-direction: column;
    gap: 0.5rem;
    width: 100%;
    text-align: center;
  }

  .navbar li a {
    font-size: 1.05em;
    padding: 0.75rem;
  }

  .btn-contact { margin: 1rem auto 0; }

  .navbar .submenu {
    position: static;
    background: none;
    box-shadow: none;
    border-radius: 0;
    min-width: unset;
    opacity: 1;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
  }

  .navbar li.dropdown.open .submenu { max-height: 500px; }

  .navbar .submenu li a {
    background: rgba(0, 0, 0, 0.05);
    margin: 0.25rem 2rem;
    border-radius: 6px;
    font-size: 0.9em;
  }

  .navbar li.dropdown.open > a .fa-chevron-down {
    transform: rotate(180deg);
  
  }
}

@media (max-width: 768px) {
  .navbar .submenu {
    position: static;
    background: none;
    border-radius: 0;
    min-width: unset;
    opacity: 1;
    max-height: 0;  
    overflow: hidden;
    transition: max-height 0.45s cubic-bezier(0.25, 1, 0.5, 1);
    padding: 0;
  }

  .navbar li.dropdown:focus-within .submenu {
    max-height: 600px;
    padding: 0.7rem 0;
  }

  .navbar .submenu li {
    margin: 0.5rem 1.2rem;
    border-radius: 10px;
    background: linear-gradient(135deg, #990099, #b84db8);
    box-shadow: 0 4px 10px rgba(153, 0, 153, 0.25);
    overflow: hidden;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.3s ease;
  }

  .navbar .submenu li:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(153, 0, 153, 0.35);
    background: linear-gradient(135deg, #b84db8, #e066e0);
  }

  .navbar .submenu li a {
    display: block;
    padding: 1rem 1.2rem;
    font-size: 0.95em;
    font-weight: 600;
    color: #fff; 
    transition: color 0.3s ease;
  }

  .navbar .submenu li:hover a {
    color: #fff;
  }

  .navbar li.dropdown > a .fa-chevron-down {
    transition: transform 0.3s ease;
    color: #990099;
  }
  .navbar li.dropdown:focus-within > a .fa-chevron-down {
    transform: rotate(180deg);
    color: #b84db8;
  }
}



@media (max-width: 768px) {
  .menu-toggle {
    display: block;
    color: var(--dark-color);
  }

  .nav-links {
    display: none;
    flex-direction: column;
    align-items: center;
    width: 100%;
    background-color:white;
    padding: 15px 0;
    gap: 12px;
    animation: fadeSlide 0.3s ease forwards;

    position: absolute;
    top: 100%;
    left: 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
    z-index: 1000;
  }

  .nav-links.active {
    display: flex;
  }

  @keyframes fadeSlide {
    from {
      opacity: 0;
      transform: translateY(-20px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .navbar ul {
    flex-direction: column;
    gap: 8px;
    padding: 0;
  }

  .btn-contact {
    margin: 10px 0 0 0;
  }

  .header-inferior {
    padding: 0 20px;
    height: 70px;
  }

  .logo img {
    width: 100px;
    margin-right: 18px;
  }
}

@media (min-width: 1600px) {
  .navbar ul {
    gap: 40px;
  }

  .navbar li a {
    font-size: 1.15em;
  }

  .btn-contact {
    padding: 14px 32px;
    font-size: 1.05em;
    margin-left: 50px;
  }

  .header-inferior {
    height: 95px;
  }

  .logo img {
    width: 150px;
  }
}

.hero {
  position: relative;
  height: 75vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: white;
  padding: 2rem;
  overflow: hidden;
}

.hero-fondo {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.536), rgba(0, 0, 0, 0.3));
  z-index: 1;
}

.hero-decoracion {
  position: absolute;
  right: 80px;
  bottom: 80px;
  width: 450px;
  height: 300px;
  object-fit: contain;
  opacity: 0.9;
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
}

.stats-banner {
      background: #66003c;
      display: flex;
      justify-content: space-around;
      flex-wrap: wrap;
      padding: 13px 10px;
      text-align: center;
    }


        .hero-content {
            z-index: 1;
        }

        .hero h1 {
            font-family: var(--font-title);
            font-size: 3rem;
            margin: 0;
        }
        
        .hero p {
            font-size: 1.2rem;
            margin-top: 0.5rem;
        }

        .section {
            padding: 4rem 0;
        }
        
        .section-title {
            text-align: center;
            font-family: 'Montserrat', sans-serif;
            font-size: 3rem;
            font-weight: 800;
            color:#990099;
        }
        
        .section-p {
          font-family: 'Montserrat', sans-serif;
          font-size: 1.01rem;
          font-weight: 800;
          color: black;
          text-align: center;
        }

        .section-texto {
            text-align: center;
            font-family: Verdana, sans-serif;
            font-size: 2.5rem;
            color:white;
            margin-bottom: 2rem;
            
        }
        
        .about-section {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 2rem;
            margin-top: 4rem;
        }

        .about-section .content {
            flex: 1;
            text-align: center;
        }

        .about-section img {
            width: 100%;
            max-width: 500px;
            height: auto;
            border-radius: 1rem;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        }

        .services-section {
            background-color: #f9b429;
            margin-top: 6rem;
        }

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

        .service-item img {
          font-family: Verdana, sans-serif;
            width: 150px;
            height: 150px;
            margin-bottom: 1rem;
            border-radius: 50%;
            object-fit: cover;
        }

        .service-item h3 {
          font-family: 'Montserrat', sans-serif;
            font-size: 1.5rem;
            color: var(--primary-color);
            margin: 0;
        }
        
        .service-item p {
          font-family: 'Montserrat', sans-serif;
          font-weight: 600;
          color: white;
        }

        

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

        .gallery-grid img {
            width: 100%;
            height: 200px;
            object-fit: cover;
            border-radius: 0.75rem;
            transition: transform 0.3s;
        }

        .gallery-grid img:hover {
            transform: scale(1.05);
        }

        .testimonials-section {
          background-color: #990099;
          margin-top: 11rem;
        }

          
        .title {
            font-size: 3rem;
            font-weight: 800;
            text-align: center;
            margin-bottom: 1rem;
            color: #990099;
        }
        
        @media (min-width: 640px) {
            .title {
                margin-bottom: 2rem;
            }
        }

        .main-image-container {
            position: relative;
            overflow: hidden;
            border-radius: 0.75rem;
            box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
            margin-bottom: 1.5rem;
        }

        .main-image-container img {
            width: 100%;
            height: 50%;
            border-radius: 0.75rem;
            cursor: pointer;
            transition: opacity 0.3s ease-in-out;
        }

        .main-image-container img.fading {
            opacity: 0;
        }
        
        .info-container {
            display: none; 
        }

h2 {
  color: #3d1a78;
  font-weight: 700;
  font-size: 32px;
  text-align: center;
  margin-top: 40px;
  animation: fadeInDown 1s ease;
}

h2 span {
  color: #f7a600;
}

/* Carousel */
.carousel-container {
  max-width: 800px;
  margin: 30px auto;
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.carousel-slide {
  display: none;
  width: 100%;
  opacity: 0;
  transition: opacity 0.6s ease;
}

.carousel-slide.active {
  display: block;
  opacity: 1;
}

.carousel-slide img,
.carousel-slide video {
  width: 100%;
  max-height: 90vh; /* Ajusta al 90% de la ventana para videos verticales */
  object-fit: contain; /* Contiene el video sin cortarlo */
  border-radius: 15px;
  transition: transform 0.5s ease;
}

/* Opcional: efecto hover */
.carousel-slide:hover img,
.carousel-slide:hover video {
  transform: scale(1.02);
}

/* Ajuste responsive para móviles */
@media(max-width:768px){
  .carousel-slide img,
  .carousel-slide video {
    height: auto;
    max-height: 60vh;
  }

  .thumbnail { width: 70px; height: 50px; }
}


/* Botones */
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(255,255,255,0.8);
  border: none;
  font-size: 32px;
  cursor: pointer;
  border-radius: 50%;
  padding: 10px 16px;
  transition: background 0.3s;
  z-index: 10;
}

.carousel-btn:hover {
  background-color: rgba(255,255,255,1);
}

.prev { left: 10px; }
.next { right: 10px; }

/* Miniaturas */
.thumbnails {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.thumbnail {
  width: 100px;
  height: 60px;
  object-fit: cover;
  border-radius: 8px;
  cursor: pointer;
  opacity: 0.7;
  transition: transform 0.3s, opacity 0.3s, border 0.3s;
  border: 2px solid transparent;
}

.thumbnail.active,
.thumbnail:hover {
  opacity: 1;
  transform: scale(1.1);
  border: 2px solid #f7a600;
}

/* Animación del título */
@keyframes fadeInDown {
  0% { opacity: 0; transform: translateY(-40px); }
  100% { opacity: 1; transform: translateY(0); }
}

/* Responsive */
@media(max-width:768px){
  .carousel-slide img,
  .carousel-slide video { height: 300px; }

  .thumbnail { width: 70px; height: 50px; }
}

        .testimonials-wrapper {
    display: flex;
    gap: 2rem;
    align-items: center;
    margin-top: 2rem;
}

.image-container {
    flex: 1;
    max-width: 40%;
}

.image-container img {
    width: 100%;
    height: auto;
    border-radius: 1rem;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    object-fit: cover;
}

.testimonials-content {
    flex: 1;
    max-width: 50%;
}

.testimonial-card {
    background: #f7a600;
    padding: 2.5rem;
    border-radius: 1.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -20px;
    left: 20px;
    font-size: 120px;
    color: rgba(255, 255, 255, 0.1);
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.client-avatar {
    width: 60px;
    height: 60px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: #f7a600;
    font-size: 1.2rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.client-info {
    flex: 1;
}

.client-name {
    margin: 0;
    color: white;
    font-size: 1.4rem;
    font-weight: bold;
}

.client-location {
    margin: 0.2rem 0 0;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
}

.rating {
    margin-bottom: 1rem;
}

.star {
    color: #ffd700;
    font-size: 1.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.testimonial-block {
    font-style: italic;
    color: white;
    margin: 0 0 1.5rem;
    font-size: 1.2rem;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

.testimonial-footer {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding-top: 1rem;
    border-top: 2px solid rgba(255, 255, 255, 0.3);
}

.testimonial-footer span {
    color: white;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.section-texto {
    text-align: center;
    font-family: Verdana, sans-serif;
    font-size: 2.5rem;
    color: white;
    margin-bottom: 2rem;
}

/* Responsive para móviles */
@media (max-width: 768px) {
    .testimonials-wrapper {
        flex-direction: column;
    }
    
    .image-container,
    .testimonials-content {
        max-width: 100%;
    }
    
    .testimonial-card {
        padding: 2rem;
    }
    
    .client-name {
        font-size: 1.2rem;
    }
    
    .testimonial-block {
        font-size: 1.1rem;
    }
}

        .social-links-container h3 {
            color: var(--primary-color);
            margin: 0;
        }

        .social-icons {
            display: flex;
            justify-content: center;
            gap: 1.5rem;
        }

        .social-icons a {
            color: var(--primary-color);
            font-size: 2rem;
            transition: color 0.3s, transform 0.3s;
        }

        .social-icons a:hover {
            color: var(--secondary-color);
            transform: scale(1.1);
        }

        .map-container {
            margin-top: 4rem;
        }
        
        .map-container h3 {
            color: var(--primary-color);
            margin-bottom: 1.5rem;
        }

        .map-container iframe {
            width: 100%;
            height: 350px;
            border: 0;
            border-radius: 1.5rem;
            box-shadow: 0 10px 25px rgba(0,0,0,0.1);
        }
.contact-section {
  padding: 70px 20px;
  background: #fff;
}

.contact-container {
  max-width: 1200px;
  margin: 0 auto;
}

.contact-header {
  text-align: center;
  margin-bottom: 50px;
}

.contact-header h2 {
  font-size: 2.5rem;
  font-weight: bold;
}


.contact-header .highlight {
  color: #f9d342;
}

.contact-header .brand {
  color: #66003c;
  background: orange;
  padding: 5px 10px;
  border-radius: 8px;
}

.contact-description {
  margin-top: 15px;
  font-size: 1.1rem;
  font-weight: 700;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
  color: #000000;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

@media (min-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }
}

.contact-details {
  background: orange;
  color:  #66003c;
  padding: 25px;
  border-radius: 16px;
  box-shadow: 0 6px 16px rgba(0,0,0,0.15);
}

.contact-details h3 {
  margin-bottom: 20px;
  font-size: 1.3rem;
  color: #66003c;
}

.contact-item {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.contact-item i {
  font-size: 1.3rem;
  color:  #66003c;
  margin-right: 12px;
}

.contact-item a {
  color:  #66003c;
  text-decoration: none;
  font-weight: bold;
}

.contact-item a:hover {
  text-decoration: underline;
}

.social-links {
  margin-top: 20px;
}

.social-icons {
  display: flex;
  gap: 15px;
  margin-top: 10px;
}

.social-icons a {
  font-size: 2.6rem;
  color: #66003c;
  background: #66003c;
  padding: 15px;
  border-radius: 50%;
  transition: 0.3s;
}

.social-icons a:hover {
  transform: scale(1.15);
  background:  #66003c;
}

.map-container h3 {
  margin-bottom: 15px;
  font-size: 1.3rem;
  color: #f9d342;
}

.map-container iframe {
  width: 100%;
  height: 350px;
  border: none;
  border-radius: 16px;
  box-shadow: 0 6px 16px rgba(0,0,0,0.15);
}

        @media (max-width: 768px) {
            .contact-section {
                padding: 3rem 0;
            }
        }
        

        @media (min-width: 768px) {
            .about-section {
                flex-direction: row;
                text-align: left;
            }
            .about-section .content {
                text-align: left;
            }
            .contact-section {
                grid-template-columns: 1fr 1fr;
            }
        }
       .text-secundary {
  display: flex;
  flex-wrap: wrap; 
  justify-content: center;
  align-items: center;
  font-size: clamp(1.5rem, 5vw, 2.5rem);
  font-weight: bold;
  gap: 5px; 
  margin: 10px auto 0;
  max-width: 100%;
  text-align: center;
}

.text-izquierda {
  color: purple; 
}

.text-derecha {
  color: orange;
}

.main-footer {
    background: #66003c; 
    color: var(--bg-light);
    padding: 3.5rem 1.5rem;
    text-align: center;
    border-top: 5px solid var(--secondary-color);
}

.footer-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    justify-content: center;
    align-items: start;
}

@media (min-width: 768px) {
    .footer-container {
        grid-template-columns: 1.5fr 1fr 1fr 1fr;
        text-align: left;
    }
}

.footer-column {
    margin: 0 1rem;
}

.footer-column h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: white;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-column ul {
    list-style: none;
    padding: 0;
}

.footer-column li {
    margin-bottom: 0.75rem;
}

.footer-column a {
    color: var(--bg-light);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease, transform 0.2s ease;
}

.footer-column.branding-column {
    flex: 1.5;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.footer-logo img {
    height: 70px;
    width: auto;
    object-fit: contain;
}

.footer-logo-text-group h1 {
    font-size: 2.8em;
    font-weight: 700;
    color: var(--white-color);
    margin: 0;
    line-height: 1.1;
}

.slogan {
    font-style: italic;
    opacity: 0.85;
    font-size: 0.95rem;
}

/* Contacto */
.footer-column .contact-info p {
    margin: 0.5rem 0;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-column .contact-info i {
    color: var(--secondary-color);
}

/* Redes sociales */
.social-links {
    margin-top: 1.5rem;
}

.social-links h3 {
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
    color: white;
}

.social-links .social-icons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.social-links .social-icons a {
    color: var(--bg-light);
    font-size: 1.6rem;
    transition: transform 0.3s ease, color 0.3s ease;
}

.social-links .social-icons a:hover {
    color: var(--secondary-color);
    transform: scale(1.2);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.25);
    margin-top: 2.5rem;
    padding-top: 1.5rem;
    opacity: 0.85;
    font-size: 0.85rem;
    text-align: center;
}

/* ==============================
   RESPONSIVE HERO & BANNERS
============================== */
@media (max-width: 768px) {
  .hero {
    height: 60vh;
    padding: 1.5rem;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .about-section {
    flex-direction: column;
    text-align: center;
  }

  .about-section img {
    max-width: 100%;
  }

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

@media (max-width: 480px) {
  .hero {
    height: 45vh;
    padding: 1rem;
  }

  .hero h1 {
    font-size: 1.6rem;
  }

  .hero p {
    font-size: 0.9rem;
  }

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

  .lodging-grid {
    grid-template-columns: 1fr !important;
  }

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

/* ==============================
   RESPONSIVE TEXTOS
============================== */
@media (max-width: 768px) {
  .section-title {
    font-size: 1.8rem;
  }

  .section-texto {
    font-size: 1.8rem;
  }
}

/* ==============================
   FOOTER RESPONSIVE
============================== */
@media (max-width: 768px) {
  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-logo {
    justify-content: center;
  }

  .social-links .social-icons {
    justify-content: center;
  }
}

/* Ocultar logo en pantallas pequeñas */
@media (max-width: 768px) {
  .logo-content {
    display: none !important;
  }
}

  .about-section img {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 1rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: transform 0.3s ease;
}

.about-section img:hover {
    transform: scale(1.03);
}

    /* === HERO PARA PANTALLAS GRANDES (1920x1080 o más) === */
@media (min-width: 1600px) {
  .logo-content {
    top: -35px;
  }
  .hero {
    height: 70vh;
    background-size: cover;
    background-position: center center;
    padding: 3rem 4rem; 
  }

  .hero h1 {
    font-size: 3rem;
    line-height: 1.3;
    letter-spacing: 1px;
  }

  .hero p {
    font-size: 1.25rem; 
    max-width: 900px;
  }

  .hero::after {
    right: 150px;    
    bottom: 100px;
    width: 600px;    
    height: 350px;
    opacity: 0.95;  
    background-size: contain;
  }
}
