.font-bold {
    font-weight: bold !important;
}

body.menu-open {
    overflow: hidden;
}

/* Ajuste del nav para que no cause scroll extra */
.nav {
    overflow-y: auto;
    /* permite scroll solo dentro del menú si hay muchos links */
    -webkit-overflow-scrolling: touch;
    /* suaviza el scroll en móviles */
}

button {
    font-family: 'Montserrat', sans-serif !important;
    background: linear-gradient(90deg,
            #163a70 0%,
            #1f4e84 35%,
            #3f79ad 70%,
            #6bb0d6 100%) !important;
}

:root {
    /* ======= THEME TOKENS ======= */
    --brand: #0F254F;
    --accent: #ffffff;
    --bg: #0F254F;
    --surface: #111111;
    --text: #54595F;
    --muted: #c9c9c9;
    --border: #2a2a2a;
    --radius: 16px;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
    --shadow-soft: 0 6px 18px rgba(0, 0, 0, 0.22);
}

#sobre-nosotros {
    background: var(--accent);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html,
body {
    height: 100%;
    scroll-behavior: smooth;

}

html,
body {
    overflow-x: hidden !important;
    max-width: 100%;
}



body {
    font-family: 'Montserrat', sans-serif !important;
    color: var(--text);
    background: var(--bg);
    line-height: 1.6;
}

img {
    max-width: 100%;
    display: block;
    border-radius: var(--radius);
}

a {
    color: inherit;
    text-decoration: none;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-bg {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.container {
    width: min(1140px, 92%);
    margin: 0 auto;
}

/* HEADER */
.site-header {
    position: sticky;
    top: 0;
    width: 100%;
    height: 100px;
    /* altura fija del header */
    background: white !important;
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border, rgba(0, 0, 0, 0.1));
    z-index: 100;
    transition: background 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    align-items: center;
    /* centra el contenido verticalmente */
}

.site-header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 0 2rem;
    /* espaciado lateral */
    max-width: 1200px;
    margin: 0 auto;
}

/* LOGO */
.brand {
    display: flex;
    align-items: center;
    height: 60px;
}

.image-about {
    padding: 100px;
}

.logo {
    height: 100%;
    /* ocupa todo el alto del header */
    max-height: 90px;
    /* evita que se pase */
    width: auto;
    object-fit: contain;
    transition: transform 0.3s ease;

}

.logo:hover {
    transform: scale(1.05);
}

/* NAVEGACIÓN */
.nav {
    display: flex;
    align-items: center;
    gap: 1.2rem;

}

.nav a {
    font-weight: 500;
    color: var(--bg, #222);
    text-decoration: none;
    padding: 0.6rem 0.8rem;
    border-radius: 8px;
    transition: color 0.3s ease;

}

.nav a:hover {
    color: var(--bg);
}

/* BOTÓN CONTACTO */
.nav .btn--sm {
    background: var(--bg);
    color: var(--accent);
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    font-weight: bold !important;
    transition: all 0.3s ease;
}

.nav .btn--sm:hover {
    color: var(--brand);
    transform: translateY(-2px);
}

/* RESPONSIVO */
@media (max-width: 768px) {
    .site-header {
        height: auto;
        /* permite expandir en mobile */
        padding: 0.8rem 0;
    }

    .header-inner {
        flex-direction: column;
        gap: 0.6rem;
    }

    .nav {
        flex-wrap: wrap;
        justify-content: center;
    }

    .logo {
        max-height: 60px;
    }
}

/* HERO */
.hero {
    position: relative;
    min-height: 85vh;
    display: grid;
    place-items: center;
    text-align: center;
}

.hero-media {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.6);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(60% 60% at 50% 40%, rgba(0, 0, 0, .2), rgba(0, 0, 0, .85));
}

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

.hero-title {
    font-weight: 700;
    margin-bottom: 1rem;
    text-align: center;
}

/* ===== HERO - MOBILE ===== */
@media (max-width: 768px) {


    .hero {
        min-height: 65vh !important;
        /* un poco más compacto */
        padding: 0 1.2rem;
        /* espacio lateral */
    }

    .hero-media img {
        object-position: center;
        filter: brightness(0.55);
        /* mejora legibilidad del texto */
    }

    .hero-overlay {
        background: linear-gradient(to bottom,
                rgba(0, 0, 0, 0.4) 0%,
                rgba(0, 0, 0, 0.9) 100%);
    }

    .hero-content {
        padding: 2rem 1rem;
    }

    .hero-title {
        font-size: 2rem;
        line-height: 1.2;
        margin-bottom: 0.8rem;
    }

    .hero-subtitle {
        font-size: 1rem;
        line-height: 1.5;
        margin-bottom: 1.2rem;
    }

    .hero .btn {
        font-size: 1rem;
        padding: 0.8rem 1.8rem;
        border-radius: 50px;
    }

    .hero-indicators {
        display: none !important;
    }
}


/* SECCIONES */
.section {
    padding: 5rem 0;
}

.section-alt {
    background: #f1debd !important;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

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

@media (max-width: 900px) {
    .grid-2 {
        grid-template-columns: 1fr;
    }
}

/* CARDS */
.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1rem;
}

.card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.2rem;
    box-shadow: var(--shadow-soft);
    transition: transform 0.3s;
}

.card:hover {
    transform: translateY(-4px);
}

.card-ico {
    font-size: 1.8rem;
}

/* GALERÍA */
.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1rem;
}

.gallery-item {
    border: 0;
    padding: 0;
    background: none;
    cursor: pointer;
    border-radius: 12px;
    overflow: hidden;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s ease;
}

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

/* LIGHTBOX */
.lightbox {
    border: none;
    border-radius: 10px;
    background: #000;
    color: #fff;
    padding: 0;
    max-width: 90%;
    box-shadow: var(--shadow);
}

.lightbox::backdrop {
    background: rgba(0, 0, 0, 0.7);
}

.lightbox img {
    display: block;
    width: 100%;
    height: auto;
}

