    :root {
      --primary: #005F73;
      --secondary: #0A9396;
      --accent: #94D2BD;
      --background: #F8FAF9;
      --text: #001219;
      --white: #FFFFFF;
      --shadow: rgba(0, 0, 0, 0.08);
    }
    *, *::before, *::after {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }
    html {
      scroll-behavior: smooth;
    }
    body {
      font-family: 'Inter', sans-serif;
      background-color: var(--background);
      color: var(--text);
      line-height: 1.6;
      /* El padding-top se ajustará dinámicamente con la altura del header */
    }
    .container {
      max-width: 1200px;
      margin-left: auto;
      margin-right: auto;
      padding-left: 20px;
      padding-right: 20px;
    }
    a {
      color: var(--secondary);
      text-decoration: none;
    }
    h1, h2, h3, h4 {
      font-weight: 600;
      color: var(--primary);
    }

    /* === NUEVOS ESTILOS PARA LA CABECERA === */
    header {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      z-index: 1000;
      transition: background-color 0.4s ease, backdrop-filter 0.4s ease, box-shadow 0.4s ease, height 0.4s ease;
      height: 90px; /* Altura inicial */
      background: linear-gradient(to bottom,  rgba(0, 95, 115, 0.85), transparent); /* Fondo semitransparente inicial */
      box-shadow: none;
    }
    header.scrolled {
      height: 75px; /* Altura más compacta al hacer scroll */
      background-color: rgba(0, 95, 115, 0.85); /* Color primario con transparencia */
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
      backdrop-filter: blur(10px); /* Efecto "vidrio esmerilado" moderno */
      -webkit-backdrop-filter: blur(10px);
    }
    .header-content {
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 100%;
      padding: 0 15px;
    }
    .logo-container {
      flex-shrink: 0; /* Evita que el logo se encoja */
      display: flex;
      align-items: center;
      gap: 12px;
      transition: transform 0.3s ease;
    }
    .logo-container:hover {
        transform: scale(1.05);
    }
    .logo-container img {
      height: 48px;
      border-radius: 6px;
    }
    .logo-container h1 {
      font-size: 1.5rem; /* Un poco más pequeño para encajar mejor */
      color: var(--white);
      text-shadow: 0 1px 3px rgba(0,0,0,0.3);
    }
    /* Menú de navegación de escritorio */
    .desktop-nav {
      flex-grow: 1; /* Ocupa el espacio central */
      display: flex;
      justify-content: center;
    }
    .desktop-nav ul {
      list-style: none;
      display: flex;
      gap: 15px; /* Espacio entre links */
      margin: 0;
      padding: 0;
    }
    .desktop-nav a {
      position: relative;
      color: var(--white);
      font-weight: 500;
      font-size: 0.8rem;
      padding: 4.5px 0;
      text-shadow: 0 1px 3px rgba(0,0,0,0.3);
      transition: color 0.3s ease;
    }
    .desktop-nav a::after {
      content: '';
      position: absolute;
      bottom: -4px;
      left: 0;
      width: 0;
      height: 2px;
      background-color: var(--accent);
      transition: width 0.3s ease;
    }
    .desktop-nav a:hover {
      color: var(--white);
    }
    .desktop-nav a:hover::after {
      width: 100%;
    }
    /* Contenedor para botones y menú móvil */
    .header-actions {
      display: flex;
      align-items: center;
      gap: 15px;
    }
    .contact-buttons {
      display: flex;
      gap: 12px;
    }
    .contact-buttons a {
      background-color: var(--white);
      color: var(--primary);
      padding: 8px 18px;
      border-radius: 25px;
      font-size: 0.9rem;
      font-weight: 500;
      display: flex;
      align-items: center;
      gap: 8px;
      transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
      box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    }
    .contact-buttons a:hover {
      background-color: var(--accent);
      color: var(--white);
      transform: translateY(-2px);
    }

    /* === FIN ESTILOS CABECERA === */
    .body-content-wrapper {
        padding-top: 90px; /* Espacio inicial para el header grande */
    }
    /* --- Estilos para el Carrusel Moderno --- */
.carousel-section {
    padding: 0;
    margin-top: 20px;
}
.carousel-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}
.carousel-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}
.carousel-slide {
    flex-shrink: 0;
    width: 100%;
    height: 400px;
    position: relative;
}
.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.carousel-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 15px 10px;
    border-radius: 8px;
    z-index: 10;
    transition: background-color 0.3s ease, color 0.3s ease;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}