.lightbox-close {
    position: absolute;
    top: 12px;
    right: 12px;
    background: #111;
    border: 0;
    color: #fff;
    width: 36px;
    height: 36px;
    border-radius: 8px;
    cursor: pointer;
}

.lightbox-nav {
    display: flex;
    justify-content: space-between;
    position: absolute;
    top: 50%;
    width: 100%;
    transform: translateY(-50%);
}

.lightbox-nav button {
    border: 0;
    background: rgba(0, 0, 0, 0.4);
    color: #fff;
    width: 44px;
    height: 44px;
    font-size: 22px;
    border-radius: 50%;
}

/* LISTAS */
.feature-list {
    list-style: none;
    display: grid;
    gap: 0.6rem;
}

.feature-list li {
    background: #111;
    border: 1px solid var(--border);
    padding: 0.8rem;
    border-radius: 12px;
}


/* === GALERÍA 2 COLUMNAS === */
.gallery-2col {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1 / 1;
    /* 🔹 Cuadrado perfecto */
    border-radius: 0px;
    cursor: pointer;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s ease, filter 0.4s ease;
    filter: brightness(85%) contrast(1.05);
    border-radius: 0px;
}

/* 🔹 Efecto de transparencia tipo glass */
.gallery-item::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
    opacity: 0;
    border-radius: inherit;
    transition: opacity 0.4s ease, background 0.4s ease;
}

/* ✨ Hover animado */
.gallery-item:hover::after {
    opacity: 1;
    background: rgba(255, 255, 255, 0.1);
}

.gallery-item:hover img {
    transform: scale(1.07);
    filter: brightness(100%) contrast(1.1);
}

.gallery-item:hover {
    transform: translateY(-4px);
}

/* 🎯 Responsive */
@media (max-width: 768px) {
    .gallery-2col {
        grid-template-columns: 1fr;
    }
}

/* === CARRUSEL GALERÍA === */
.carousel {
    overflow: hidden;
    position: relative;
    border-radius: 0px;
    margin-top: 2rem;
}

.carousel-track {
    display: flex;
    transition: transform 1s ease;
}

.carousel-item {
    position: relative;
    flex: 0 0 calc(100% / 3);

    overflow: hidden;
    border-radius: 0px;
}

.carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(80%);
    transition: transform 0.8s ease, filter 0.4s ease;
    border-radius: 0px;

}

.carousel-item:hover img {
    transform: scale(1.05);
    filter: brightness(100%);
}

/* === Overlay con texto === */
.carousel-item .overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 1.2rem;
    transition: background 0.4s ease;

}

.carousel-item .overlay p {
    font-family: "Karu", sans-serif;
    font-size: 1rem;
    color: #ffffffb1;
    letter-spacing: 0.5px;
    margin: 0;
}

.carousel-item:hover .overlay {
    background: rgba(0, 0, 0, 0.6);
}

/* === Responsive === */
@media (max-width: 992px) {
    .carousel-item {
        flex: 0 0 calc(100% / 2);
    }
}

@media (max-width: 600px) {
    .carousel-item {
        flex: 0 0 100%;
    }
}




/* BOTONES */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--brand);
    color: #fff;
    border: none;
    border-radius: 999px;
    padding: 0.8rem 1.2rem;
    font-family: 'Monserrat';
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s, opacity 0.3s;
}

.btn:hover {
    transform: translateY(-2px);
    opacity: 0.9;
}

.btn--sm {
    padding: 0.5rem 0.9rem;
    font-size: 0.9rem;
}

.btn--lg {
    font-size: 1.1rem;
}

/* FOOTER */
.site-footer {
    background: #0b0b0b;
    border-top: 1px solid var(--border);
    text-align: center;
    padding: 1.5rem 0;
    font-size: 0.9rem;
    color: var(--muted);
}

/* WHATSAPP */
.wa-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #25d366;
    color: #111;
    width: 56px;
    height: 56px;
    display: grid;
    place-items: center;
    font-size: 24px;
    border-radius: 50%;
    box-shadow: var(--shadow);
    z-index: 99;
    transition: transform 0.3s;
}

.wa-float:hover {
    transform: translateY(-4px);
}

/* ANIMACIONES */
.reveal-up {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal-up.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.about-wrapper {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.about-text p {
    color: var(--muted);
    margin-bottom: 1.2rem;
    font-size: 1.05rem;
    text-align: justify;
}

.about-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.about-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.8rem;
    box-shadow: var(--shadow-soft);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    position: relative;
    overflow: hidden;
}

.about-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.about-card h3 {
    margin-top: 1rem;
    margin-bottom: 0.8rem;
    font-size: 1.4rem;
    color: var(--accent);
}

.about-card p {
    color: #ddd;
    font-size: 0.95rem;
}

.about-icon {
    width: 52px;
    height: 52px;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, var(--brand), var(--accent));
    border-radius: 14px;
    color: #fff;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.3);
    animation: floatIcon 4s ease-in-out infinite;
}

@keyframes floatIcon {

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

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

.values-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 0.6rem;
    color: var(--text);
}

.values-list li {
    background: rgba(255, 255, 255, 0.03);
    padding: 0.7rem 0.9rem;
    border-radius: 10px;
    border-left: 3px solid var(--accent);
    transition: background 0.3s ease;
}

.values-list li:hover {
    background: rgba(255, 255, 255, 0.08);
}

.hero-modern {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    color: #fff;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.hero-bg-slider {
    position: absolute;
    inset: 0;
}

.hero-bg-slider img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transform: scale(1.1);
    transition: opacity 1.6s ease, transform 8s ease;
}

.hero-bg-slider img.active {
    opacity: 1;
    transform: scale(1.03);
}

.hero-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom right, rgba(10, 10, 10, 0.349), rgba(0, 0, 0, 0.262));
}

.hero-content {
    position: relative;
    z-index: 5;
    max-width: 750px;
    padding: 6rem 0;
}

.hero-tag {
    display: inline-block;
    background: rgba(255, 255, 255, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 999px;
    font-size: 0.9rem;
    color: var(--accent);
    margin-bottom: 1.5rem;
}

.hero-title {
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.2;
    font-weight: 700;
    margin-bottom: 1.2rem;
}

.hero-title .highlight {
    color: var(--accent);
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--muted);
    margin-bottom: 2.5rem;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn--ghost {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    transition: background 0.3s ease;
}

.btn--ghost:hover {
    background: rgba(255, 255, 255, 0.15);
}

/* Pulse sutil en CTA */
.pulse {
    animation: pulse 2.5s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(0, 214, 158, 0.35);
    }

    50% {
        box-shadow: 0 0 0 12px rgba(0, 214, 158, 0);
    }
}

/* ===== HERO MODERN - MOBILE ===== */
@media (max-width: 768px) {
    .hero-modern {
        flex-direction: column;
        text-align: center;
        min-height: auto;
        padding: 3rem 1.2rem;
    }

    .hero-content {
        padding: 2rem 2rem;
        max-width: 100%;
    }

    .hero-bg-slider img {
        object-position: center;
        transform: scale(1.08);
        filter: brightness(0.55);
    }

    .hero-gradient {
        background: linear-gradient(to bottom,
                rgba(0, 0, 0, 0),
                rgba(0, 0, 0, 0.453));
    }

    .hero-tag {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
        margin-bottom: 1rem;
    }

    .hero-title {
        font-size: 2rem;
        line-height: 1.25;
        margin-bottom: 1rem;
    }

    .hero-subtitle {
        font-size: 0.95rem;
        line-height: 1.5;
        margin-bottom: 1.8rem;
        color: #e6e6e6;
    }

    .hero-actions {
        flex-direction: column;
        align-items: center;
        gap: 0.8rem;
    }

    .btn,
    .btn--ghost {
        width: 100%;
        max-width: 280px;
        text-align: center;
        font-size: 1rem;
        padding: 0.9rem 1.4rem;
        border-radius: 50px;
    }
}

/* Indicadores */
.hero-indicators {
    margin-top: 4rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 1.5rem;
}

.hero-indicators .indicator h3 {
    font-size: 2rem;
    color: var(--accent);
    margin-bottom: 0.2rem;
}

.hero-indicators .indicator p {
    color: var(--muted);
    font-size: 0.95rem;
}

/* ===== Animaciones del texto ===== */
.animate-title span,
.animate-title {
    display: inline-block;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.8s forwards;
}

.animate-title span:nth-child(1) {
    animation-delay: 0.2s;
}

.animate-title span:nth-child(2) {
    animation-delay: 0.4s;
}

.animate-subtitle {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.9s 0.8s forwards;
}

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

/* === ABOUT SECTION === */
.about {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    color: var(--text);

}

.about-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    /* dos columnas: texto / imagen */
    align-items: center;
    gap: 3rem;
    text-align: left;
    /* texto alineado a la izquierda */
}

.about-header img {
    width: 100%;
    border-radius: 16px;
    height: 600px;
    object-fit: contain;

    transition: transform 0.4s ease, opacity 0.4s ease;

}


.section-title {
    font-family: 'Karu', sans-serif;
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    font-weight: 600;
    color: var(--title);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--title);
    line-height: 1.5;
    margin-bottom: 1rem;
}

/* GRID */
.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    text-align: center;
}

.about-item {
    position: relative;
    padding: 1.8rem 1.6rem;
    border-radius: 20px;
    background: linear-gradient(90deg,
            #163a70 0%,
            #1f4e84 35%,
            #3f79ad 70%,
            #6bb0d6 100%);

    backdrop-filter: blur(14px) saturate(140%);
    -webkit-backdrop-filter: blur(14px) saturate(140%);
    transition: all 0.4s ease;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

/* ✨ Reflejo de luz superior */
.about-item::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(145deg,
            rgba(255, 255, 255, 0.25) 0%,
            rgba(255, 255, 255, 0.05) 40%,
            transparent 100%);
    opacity: 0.6;
    pointer-events: none;
}

/* 🔮 Borde iluminado al pasar el mouse */
.about-item:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.25),
        inset 0 0 20px rgba(255, 255, 255, 0.15);
}

.about-item:hover::before {
    opacity: 0.9;
}

/* ✏️ Texto e íconos */
.about-item h3 {
    font-family: "Karu", sans-serif;
    font-weight: 600;
    color: var(--accent);
    margin: 1rem 0 0.5rem;
    letter-spacing: 0.02em;
}

.about-item p,
.about-item ul {
    color: rgb(255, 255, 255);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ✨ Íconos con trazo más visible */
.about-item .icon {
    width: 88px;
    height: 88px;
    margin: 0 auto 0.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    filter: drop-shadow(0 0 6px rgba(255, 255, 255, 0.1));
}

/* Lista de valores */
.values {
    list-style: none;
    padding: 0;
    margin: 0;
}

.values li {
    padding: 0.3rem 0;
}

/* === ANIMACIÓN DE TRAZADO === */
.about-item .icon svg {
    width: 100%;
    height: 100%;
    stroke-dasharray: 180;
    stroke-dashoffset: 180;
    animation: draw 2s ease forwards;
}

/* Animación escalonada al cargar */
.about-item:nth-child(1) .icon svg {
    animation-delay: 0.2s;
}

.about-item:nth-child(2) .icon svg {
    animation-delay: 0.4s;
}

.about-item:nth-child(3) .icon svg {
    animation-delay: 0.6s;
}

/* Keyframes del trazado */
@keyframes draw {
    0% {
        stroke-dashoffset: 180;
        opacity: 0;
    }

    50% {
        opacity: 1;
    }

    100% {
        stroke-dashoffset: 0;
        opacity: 1;
    }
}

/* Lista de valores */
.values {
    list-style: none;
    padding: 0;
    margin: 0;
}

.values li {
    padding: 0.3rem 0;
}

.about-item .icon {
    width: 52px;
    height: 52px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
}

.about-item .icon svg {
    width: 100%;
    height: 100%;
    stroke-dasharray: 160;
    stroke-dashoffset: 160;
    animation: draw 2s ease forwards;
}

/* Delays escalonados */
.about-item:nth-child(1) .icon svg {
    animation-delay: 0.2s;
}

.about-item:nth-child(2) .icon svg {
    animation-delay: 0.4s;
}

.about-item:nth-child(3) .icon svg {
    animation-delay: 0.6s;
}

@keyframes draw {
    0% {
        stroke-dashoffset: 160;
        opacity: 0;
    }

    60% {
        opacity: 1;
    }

    100% {
        stroke-dashoffset: 0;
        opacity: 1;
    }
}

/* === SECCIÓN ALOJAMIENTOS === */
.lodging-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.lodging-card {
    position: relative;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 20px;
    backdrop-filter: blur(12px) saturate(140%);
    -webkit-backdrop-filter: blur(12px) saturate(140%);
    padding: 2rem;
    transition: all 0.4s ease;
    color: var(--text);
}

.lodging-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.25);
}