.carousel-nav-btn:hover {
    background: rgba(255, 255, 255, 0.4);
    color: var(--accent);
}
.carousel-nav-btn.prev {
    left: 20px;
}
.carousel-nav-btn.next {
    right: 20px;
}
.carousel-dots-container {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}
.carousel-dots-container .dot {
    width: 10px;
    height: 10px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.8);
}
.carousel-dots-container .dot.active {
    background: var(--accent);
    transform: scale(1.2);
    border: 1px solid var(--accent);
}
/* Media queries para ajustar el tamaño en móviles */
@media (max-width: 768px) {
    .carousel-slide {
        height: 250px;
    }
    .carousel-nav-btn {
        font-size: 1.2rem;
        padding: 10px 8px;
    }
    .carousel-nav-btn.prev { left: 10px; }
    .carousel-nav-btn.next { right: 10px; }
}
    .dot {
      width: 10px;
      height: 10px;
      background: rgba(255, 255, 255, 0.7);
      border-radius: 50%;
      cursor: pointer;
      transition: background-color 0.3s ease, transform 0.3s ease;
    }
    .dot.active { background: var(--accent); transform: scale(1.2); }
	
	
	
    .locations { padding: 30px 20px; background-color: var(--white); }
    .locations .grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 20px; }
 /* Modifica tu regla .location-card existente para que use flexbox */
.location-card {
    background-color: var(--background);
    padding: 20px; /* Un poco más de padding */
    border-radius: 10px;
    border: 1px solid var(--accent);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    
    /* Nuevas propiedades Flexbox */
    display: flex;
    flex-direction: column;
    justify-content: space-between; /* Alinear contenido */
    text-align: left; /* Alineamos a la izquierda para el nuevo layout */
}

.location-card:hover { 
    transform: translateY(-5px); 
    box-shadow: 0 6px 12px var(--shadow); 
}

.location-card h3 { 
    font-size: 1.05rem; /* Título un poco más grande */
    margin-bottom: 15px; 
    text-align: center; /* Centramos solo el título */
}

/* Nuevo contenedor para los detalles */
.location-details {
    margin-bottom: 15px;
    flex-grow: 1; /* Permite que esta sección crezca y empuje el botón hacia abajo */
}