.lodging-title {
    font-family: "Karu", sans-serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--accent);
    margin-bottom: 0.3rem;
}

.lodging-desc {
    color: var(--muted);
    font-size: 1rem;
    margin-bottom: 1rem;
}

/* === LISTA === */
.lodging-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.lodging-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0.6rem 0;
}

.lodging-list svg {
    width: 20px;
    height: 20px;
    stroke: var(--accent);
    fill: none;
    stroke-width: 1.6;
    flex-shrink: 0;
    stroke-dasharray: 60;
    stroke-dashoffset: 60;
    animation: draw 2s ease forwards;
}

/* ✨ Animación de dibujo del icono */
@keyframes draw {
    to {
        stroke-dashoffset: 0;
    }
}

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

.service-item {
    padding: 1.5rem;
    border-radius: 16px;
    text-align: center;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 20px;
    backdrop-filter: blur(12px) saturate(140%);
    -webkit-backdrop-filter: blur(12px) saturate(140%);
    transition: all 0.4s ease;
}

.service-item:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.25);
}

.service-item h3 {
    margin-top: 1rem;
    font-size: 1.05rem;
    color: var(--text-light);
}

.icon {
    display: flex;
    justify-content: center;
    align-items: center;
}

.icon svg {
    width: 40px;
    height: 40px;
    stroke: var(--accent);
    stroke-dasharray: 90;
    stroke-dashoffset: 90;
    animation: draw 1.5s ease forwards;
}

@keyframes draw {
    to {
        stroke-dashoffset: 0;
    }
}

.note {
    margin-top: 2.5rem;
    text-align: center;
    font-size: 0.95rem;
    color: var(--text-muted);
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    padding: 1rem 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.maps-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(320px, 1fr));
    gap: 1.8rem;
    margin-top: 2rem;
}

@media (max-width: 992px) {
    .maps-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 1.5rem;
    }

    .map-card iframe {
        height: 260px;
    }
}

@media (max-width: 600px) {
    .maps-grid {
        gap: 1.2rem;
        margin-top: 1.2rem;
    }

    .map-card {
        padding: 1rem;
    }

    .map-card iframe {
        height: 220px;
        border-radius: 10px;
    }
}

.map-card {
    /* background: rgba(255, 255, 255, 0.05); */
    border: 1px solid rgba(255, 255, 255, 0.1);
    /* backdrop-filter: blur(6px); */
    border-radius: 16px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.map-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent);
    background: rgba(255, 255, 255, 0.08);
}

.map-card iframe {
    width: 100%;
    height: 220px;
    border-radius: 12px;
    border: none;
    margin-top: 1rem;
}

.nearby-icons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 3rem;
}

.nearby-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 200px;
    text-align: center;
}

.nearby-item svg {
    width: 40px;
    height: 40px;
    stroke: var(--accent);
    stroke-dasharray: 90;
    stroke-dashoffset: 90;
    animation: draw 1.8s ease forwards;
}

.nearby-item p {
    margin-top: 0.6rem;
    font-size: 0.95rem;
    color: var(--text-light);
}

@keyframes draw {
    to {
        stroke-dashoffset: 0;
    }
}

.location-note {
    margin-top: 3rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 1rem 1.5rem;
    margin-bottom: 5rem;
    color: var(--text-muted);
    font-size: 0.95rem;
    text-align: center;
}

.contact-section {
    position: relative;
    overflow: hidden;
    color: #fff;
}

.contact-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.contact-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(6px) brightness(0.5);
    /* 🔹 control visual */
    transform: scale(1.05);
}

.contact-bg .overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    /* 🔹 oscurece y mejora contraste */
    z-index: 1;
}

.contact-container {
    position: relative;
    z-index: 2;
    max-width: 650px;
    margin: 0 auto;
    text-align: center;
    padding: 4rem 2rem;

}


.contact-title {
    color: #fff;
    /* Color primario */
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    letter-spacing: -0.5px;
}

.contact-subtitle {
    color: var(--accent, #00c2b8);
    font-size: 1rem;
    margin-bottom: 2rem;
}

/* --- Form Styles --- */
.contact-form {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(16px) saturate(180%);
    -webkit-backdrop-filter: blur(16px) saturate(180%);
    padding: 2rem;
    transition: all 0.4s ease;
}

.contact-form:hover {
    border-color: rgba(255, 255, 255, 0.25);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.form-group {
    flex: 1 1 48%;
    display: flex;
    flex-direction: column;
    font-family: "Karu";
}

.form-group.full {
    flex: 1 1 100%;
}

.contact-form input,
.contact-form textarea {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 0.9rem 1rem;
    color: #fff;
    font-size: 1rem;
    transition: all 0.3s ease;
    width: 100%;
    box-shadow: inset 0 0 8px rgba(255, 255, 255, 0.05);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.45);
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--accent, #00c2b8);
    background: rgba(255, 255, 255, 0.12);
    box-shadow: 0 0 10px rgba(0, 194, 184, 0.3),
        inset 0 0 8px rgba(255, 255, 255, 0.1);
    font-family: "Karu";
}

.contact-form textarea {
    resize: none;
}

/* --- Button --- */
.contact-form .btn {
    flex: 1 1 100%;
    margin-top: 1rem;
    font-size: 1rem;
    padding: 0.9rem 2rem;
    border-radius: 50px;
    background: var(--brand);
    color: #fff;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.35s ease;
    box-shadow: 0 4px 16px rgba(0, 194, 184, 0.25);
    font-family: "Karu";
}

.contact-form .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0, 194, 184, 0.4);

}

/* --- Form feedback --- */
#form-msg {
    margin-top: 1.5rem;
    color: #e0e0e0;
    font-size: 0.95rem;
    text-align: center;
    opacity: 0.85;
}

/* ===== FORMULARIO (Mobile) ===== */
@media (max-width: 768px) {

    .contact-container {
        padding: 1rem 1rem !important;
    }

    .contact-form {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        width: 100%;
    }

    .form-group {
        flex: 1 1 100%;
        width: 100%;
    }

    .contact-form input,
    .contact-form textarea {
        font-size: 1rem;
        padding: 0.85rem 1rem;
        border-radius: 10px;
        width: 100%;
    }

    .contact-form textarea {
        min-height: 130px;
    }

    .contact-form .btn {
        width: 100%;
        padding: 1rem;
        font-size: 1.05rem;
        border-radius: 50px;
        margin-top: 1rem;
    }

    #form-msg {
        font-size: 0.9rem;
        margin-top: 1rem;
    }
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.45);
    font-family: "Karu", sans-serif;
    /* 🔹 fuerza la fuente */
    font-weight: 400;
    /* opcional: para mantener uniformidad */
    letter-spacing: 0.3px;
    /* opcional: mejora legibilidad */
}

.footer {
    background: var(--brand);
    color: #eee;
    padding: 3rem 1rem 1rem;
    height: 300px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 2rem;
    flex-wrap: wrap;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 1.5rem;
}

.footer-column {
    flex: 1;
    min-width: 220px;
}

.footer-column h3,
.footer-column h4 {
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.6rem;
}

.footer-column p {
    color: #ccc;
    font-size: 0.95rem;
}

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

.footer-column li {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    margin-bottom: 0.5rem;
    color: #ccc;
}

.footer-column a {
    color: #ccc;
    text-decoration: none;
}

.footer-column a:hover {
    color: var(--accent);
}

.social-icons {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.social-icons a {
    color: #ccc;
    transition: color 0.3s ease;
}

.social-icons a:hover {
    color: var(--accent);
}

.footer-bottom {
    text-align: center;
    margin-top: 1.5rem;
    font-size: 0.85rem;
    color: #999;
}

.footer-logo {
    width: 120px;
    height: auto;
    filter: drop-shadow(0 3px 8px rgba(0, 0, 0, 0.4));
    margin-bottom: 1rem;
    transition: transform 0.3s ease;
}

/* Responsive */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}

/* ======= MOBILE RESPONSIVE ======= */
@media (max-width: 900px) {
    #labels-footer {
        display: none !important;
    }

    .footer-container {
        grid-template-columns: 1fr;
        flex-direction: row;
        text-align: start;
        padding-left: 2rem;
    }

    .footer-column li {
        justify-content: start;
    }

    .footer-column ul {
        align-items: start;
    }

    .social-icons {
        justify-content: start;
    }

    .footer-column h3,
    .footer-column h4 {
        font-size: 1.2rem;
    }

    .footer {
        padding: 2rem 1.2rem;
    }
}