.location-details p {
    font-size: 0.75rem; 
    margin-bottom: 10px; 
    color: var(--text-muted, #555); /* Usando tu variable si la creaste */
    display: flex;
    align-items: center;
    gap: 10px; /* Espacio entre el ícono y el texto */
}

.location-details i {
    color: var(--secondary);
    font-size: 1rem;
    width: 20px; /* Ancho fijo para alinear los íconos */
    text-align: center;
}

/* Estilos para el nuevo botón "Ver en Mapa" */
.map-link {
    display: inline-block;
    padding: 10px 15px;
    background-color: var(--secondary);
    color: var(--white);
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    text-align: center;
    transition: background-color 0.3s ease, transform 0.2s ease;
    width: 100%; /* Ocupa todo el ancho */
}

.map-link:hover {
    background-color: var(--primary);
    color: var(--white);
    transform: scale(1.03);
}
    .hero {
      color: var(--white);
      text-align: center;
      padding: 60px 20px;
      background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    }
    .hero h2 { font-size: 2.2rem; margin-bottom: 16px; color: var(--white); }
    .hero p { font-size: 1.1rem; max-width: 600px; margin: 0 auto 24px; }
    .hero .contact-buttons { justify-content: center; }
    .fade-in {
      opacity: 0;
      transform: translateY(20px);
      transition: opacity 0.6s ease-out, transform 0.6s ease-out;
    }
    .fade-in.visible { opacity: 1; transform: translateY(0); }
    section { padding: 60px 20px; }
    .section-title { text-align: center; font-size: 1.8rem; margin-bottom: 40px; }
    .grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 24px; }
    .card {
      background-color: var(--white);
      padding: 20px;
      border-radius: 8px;
      box-shadow: 0 2px 6px var(--shadow);
      text-align: center;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
    .card:hover { transform: translateY(-5px); box-shadow: 0 6px 12px var(--shadow); }
    .card i { font-size: 2.5rem; color: var(--primary); margin-bottom: 16px; }
    .card h3 { font-size: 1.2rem; margin-bottom: 8px; }
    .card p { font-size: 0.9rem; color: #555; }
    #about {
        padding: 80px 20px;
        background: linear-gradient(rgba(0, 95, 115, 0.8), rgba(10, 147, 150, 0.8));
        color: var(--white);
        border-radius: 12px;
        margin: 40px 0;
        border: 2px solid var(--accent);
    }
    #about .section-title { color: var(--white); margin-bottom: 32px; }
    #about .about-icon { font-size: 3rem; color: var(--accent); margin-bottom: 20px; text-align: center; display: block; }
    #about .about-content { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; max-width: 900px; margin: 0 auto; }
    #about p { font-size: 1.1rem; line-height: 1.8; }
    #reviews .card { background-color: #f0f7f7; border: 1px solid var(--accent); }
    #reviews .stars { font-size: 1.2rem; color: #FFD700; margin-bottom: 12px; }
    #reviews .card p { font-style: italic; }
    #reviews .card small { color: #777; font-size: 0.8rem; }
    .faq-item {
      margin-bottom: 16px;
      background-color: var(--white);
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 2px 6px var(--shadow);
    }
    .faq-question {
      padding: 16px;
      cursor: pointer;
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-weight: 500;
      color: var(--primary);
    }
    .faq-question span { transition: transform 0.3s ease; }
    .faq-item.active .faq-question span { transform: rotate(180deg); }
    .faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease-out; }
    .faq-answer p { padding: 0 16px 16px; font-size: 0.9rem; }
    .popup-overlay {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.6);
      display: none;
      align-items: center;
      justify-content: center;
      z-index: 1001;
    }
	
    .popup-overlay.active { display: flex; }
    .popup-content {
      background: var(--white);
      padding: 30px;
      border-radius: 12px;
      max-width: 90%;
      text-align: center;
      position: relative;
      box-shadow: 0 8px 16px var(--shadow);
    }
    .popup-content img { max-width: 100px; border-radius: 8px; margin-bottom: 20px; }
    .popup-content h3 { font-size: 1.2rem; margin-bottom: 16px; }
    .popup-content p { font-size: 0.9rem; margin-bottom: 20px; color: #555; }
    .popup-content a {
      background-color: var(--secondary);
      color: var(--white);
      padding: 10px 20px;
      border-radius: 25px;
      font-weight: 600;
      display: inline-block;
      transition: background-color 0.3s ease, transform 0.3s ease;
    }
    .popup-content a:hover { background-color: var(--accent); transform: scale(1.05); }
    .close-popup { position: absolute; top: 12px; right: 12px; font-size: 1.5rem; cursor: pointer; color: var(--primary); }
    footer { background-color: var(--primary); color: var(--white); padding: 24px 20px; text-align: center; }
    .footer-content { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; font-size: 0.9rem; margin-bottom: 16px; }
    .social-icons { display: flex; justify-content: center; gap: 16px; margin-top: 16px; }
    .social-icons a { color: var(--white); font-size: 1.5rem; transition: color 0.3s ease, transform 0.3s ease; }
    .social-icons a:hover { color: var(--accent); transform: scale(1.2); }
    
    .mobile-nav, .mobile-overlay { display: none; }
.mobile-menu-btn {
  display: none;
}
    @media (max-width: 1024px) {
      .desktop-nav, .contact-buttons {
        display: none;
      }
      .mobile-menu-btn {
        display: flex;
        background: var(--white);
        border: none;
        padding: 8px;
        border-radius: 6px;
        cursor: pointer;
        z-index: 10000;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 40px;
        height: 40px;
      }
      .mobile-menu-btn .bar {
        display: block;
        width: 24px;
        height: 3px;
        background: var(--primary);
        margin: 3px 0;
        transition: transform 0.3s ease, opacity 0.3s ease;
      }
      .mobile-menu-btn.open .bar:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
      .mobile-menu-btn.open .bar:nth-child(2) { opacity: 0; }
      .mobile-menu-btn.open .bar:nth-child(3) { transform: rotate(-45deg) translate(7px, -6px); }
      .mobile-nav {
        display: block;
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100%;
        background: var(--primary);
        padding-top: 80px;
        transition: right 0.3s ease-in-out;
        z-index: 9999;
        box-shadow: -4px 0 8px var(--shadow);
      }
      .mobile-nav.open { right: 0; }
      .mobile-nav ul { flex-direction: column; gap: 0; list-style: none; }
      .mobile-nav li { border-bottom: 1px solid rgba(255, 255, 255, 0.1); }
      .mobile-nav a { display: block; padding: 20px 24px; font-size: 1.1rem; color: var(--white); }
      .mobile-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.7);
        z-index: 9998;
      }
      .mobile-overlay.open { display: block; }
    }
    @media (max-width: 768px) {
      .body-content-wrapper { padding-top: 70px; }
      header, header.scrolled { height: 70px; }
      .logo-container h1 { font-size: 1.25rem; }
      .logo-container img { height: 40px; }
      .hero h2 { font-size: 1.8rem; }
      section { padding: 40px 15px; }
      #about .about-content { grid-template-columns: 1fr; }
    }