/* === Responsive para móviles === */
@media (max-width: 900px) {
    .about-header {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .about-header img {
        height: auto;
        max-height: 400px;
        margin: 0 auto;
    }

    .about-header .section-subtitle {
        font-size: 1rem;
        line-height: 1.7;
        padding-left: 20px;
        padding-right: 20px;
    }
}

/* ===== MENU HAMBURGUESA ===== */
.menu-toggle {
    display: none;
}

/* Icono del menú */
.menu-icon {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 22px;
    cursor: pointer;
    z-index: 1001;
    margin-left: auto;
    color: #0F254F;
    /* 🔹 lo empuja al extremo derecho */
}

.menu-icon span {
    display: block;
    height: 3px;
    background: #0F254F;
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* Animación del ícono */
.menu-toggle:checked+.menu-icon span:nth-child(1) {
    transform: rotate(45deg) translateY(8px);
}

.menu-toggle:checked+.menu-icon span:nth-child(2) {
    opacity: 0;
}

.menu-toggle:checked+.menu-icon span:nth-child(3) {
    transform: rotate(-45deg) translateY(-8px);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
    .site-header {
        height: 65px !important;
    }

    /* 🔹 Header con layout correcto */
    .header-inner {
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
        /* separa logo e icono */
        gap: 0;
        width: 100%;
    }

    .brand {
        flex: 0 0 auto;
        margin-right: auto;
        height: 0px !important;
    }

    .logo {
        display: none;
        width: auto;
        padding-top: 20px;

    }

    .menu-icon {
        display: flex;
    }

    /* 🔹 Menú oculto por defecto */
    .nav {
        position: fixed;
        top: 0;
        right: 0;
        width: 100%;
        height: 100vh;
        /* ✅ ocupa toda la pantalla sin generar scroll */
        background: rgb(255, 255, 255);

        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 2rem;
        transform: translateX(100%);
        transition: transform 0.4s ease;
        z-index: 1000;
        overflow-y: auto;
        /* scroll solo dentro del menú si es necesario */
        overflow-x: hidden;
        /* ✅ evita scroll lateral */
    }

    /* 🔹 Mostrar menú cuando se activa el toggle */
    .menu-toggle:checked~.nav {
        transform: translateX(0);
    }

    /* 🔹 Bloquear scroll del body al abrir el menú */
    body:has(.menu-toggle:checked) {
        overflow: hidden;
    }

    .nav a {
        font-size: 1.3rem;
    }
}

/* 🔹 En desktop se mantiene normal */
@media (min-width: 901px) {
    .menu-icon {
        display: none;
    }

    .nav {
        display: flex;
        gap: 1.2rem;
        position: static;
        transform: none;
        background: transparent;
    }
}

/* 🔹 Evita cualquier desplazamiento lateral global */
html,
body {
    overflow-x: hidden;
}

.vo-slider {
    width: 100%;
    max-width: 400px;
    overflow: hidden;
    border-radius: 20px;
    position: relative;
}

.vo-slider-track {
    display: flex;
    animation: voAutoSlide 16s infinite;
}

.vo-slider-track img {
    width: 100%;
    flex: 0 0 100%;
    object-fit: contain !important;
    display: block;
}

@keyframes voAutoSlide {

    0%,
    30% {
        transform: translateX(0%);
    }

    33%,
    63% {
        transform: translateX(-100%);
    }

    66%,
    96% {
        transform: translateX(-200%);
    }

    100% {
        transform: translateX(0%);
    }
}

.about-header .vo-slider {
    height: 500px;
}

.about-header .vo-slider img {
    height: 100%;
}

/* ===== TIMELINE ===== */

.timeline-section {
    background: var(--bg);
    padding: 5rem 0;
}

.vo-timeline {
    position: relative;
    margin-top: 3rem;
    padding-left: 2rem;
}

/* Línea vertical */
.vo-timeline::before {
    content: "";
    position: absolute;
    left: 20px;
    top: 0;
    width: 3px;
    height: 100%;
    background: linear-gradient(to bottom, var(--accent), transparent);
}

/* Item */
.vo-timeline-item {
    position: relative;
    margin-bottom: 3rem;
    padding-left: 3rem;
}

/* Punto */
.vo-timeline-item::before {
    content: "";
    position: absolute;
    left: 11px;
    top: 8px;
    width: 18px;
    height: 18px;
    background: var(--accent);
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.08);
}

/* Año */
.vo-timeline-year {
    font-size: 1rem;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
}

/* Contenido */
.vo-timeline-content {
    background: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.vo-timeline-content:hover {
    transform: translateY(-6px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.vo-timeline-content h3 {
    margin-bottom: 0.6rem;
    color: var(--accent);
    font-size: 1.2rem;
}

.vo-timeline-content p {
    color: var(--muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
    .vo-timeline {
        padding-left: 1.5rem;
    }

    .vo-timeline-item {
        padding-left: 2.5rem;
    }

    .vo-timeline-content {
        padding: 1.2rem;
    }
}

/* ===== VENTAJAS ===== */

.vo-advantages {
    padding: 5rem 0;
    background: var(--bg);
}

.vo-advantages-grid {
    margin-top: 3rem;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.vo-adv-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 2rem;
    border-radius: 18px;
    backdrop-filter: blur(10px);
    transition: all 0.35s ease;
    position: relative;
    overflow: hidden;
}

.vo-adv-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.35);
    border-color: var(--accent);
}

.vo-adv-icon {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.vo-adv-card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
    color: var(--accent);
}

.vo-adv-card p {
    font-size: 0.95rem;
    color: var(--muted);
    line-height: 1.6;
}

/* Responsive */

@media (max-width: 1024px) {
    .vo-advantages-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .vo-advantages-grid {
        grid-template-columns: 1fr;
    }
}

/* ===== PRICING ===== */

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.pricing-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 24px;
    padding: 2.5rem 2rem;
    text-align: center;
    backdrop-filter: blur(14px);
    transition: all 0.4s ease;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.35);
    border-color: var(--accent);
}

.pricing-header {
    background: var(--brand);
    padding: 1.2rem;
    border-radius: 18px;
    margin-bottom: 2rem;
}

.pricing-header h3 {
    color: #fff;
    margin: 0;
    font-size: 1.3rem;
}

.pricing-header span {
    font-size: 0.8rem;
    color: #ddd;
    letter-spacing: 1px;
}

.pricing-price {
    margin-bottom: 2rem;
}

.pricing-price small {
    font-size: 1rem;
    vertical-align: top;
}

.pricing-price strong {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--accent);
}

.pricing-price p {
    font-size: 0.9rem;
    color: var(--muted);
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
    display: grid;
    gap: 0.8rem;
    color: var(--muted);
}

.pricing-features li {
    padding: 0.4rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.pricing-card.featured {
    border: 2px solid var(--accent);
    transform: scale(1.05);
}

.pricing-card.featured:hover {
    transform: scale(1.08);
}

/* ===== NUEVA SECCIÓN UBICACIÓN ===== */



.vo-location-top {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.vo-location-logo {
    width: 180px;
    margin-bottom: 2rem;
}

.vo-location-info {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.vo-contact-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: linear-gradient(90deg, #163a70 0%, #1f4e84 35%, #3f79ad 70%, #6bb0d6 100%);
    border-radius: 18px;
    padding: 1.2rem 1.5rem;
    backdrop-filter: blur(12px);
    transition: all 0.3s ease;
}

.vo-contact-card:hover {
    transform: translateY(-4px);
    border-color: var(--accent);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
}

.vo-contact-card.full {
    width: 100%;
}

.vo-icon {
    font-size: 1.4rem;
}

.vo-contact-card h4 {
    margin: 0;
    font-size: 0.9rem;
    letter-spacing: 1px;
    color: var(--accent);
}

.vo-contact-card p {
    margin: 0;
    font-size: 0.95rem;
    color: var(--muted);
}

/* Imagen */
.vo-location-image img {
    width: auto;
    height: 350px;
    border-radius: 24px;
    box-shadow: var(--shadow);
}

/* Mapa */
.vo-location-map {
    margin-top: 3rem;
}

.vo-location-map iframe {
    width: 100%;
    height: 350px;
    border: 0;
    border-radius: 24px;
    box-shadow: var(--shadow);
}

/* Responsive */
@media (max-width: 900px) {
    .vo-location-top {
        grid-template-columns: 1fr;
    }

    .vo-location-logo {
        margin: 0 auto 2rem;
    }

    .vo-location-info {
        align-items: center;
    }

    .vo-contact-card {
        width: 100%;
    }

    .vo-location-image img {
        width: 100%;
        height: 350px;
        padding-left: 50px;
        padding-right: 50px;
        border-radius: 34px;
        box-shadow: var(--shadow);
    }
}

/* ===== TOPBAR ===== */
.topbar {
    background: var(--brand);
    color: #fff;
    font-size: 0.85rem;
    padding: 0.2rem 0;
}

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

.topbar-phones {
    display: flex;
    gap: 1.5rem;
}

.topbar a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
}

/* ===== HEADER ===== */
.vo-header {
    position: sticky;
    top: 0;
    z-index: 999;
    padding: 1rem 0;
}

.vo-header-inner {
    background: #fff;
    border-radius: 20px;
    padding: 1rem 2rem;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.vo-brand img {
    height: 60px;
}

.vo-nav {
    display: flex;
    align-items: center;
    gap: 1.8rem;
}

.vo-nav a {
    color: var(--brand);
    font-weight: 500;
    transition: 0.3s ease;
}

.vo-nav a:hover {
    opacity: 0.7;
}

/* Botón */
.vo-btn {
    background: linear-gradient(90deg,
            #163a70 0%,
            #1f4e84 35%,
            #3f79ad 70%,
            #6bb0d6 100%);
    color: #fff !important;
    padding: 0.7rem 1.4rem;
    border-radius: 50px;
    font-weight: bold;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
    transition: 0.3s ease;
}

.vo-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.25);
}

/* Responsive */
@media (max-width: 900px) {
    .vo-nav {
        display: none;
        /* luego podemos activar hamburguesa */
    }
}

.vo-services-grid {
    display: grid;
    grid-template-columns: repeat(auto, minmax(200px, 3fr));
    gap: 1rem;
    margin-top: 1rem;
}

.vo-service-card {
    background: linear-gradient(90deg,
            #163a70 0%,
            #1f4e84 35%,
            #3f79ad 70%,
            #6bb0d6 100%);
    color: white;
    padding: 2rem;
    border-radius: 16px;
    transition: 0.3s;
}

.vo-service-card:hover {
    transform: translateY(-6px);
    border-color: var(--accent);
}

.vo-services-note {
    margin-top: 2rem;
    text-align: center;
    color: var(--title);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    font-weight: bold;
    font-size: 1.5rem;
    line-height: 30px;
}

.vo-offer {
    color: white;
}

.vo-offer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(auto, 1fr));
    gap: 1.2rem;
    margin-top: 2rem;
}

.vo-offer-item {
    background: linear-gradient(90deg,
            #163a70 0%,
            #1f4e84 35%,
            #3f79ad 70%,
            #6bb0d6 100%);

    padding: 1rem 1.2rem;
    border-radius: 12px;
    position: relative;
    padding-left: 2.5rem;
}

.vo-offer-item::before {
    content: "✓";
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--accent);
    font-weight: 700;
}

.vo-offer-note {
    margin-top: 2rem;
    text-align: center;
    color: var(--muted);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* ===== OFRECEMOS ===== */

.vo-offer {
    position: relative;
    color: #fff;
}

/* GRID DESKTOP */

.vo-offer-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.2rem;
    margin-top: 2rem;
}

/* ITEM */

.vo-offer-item {
    background: linear-gradient(90deg,
            #163a70 0%,
            #1f4e84 35%,
            #3f79ad 70%,
            #6bb0d6 100%);

    padding: 1rem 1.3rem;
    border-radius: 12px;
    position: relative;
    padding-left: 2.5rem;
    font-size: .95rem;
}

/* CHECK */

.vo-offer-item::before {
    content: "✓";
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    font-weight: 700;
    color: #fff;
}

/* TEXTO FINAL */

.vo-offer-note {
    margin-top: 2rem;
    text-align: center;
    color: #e3e3e3;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}


/* ===== TABLET ===== */

@media (max-width:900px) {

    .vo-offer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }

    .vo-offer-item {
        font-size: .9rem;
        padding: 1rem 1.2rem;
        padding-left: 2.3rem;
    }

}


/* ===== MOBILE ===== */

@media (max-width:768px) {

    .vo-offer {
        padding-left: 80px;
        padding-right: 80px;
    }



    .section-subtitle {
        line-height: 1.6;
        padding: 0 10px;
    }

    .vo-offer-grid {
        grid-template-columns: 1fr;
        gap: .8rem;
    }

    .vo-offer-item {
        font-size: .95rem;
        line-height: 1.5;
        padding: 1rem 1rem 1rem 2.2rem;
    }

    .vo-offer-note {
        font-size: .9rem;
        padding: 0 10px;
    }

}


/* ===== EXTRA SMALL ===== */

@media (max-width:420px) {

    .vo-offer-item {
        font-size: .9rem;
    }

    .section-title {
        font-size: 1.4rem;
    }

}

.vo-municipios {
    background: white;
}

.vo-municipios-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.vo-municipio-card {
    background: linear-gradient(90deg,
            #163a70 0%,
            #1f4e84 35%,
            #3f79ad 70%,
            #6bb0d6 100%);

    border-radius: 18px;
    padding: 1.8rem;
    backdrop-filter: blur(10px);
    transition: 0.3s;
}

.vo-municipio-card:hover {
    transform: translateY(-6px);
    border-color: var(--accent);
}

.vo-municipio-card h3 {
    margin-bottom: 1rem;
    color: var(--accent);
    font-size: 1.2rem;
}

.vo-municipio-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 0.6rem;
    color: var(--accent);
}

.vo-municipio-card li::before {
    content: "✓";
    margin-right: 8px;
    color: var(--accent);
}


.vo-strengths {
    background-color: white;
}

.vo-strengths-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(260px, 1fr));
    gap: 1.8rem;
    margin-top: 3rem;
    color: white;
}

.vo-strength-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    background: linear-gradient(90deg,
            #163a70 0%,
            #1f4e84 35%,
            #3f79ad 70%,
            #6bb0d6 100%);

    padding: 1.3rem;
    border-radius: 16px;
    transition: 0.3s;
    color: white !important;

}

.vo-strength-item:hover {
    transform: translateY(-6px);
    border-color: var(--accent);
}

.vo-strength-item .icon {
    width: 38px;
    height: 38px;
    color: var(--accent);
    flex-shrink: 0;
}

.vo-strength-item svg {
    width: 100%;
    height: 100%;
    stroke-width: 1.8;
}

.vo-strength-item p {
    color: rgb(255, 255, 255) !important;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* ===== RESPONSIVE FORTALEZAS ===== */

/* Desktop grande */
@media (min-width:1200px) {

    .vo-strengths-grid {
        grid-template-columns: repeat(3, 1fr);
    }

}


/* Tablet */
@media (max-width:1024px) {

    .vo-strengths-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

}


/* Tablet pequeña */
@media (max-width:768px) {

    .vo-strengths {
        padding: 80px 0;
    }

    .vo-strengths-grid {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }

    .vo-strength-item {
        padding: 1.2rem;
    }

}


/* Mobile pequeño */
@media (max-width:480px) {

    .vo-strength-item {
        padding: 1rem;
        gap: .8rem;
    }

    .vo-strength-item .icon {
        width: 34px;
        height: 34px;
    }

}

.vo-offer-parallax {
    position: relative;
    background-image: url("../assets/hero1.jpg");
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 120px 0;
}

/* overlay para mejorar legibilidad */

.vo-offer-parallax::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(10, 20, 40, 0.75);
}

.vo-offer-parallax .container {
    position: relative;
    z-index: 2;
}

/* ===== HEADER MODERNO ===== */

.vo-header {
    position: sticky;
    top: 0;
    z-index: 999;
    padding: 1rem 0;
    background: transparent;
}

.vo-header-inner {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 0.9rem 2rem;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
    display: flex;
    align-items: center;
    justify-content: space-between;
    backdrop-filter: blur(12px);
}

/* LOGO */

.vo-brand img {
    height: 60px;
    transition: transform .3s ease;
}

.vo-brand img:hover {
    transform: scale(1.05);
}

/* NAV */

.vo-nav {
    display: flex;
    align-items: center;
    gap: 1.8rem;
}

.vo-nav a {
    font-weight: 500;
    color: var(--brand);
    transition: .3s ease;
    position: relative;
}

/* línea animada */

.vo-nav a::after {
    content: "";
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--brand);
    transition: .3s ease;
}

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

/* BOTON */

.vo-btn {
    background: linear-gradient(90deg,
            #163a70 0%,
            #1f4e84 35%,
            #3f79ad 70%,
            #6bb0d6 100%);
    color: #fff !important;
    padding: .6rem 1.4rem;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
    transition: .3s ease;
}

.vo-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.25);
}

/* ===== RESPONSIVE ===== */

@media(max-width:900px) {

    .vo-header-inner {
        flex-direction: column;
        gap: .8rem;
        padding: 1rem;
    }

    .vo-nav {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }

    .vo-brand img {
        height: 50px;
    }

}

/* ===== TOPBAR RESPONSIVE ===== */

@media (max-width:768px) {

    .topbar-inner {
        flex-direction: column;
        gap: 4px;
        text-align: center;
    }

    .topbar-text {
        font-size: .8rem;
    }

    .topbar-phones {
        gap: .8rem;
        font-size: .9rem;
    }

}


/* ===== HEADER ===== */

.vo-header {
    position: sticky;
    top: 0;
    z-index: 999;
    padding: .6rem 0;
    background: transparent;
}

.vo-header-inner {
    background: #fff;
    border-radius: 20px;
    padding: .8rem 1.5rem;
    box-shadow: 0 10px 28px rgba(0, 0, 0, .12);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* LOGO */

.vo-brand img {
    height: 60px;
}


/* NAV DESKTOP */

.vo-nav {
    display: flex;
    align-items: center;
    gap: 1.6rem;
}

.vo-nav a {
    color: var(--brand);
    font-weight: 500;
    transition: .3s;
}

.vo-nav a:hover {
    opacity: .7;
}


/* ===== HAMBURGUESA ===== */

.menu-toggle {
    display: none;
}

.menu-icon {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 20px;
    cursor: pointer;
}

.menu-icon span {
    height: 3px;
    background: var(--brand);
    border-radius: 3px;
    transition: .3s;
}


/* ===== MOBILE ===== */

@media(max-width:900px) {

    .menu-icon {
        display: flex;
    }

    /* MENÚ */

    .vo-nav {
        position: fixed;
        top: 0;
        right: 0;
        width: 100%;
        height: 100vh;
        background: #ffffff;

        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;

        transform: translateX(100%);
        transition: .4s;

        z-index: 998;
    }

    /* LINKS */

    .vo-nav a {
        font-size: 1.3rem;
    }

    /* BOTÓN */

    .vo-nav .vo-btn {
        font-size: 1.1rem;
        padding: .9rem 2rem;
    }

    /* ABRIR MENU */

    .menu-toggle:checked~.vo-nav {
        transform: translateX(0);
    }

    /* ANIMACION HAMBURGUESA */

    .menu-toggle:checked+.menu-icon span:nth-child(1) {
        transform: rotate(45deg) translateY(8px);
    }

    .menu-toggle:checked+.menu-icon span:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle:checked+.menu-icon span:nth-child(3) {
        transform: rotate(-45deg) translateY(-8px);
    }

}