/* Estilos propios (sobre Bootstrap 5) */

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

#destinos,
#nosotros {
    scroll-margin-top: 90px;
}

body {
    font-family: "Segoe UI", system-ui, -apple-system, sans-serif;
    overflow-x: hidden;
    width: 100%;
}

/* Container más ancho para el home — reduce el padding lateral visible */
.destinos .container,
.tipos .container,
.nosotros .container,
.ventajas-bar .container,
.section-header {
    max-width: 1400px;
}

/* Navbar */
#mainNavbar {
    background: transparent;
    padding: 1.1rem 0;
    transition: background 0.4s ease, padding 0.4s ease, box-shadow 0.4s ease;
}
#mainNavbar .container-fluid {
    position: relative;
}
#mainNavbar.scrolled {
    background: rgba(47, 62, 132, 0.96);
    backdrop-filter: blur(12px);
    padding: .6rem 0;
    box-shadow: 0 4px 24px rgba(0,0,0,0.3);
}

#mainNavbar .navbar-brand {
    display: flex;
    align-items: center;
    gap: .5rem;
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
}
#mainNavbar .navbar-brand__logo {
    height: 100px;
    width: auto;
    object-fit: contain;
}

@media (max-width: 767px) {
    #mainNavbar .navbar-brand__logo {
        height: 72px;
    }
}

#mainNavbar .nav-link {
    color: rgba(255,255,255,0.82) !important;
    font-size: .82rem;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
    padding: .4rem .75rem !important;
    position: relative;
    transition: color 0.2s;
}
#mainNavbar .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: .75rem;
    right: .75rem;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(
        90deg,
        var(--vw-accent-dark),
        var(--vw-accent),
        var(--vw-accent-light),
        var(--vw-green),
        var(--vw-green-light),
        var(--vw-primary)
    );
    background-size: 200% 100%;
    animation: footer-title-glow 4s ease-in-out infinite alternate;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.25s ease;
}
#mainNavbar .nav-link:hover,
#mainNavbar .nav-link.active {
    color: #fff !important;
}
#mainNavbar .nav-link:hover::after,
#mainNavbar .nav-link.active::after {
    transform: scaleX(1);
}

/* Botón hamburguesa */
#mainNavbar .navbar-toggler {
    border: 1px solid rgba(255,255,255,0.25);
    border-radius: 10px;
    padding: .45rem .6rem;
    background: rgba(255,255,255,0.08);
    transition: background 0.25s ease, border-color 0.25s ease;
}
#mainNavbar .navbar-toggler:focus {
    box-shadow: 0 0 0 3px rgba(255,255,255,0.15);
}
#mainNavbar .navbar-toggler-icon {
    width: 1.3em;
    height: 1.3em;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255,255,255,0.95)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}
#mainNavbar .navbar-toggler[aria-expanded="true"] {
    background: rgba(255,255,255,0.16);
    border-color: rgba(255,255,255,0.4);
}

.navbar-actions {
    display: flex;
    align-items: center;
    gap: .75rem;
    margin-left: 1.5rem;
}
.btn-nav-cta {
    display: inline-block;
    background: var(--vw-accent);
    color: var(--vw-primary-dark) !important;
    font-weight: 700;
    font-size: .8rem;
    letter-spacing: .08em;
    text-transform: uppercase;
    padding: .55rem 1.4rem;
    border-radius: 50px;
    text-decoration: none;
    transition: background 0.2s, transform 0.2s;
}
.btn-nav-cta:hover {
    background: var(--vw-accent-light);
    transform: scale(1.04);
}

/* Animaciones de scroll (Intersection Observer) */
.reveal-up,
.reveal-left,
.reveal-right,
.reveal-scale {
    opacity: 0;
    transition:
        opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1) var(--delay, 0s),
        transform 0.75s cubic-bezier(0.22, 1, 0.36, 1) var(--delay, 0s);
    will-change: opacity, transform;
}
.reveal-up    { transform: translateY(40px); }
.reveal-left  { transform: translateX(-50px); }
.reveal-right { transform: translateX(50px); }
.reveal-scale { transform: scale(0.88); }

.reveal-up.visible,
.reveal-left.visible,
.reveal-right.visible,
.reveal-scale.visible {
    opacity: 1;
    transform: none;
}

/* Hero */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    max-width: 100vw;
}

.hero__bg {
    position: absolute;
    inset: 0;
    background: url("../img/home/fondo.png") center / cover no-repeat;
    transform: scale(1.06);
    animation: hero-zoom 18s ease-in-out infinite alternate;
}
@keyframes hero-zoom {
    from { transform: scale(1.06); }
    to   { transform: scale(1.12); }
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(47, 62, 132, 0.72) 0%,
        rgba(35, 105, 178, 0.45) 60%,
        rgba(47, 62, 132, 0.65) 100%
    );
}

.hero__content {
    position: relative;
    z-index: 2;
    padding-top: 100px;
    padding-bottom: 60px;
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .35rem 1rem;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.25);
    border-radius: 999px;
    color: var(--vw-accent-light);
    font-size: .8rem;
    font-weight: 600;
    letter-spacing: .06em;
    backdrop-filter: blur(6px);
    margin-bottom: 1.4rem;
}
.hero__badge i { font-size: 1rem; }

.hero__title {
    font-size: clamp(2.4rem, 5.5vw, 4rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.15;
    max-width: 780px;
    text-shadow: 0 2px 28px rgba(0,0,0,0.3);
    margin-bottom: 1rem;
}

.hero__sub {
    font-size: clamp(1rem, 2vw, 1.15rem);
    color: rgba(255,255,255,0.78);
    max-width: 520px;
    margin-bottom: 2rem;
    line-height: 1.65;
}

.hero__search {
    background: rgba(255,255,255,0.97);
    border-radius: 16px;
    padding: .5rem;
    max-width: 860px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.25);
    margin-bottom: 2rem;
}
.hero__search-group {
    display: flex;
    align-items: stretch;
    gap: 0;
}
.hero__search-field {
    display: flex;
    align-items: center;
    gap: .75rem;
    flex: 1;
    padding: .75rem 1.25rem;
}
.hero__search-field > i {
    font-size: 1.2rem;
    color: var(--vw-primary);
    flex-shrink: 0;
}
.hero__search-field div {
    display: flex;
    flex-direction: column;
    width: 100%;
}
.hero__search-field label {
    font-size: .68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .06em;
    color: var(--vw-muted);
    margin-bottom: .15rem;
}
.hero__search-field input,
.hero__search-field select {
    border: none;
    outline: none;
    font-size: .95rem;
    font-weight: 500;
    color: var(--vw-ink);
    background: transparent;
    padding: 0;
    width: 100%;
    appearance: none;
}
.hero__search-field input::placeholder { color: #aaa; }

.hero__search-divider {
    width: 1px;
    background: var(--vw-sand-dark);
    align-self: stretch;
    margin: .5rem 0;
}
.hero__search-btn {
    display: flex;
    align-items: center;
    gap: .5rem;
    background: var(--vw-primary);
    color: #fff;
    border: none;
    border-radius: 12px;
    padding: .85rem 1.8rem;
    font-size: .95rem;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
    white-space: nowrap;
    margin: .25rem;
}
.hero__search-btn:hover {
    background: var(--vw-primary-dark);
    transform: scale(1.03);
}

.hero__stats {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}
.hero__stat {
    display: flex;
    flex-direction: column;
    color: #fff;
}
.hero__stat strong {
    font-size: 1.6rem;
    font-weight: 800;
    line-height: 1;
    color: var(--vw-accent-light);
}
.hero__stat span {
    font-size: .78rem;
    color: rgba(255,255,255,0.65);
    margin-top: .1rem;
}
.hero__stat-sep {
    width: 1px;
    height: 36px;
    background: rgba(255,255,255,0.25);
}

.hero__scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    width: 26px;
    height: 40px;
    border: 2px solid rgba(255,255,255,0.4);
    border-radius: 999px;
    display: flex;
    justify-content: center;
    padding-top: 6px;
}
.hero__scroll span {
    display: block;
    width: 4px;
    height: 8px;
    background: rgba(255,255,255,0.7);
    border-radius: 999px;
    animation: scroll-dot 1.8s ease-in-out infinite;
}
@keyframes scroll-dot {
    0%   { transform: translateY(0); opacity: 1; }
    80%  { transform: translateY(14px); opacity: 0; }
    100% { transform: translateY(0); opacity: 0; }
}

/* Encabezado de sección, compartido entre vistas */
.section-header {
    text-align: center;
    margin-bottom: 3.5rem;
}
.section-header__tag {
    display: inline-block;
    padding: .3rem .9rem;
    background: rgba(35,105,178,0.1);
    color: var(--vw-primary);
    border-radius: 999px;
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    margin-bottom: .75rem;
}
.section-header h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    font-weight: 800;
    color: var(--vw-primary-dark);
    margin-bottom: .75rem;
}
.section-header h2 em {
    font-style: normal;
    color: var(--vw-primary);
}
.section-header p {
    color: var(--vw-muted);
    max-width: 520px;
    margin: 0 auto;
    font-size: .97rem;
}
.section-header__link {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    margin-top: 1.1rem;
    color: var(--vw-primary);
    font-weight: 700;
    font-size: .92rem;
    text-decoration: none;
    transition: gap 0.25s ease, color 0.25s ease;
}
.section-header__link:hover {
    gap: .65rem;
    color: var(--vw-primary-dark);
}

.ventajas-bar {
    background: var(--vw-primary-dark);
    border-bottom: 1px solid rgba(255,255,255,0.06);
    padding: 2rem 0;
}
.ventajas-bar__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: .5rem;
}
.ventaja-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
    min-width: 180px;
    padding: .25rem 1rem;
    color: #fff;
    transition: transform 0.25s ease;
}
.ventaja-item:hover { transform: translateY(-2px); }
.ventaja-item__icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--vw-primary-light), var(--vw-primary));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    color: #fff;
    flex-shrink: 0;
    box-shadow: 0 4px 14px rgba(35,105,178,0.4);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.ventaja-item:hover .ventaja-item__icon {
    transform: rotate(8deg) scale(1.1);
    box-shadow: 0 6px 20px rgba(35,105,178,0.6);
}
.ventaja-item div {
    display: flex;
    flex-direction: column;
    line-height: 1.25;
}
.ventaja-item strong {
    font-size: .88rem;
    font-weight: 700;
    color: #fff;
}
.ventaja-item span {
    font-size: .75rem;
    color: rgba(255,255,255,0.45);
    margin-top: .15rem;
}
.ventaja-item__sep {
    width: 1px;
    height: 40px;
    background: rgba(255,255,255,0.08);
    flex-shrink: 0;
    align-self: center;
}

.destinos {
    padding: 2rem 0;
    background: var(--vw-sand);
}

/* Header editorial de la sección Destinos: título a la izquierda, texto+link a la derecha */
.destinos__header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 2.5rem;
    margin-bottom: 2.75rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--vw-sand-dark);
}
.destinos__header-main {
    flex: 1;
    min-width: 0;
}
.destinos__header-tag {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    color: var(--vw-accent-dark);
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    margin-bottom: .6rem;
}
.destinos__header-tag i { font-size: .95rem; color: var(--vw-accent); }
.destinos__header-main h2 {
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    font-weight: 800;
    color: var(--vw-primary-dark);
    line-height: 1.2;
    margin: 0;
}
.destinos__header-main h2 em {
    font-style: normal;
    color: var(--vw-primary);
}
.destinos__header-aside {
    flex-shrink: 0;
    text-align: right;
    max-width: 280px;
}
.destinos__header-aside p {
    color: var(--vw-muted);
    font-size: .9rem;
    line-height: 1.5;
    margin: 0 0 .75rem;
}
.destinos__header-link {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    color: var(--vw-primary);
    font-weight: 700;
    font-size: .88rem;
    text-decoration: none;
    transition: gap 0.25s ease, color 0.25s ease;
}
.destinos__header-link i {
    transition: transform 0.25s ease;
}
.destinos__header-link span.short {
    display: none;
}
.destinos__header-link:hover {
    color: var(--vw-primary-dark);
    gap: .65rem;
}
.destinos__header-link:hover i {
    transform: translateX(2px);
}

/* Desktop: el bloque derecho pasa de texto plano a una tarjeta-CTA con acento */
@media (min-width: 768px) {
    .destinos__header-aside {
        position: relative;
        display: flex;
        align-items: center;
        gap: 1.1rem;
        text-align: left;
        max-width: 380px;
        background: #fff;
        border: 1px solid var(--vw-sand-dark);
        border-left: 3px solid var(--vw-accent);
        border-radius: 14px;
        padding: .9rem 1.25rem;
        box-shadow: 0 10px 26px rgba(35,105,178,0.07);
        transition: transform 0.3s cubic-bezier(.22,1,.36,1), box-shadow 0.3s ease;
    }
    .destinos__header-aside:hover {
        transform: translateY(-3px);
        box-shadow: 0 16px 34px rgba(35,105,178,0.12);
    }
    .destinos__header-aside p {
        font-size: .85rem;
        margin-bottom: 0;
        flex: 1;
    }
    .destinos__header-link {
        flex-shrink: 0;
        background: rgba(35,105,178,0.08);
        padding: .5rem .9rem;
        border-radius: 999px;
        font-size: .82rem;
        white-space: nowrap;
    }
    .destinos__header-link:hover {
        background: var(--vw-primary);
        color: #fff !important;
    }
}

@media (max-width: 767px) {
    .destinos__header {
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
        margin-bottom: 1.75rem;
        padding-bottom: 1.1rem;
    }
    .destinos__header-tag {
        font-size: .7rem;
        margin-bottom: .4rem;
    }
    .destinos__header-main h2 {
        font-size: 1.5rem;
    }
    .destinos__header-aside {
        text-align: left;
        max-width: none;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 1rem;
    }
    .destinos__header-aside p {
        margin: 0;
        font-size: .82rem;
        flex: 1;
    }
    .destinos__header-link {
        flex-shrink: 0;
        background: rgba(35,105,178,0.08);
        padding: .5rem .9rem;
        border-radius: 999px;
        font-size: .78rem;
        white-space: nowrap;
    }
    .destinos__header-link span.full { display: none; }
    .destinos__header-link span.short { display: inline; }
}

.destinos__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.destino-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 4px 20px rgba(0,0,0,0.07);
    transition: transform 0.4s cubic-bezier(0.22,1,0.36,1), box-shadow 0.4s ease;
    display: flex;
    flex-direction: column;
}
.destino-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 28px 56px rgba(35,105,178,0.18);
}

/* En desktop la primera card es una más del grid de 3 columnas (sin tratamiento especial) */
.destino-card--featured .destino-card__badge {
    display: inline-flex;
}

@media (max-width: 767px) {
/* La primera card es destacada en mobile: ocupa el ancho completo con layout horizontal */
.destino-card--featured {
    grid-column: 1 / -1;
    flex-direction: row;
}
.destino-card--featured .destino-card__img-wrap {
    width: 48%;
    height: auto;
    flex-shrink: 0;
}
.destino-card--featured .destino-card__body {
    padding: 2rem 2.25rem;
}
.destino-card--featured .destino-card__body h5 {
    font-size: 1.5rem;
}
.destino-card--featured .destino-card__body p {
    font-size: .95rem;
    -webkit-line-clamp: 3;
}
}

.destino-card__img-wrap {
    position: relative;
    overflow: hidden;
    height: 230px;
}
.destino-card__img-wrap::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 60%, rgba(0,0,0,0.25) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}
.destino-card:hover .destino-card__img-wrap::after { opacity: 1; }
.destino-card__img-wrap img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.55s cubic-bezier(0.22,1,0.36,1);
}
.destino-card:hover .destino-card__img-wrap img { transform: scale(1.1); }
.destino-card__pais {
    position: absolute;
    top: .85rem; right: .85rem;
    z-index: 1;
    background: rgba(47,62,132,0.75);
    backdrop-filter: blur(6px);
    color: #fff;
    font-size: .75rem; font-weight: 600;
    padding: .3rem .75rem;
    border-radius: 999px;
    display: flex; align-items: center; gap: .3rem;
}
.destino-card__badge {
    display: none;
    position: absolute;
    top: .85rem; left: .85rem;
    z-index: 1;
    background: var(--vw-accent);
    color: var(--vw-primary-dark);
    font-size: .7rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: .04em;
    padding: .35rem .8rem;
    border-radius: 999px;
    align-items: center; gap: .3rem;
}
.destino-card__body {
    padding: 1.4rem 1.5rem;
    display: flex; flex-direction: column; flex: 1;
}
.destino-card__body h5 {
    font-weight: 700; color: var(--vw-primary-dark);
    margin-bottom: .4rem; font-size: 1.1rem;
}
.destino-card__body p {
    color: var(--vw-muted); font-size: .88rem;
    flex: 1; margin-bottom: 1rem; line-height: 1.55;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.destino-card__footer {
    display: flex; align-items: center; justify-content: space-between;
    border-top: 1px solid var(--vw-sand-dark);
    padding-top: 1rem; margin-top: auto;
}
.destino-card__precio { display: flex; flex-direction: column; line-height: 1; }
.destino-card__precio span {
    font-size: .72rem; color: var(--vw-muted);
    text-transform: uppercase; letter-spacing: .05em;
}
.destino-card__precio strong {
    font-size: 1.3rem; font-weight: 800; color: var(--vw-primary);
}
.destino-card__precio-original {
    font-size: .85rem; font-weight: 600; color: var(--vw-muted);
    text-decoration: line-through; margin-right: .3rem;
}
.destino-card__promo {
    display: inline-flex; align-items: center; gap: .35rem;
    font-size: .7rem; font-weight: 800; color: var(--vw-coral);
    background: rgba(232,96,47,0.1);
    padding: .25rem .6rem; border-radius: 999px;
    margin-bottom: .5rem; width: fit-content;
    text-transform: uppercase; letter-spacing: .03em;
}
.destino-card__btn {
    display: inline-flex; align-items: center; gap: .4rem;
    background: var(--vw-primary); color: #fff;
    border-radius: 8px; padding: .45rem 1rem;
    font-size: .83rem; font-weight: 600;
    text-decoration: none;
    transition: background 0.2s ease, gap 0.2s ease, transform 0.2s ease;
}
.destino-card__btn:hover { background: var(--vw-primary-dark); color: #fff; gap: .65rem; transform: translateX(2px); }

@media (max-width: 767px) {
    .destinos__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    .destino-card--featured {
        flex-direction: column;
    }
    .destino-card--featured .destino-card__img-wrap {
        width: 100%;
        height: 180px;
    }
    .destino-card--featured .destino-card__body {
        padding: 1.1rem 1.25rem;
    }
    .destino-card--featured .destino-card__body h5 {
        font-size: 1.1rem;
    }
    .destino-card--featured .destino-card__body p {
        -webkit-line-clamp: 2;
    }
    .destino-card__img-wrap {
        height: 130px;
    }
    .destino-card__body {
        padding: .9rem 1rem;
    }
    .destino-card__body h5 {
        font-size: .92rem;
        margin-bottom: .25rem;
    }
    .destino-card__body p {
        font-size: .78rem;
        margin-bottom: .6rem;
        -webkit-line-clamp: 2;
    }
    .destino-card__footer {
        padding-top: .6rem;
        flex-wrap: wrap;
        gap: .5rem;
    }
    .destino-card__precio strong {
        font-size: 1.05rem;
    }
    .destino-card__btn {
        padding: .4rem .8rem;
        font-size: .76rem;
    }
    .destino-card__pais {
        font-size: .68rem;
        padding: .25rem .6rem;
    }
}

.tipos { padding: 2rem 0; background: #fff; }

/* Header editorial de la sección Tipos: título a la izquierda, texto a la derecha */
.tipos__header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 2.5rem;
    margin-bottom: 2.75rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--vw-sand-dark);
}
.tipos__header-main {
    flex: 1;
    min-width: 0;
}
.tipos__header-tag {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    color: var(--vw-accent-dark);
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    margin-bottom: .6rem;
}
.tipos__header-tag i { font-size: .95rem; color: var(--vw-accent); }
.tipos__header-main h2 {
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    font-weight: 800;
    color: var(--vw-primary-dark);
    line-height: 1.2;
    margin: 0;
}
.tipos__header-main h2 em {
    font-style: normal;
    color: var(--vw-primary);
}
.tipos__header-aside {
    flex-shrink: 0;
    text-align: right;
    max-width: 320px;
    color: var(--vw-muted);
    font-size: .9rem;
    line-height: 1.55;
    margin: 0;
}

@media (max-width: 767px) {
    .tipos__header {
        flex-direction: column;
        align-items: stretch;
        gap: .5rem;
        margin-bottom: 1.75rem;
        padding-bottom: 1.1rem;
    }
    .tipos__header-tag {
        font-size: .7rem;
        margin-bottom: .4rem;
    }
    .tipos__header-main h2 {
        font-size: 1.5rem;
    }
    .tipos__header-aside {
        text-align: left;
        max-width: none;
        font-size: .82rem;
    }
}

.tipos__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
}
.tipo-card {
    display: block;
    position: relative; border-radius: 18px;
    overflow: hidden; height: 260px; cursor: pointer;
    text-decoration: none;
}
.tipo-card__bg {
    position: absolute; inset: 0;
    background-size: cover; background-position: center;
    transition: transform 0.5s ease;
}
.tipo-card:hover .tipo-card__bg { transform: scale(1.1); }
.tipo-card::after {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(47,62,132,0.75) 0%, rgba(47,62,132,0.1) 60%, transparent 100%);
    transition: background 0.35s ease;
}
.tipo-card:hover::after {
    background: linear-gradient(to top, rgba(217,112,26,0.8) 0%, rgba(217,112,26,0.25) 60%, transparent 100%);
}
.tipo-card__content {
    position: absolute; bottom: 1.5rem; left: 1.5rem; z-index: 2; color: #fff;
}
.tipo-card__content i {
    font-size: 1.8rem; display: block; margin-bottom: .4rem;
    transition: transform 0.3s ease;
}
.tipo-card:hover .tipo-card__content i { transform: translateY(-4px); }
.tipo-card__content h4 { font-weight: 700; font-size: 1.15rem; margin: 0; }

.nosotros { padding: 2rem 0; background: var(--vw-sand); overflow: hidden; }
.nosotros__img-wrap { position: relative; display: inline-block; width: 100%; max-width: 100%; }
.nosotros__img-wrap img {
    width: 100%; border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.15); display: block;
}
.nosotros__img-badge {
    position: absolute; bottom: 1.5rem; right: -1rem;
    background: var(--vw-primary); color: #fff;
    border-radius: 14px; padding: 1rem 1.5rem;
    text-align: center;
    box-shadow: 0 8px 24px rgba(35,105,178,0.4); line-height: 1.2;
}
.nosotros__img-badge strong { display: block; font-size: 1.4rem; font-weight: 800; }
.nosotros__img-badge span  { font-size: .78rem; opacity: .85; }
.nosotros h2 { font-size: clamp(1.8rem, 3vw, 2.4rem); font-weight: 800; color: var(--vw-primary-dark); }
.nosotros h2 em { font-style: normal; color: var(--vw-primary); }
.nosotros__lista {
    list-style: none; padding: 0; margin: 0;
    display: flex; flex-direction: column; gap: .85rem;
}
.nosotros__lista li {
    display: flex; align-items: center; gap: .75rem;
    font-size: .97rem; color: var(--vw-ink); font-weight: 500;
}
.nosotros__lista li i { color: var(--vw-primary); font-size: 1.1rem; flex-shrink: 0; }

.cta-section { position: relative; overflow: hidden; padding: 6rem 0; text-align: center; }
.cta-section__bg {
    position: absolute; inset: 0;
    background:
        linear-gradient(rgba(35,105,178,0.88), rgba(47,62,132,0.92)),
        url("https://images.unsplash.com/photo-1507525428034-b723cf961d3e?auto=format&fit=crop&w=1600&q=70")
        center / cover no-repeat fixed;
}
.cta-section__content { position: relative; z-index: 1; color: #fff; }
.cta-section__icon {
    font-size: 2.5rem; color: var(--vw-accent-light);
    display: block; margin-bottom: 1.25rem;
    animation: cta-icon-float 3s ease-in-out infinite alternate;
}
@keyframes cta-icon-float {
    from { transform: translateY(0); }
    to   { transform: translateY(-8px); }
}
.cta-section__content h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); font-weight: 800; margin-bottom: .75rem; }
.cta-section__content p  { font-size: 1.05rem; color: rgba(255,255,255,0.75); margin-bottom: 2rem; }
.cta-section__btn {
    display: inline-flex; align-items: center;
    background: #fff; color: var(--vw-primary-dark);
    font-weight: 700; font-size: 1rem;
    padding: .85rem 2.25rem; border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 8px 28px rgba(0,0,0,0.2);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.cta-section__btn:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 16px 36px rgba(0,0,0,0.28);
    color: var(--vw-primary-dark);
}

.site-footer {
    position: relative;
    overflow: hidden;
    margin-top: 0;
}

.footer__bg {
    position: absolute;
    inset: 0;
    background:
        url("https://images.unsplash.com/photo-1476514525535-07fb3b4ae5f1?auto=format&fit=crop&w=1600&q=60")
        center / cover no-repeat;
    filter: blur(3px) saturate(0.6);
    transform: scale(1.04);
    z-index: 0;
}
.footer__bg-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(47,62,132,0.92) 0%,
        rgba(47,62,132,0.97) 40%,
        rgba(28,43,51,0.99) 100%
    );
    z-index: 1;
}

.footer__body {
    position: relative;
    z-index: 2;
    padding: 4rem 0 3rem;
}
.footer__col--brand {
    margin-bottom: 2.75rem;
    max-width: 320px;
}
.footer__grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1.2fr;
    gap: 3rem;
}

.footer__logo {
    display: inline-flex;
    align-items: center;
    gap: .55rem;
    text-decoration: none;
    margin-bottom: 1rem;
    transition: transform 0.3s ease;
}
.footer__logo:hover {
    transform: translateY(-2px);
}
.footer__logo img {
    height: 104px;
    width: auto;
    object-fit: contain;
}
.footer__tagline {
    color: rgba(255,255,255,0.45);
    font-size: .88rem;
    line-height: 1.6;
    max-width: 240px;
    margin-bottom: 1.75rem;
}

.footer__social {
    display: flex;
    gap: .6rem;
}
.footer__social a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.12);
    color: rgba(255,255,255,0.55);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: border-color 0.3s, color 0.3s, transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.footer__social a::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle, var(--vw-accent) 0%, transparent 75%);
    opacity: 0;
    transform: scale(0.4);
    transition: opacity 0.3s ease, transform 0.3s ease;
}
.footer__social a i {
    position: relative;
    z-index: 1;
}
.footer__social a:hover {
    border-color: var(--vw-accent);
    color: #fff;
    transform: translateY(-4px) scale(1.08);
}
.footer__social a:hover::before {
    opacity: .9;
    transform: scale(1);
}

.footer__col-title {
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.35);
    margin-bottom: 1.4rem;
    position: relative;
    padding-bottom: .75rem;
}
.footer__col-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 32px;
    height: 3px;
    border-radius: 999px;
    background: linear-gradient(
        90deg,
        var(--vw-accent-dark),
        var(--vw-accent),
        var(--vw-accent-light),
        var(--vw-green),
        var(--vw-green-light),
        var(--vw-primary)
    );
    background-size: 200% 100%;
    animation: footer-title-glow 4s ease-in-out infinite alternate;
}

@keyframes footer-title-glow {
    from { background-position: 0% 0%; }
    to   { background-position: 100% 0%; }
}

.footer__links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: .6rem;
}
.footer__links a {
    display: inline-flex;
    align-items: center;
    gap: .15rem;
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    font-size: .9rem;
    transition: color 0.22s, gap 0.22s;
}
.footer__links a i {
    font-size: 1.1rem;
    opacity: 0;
    transition: opacity 0.22s, transform 0.22s;
    transform: translateX(-4px);
    color: var(--vw-accent);
}
.footer__links a:hover {
    color: #fff;
    gap: .4rem;
}
.footer__links a:hover i {
    opacity: 1;
    transform: translateX(0);
}

.footer__contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.footer__contact-list li {
    display: flex;
    align-items: flex-start;
    gap: .75rem;
    color: rgba(255,255,255,0.5);
    font-size: .88rem;
    line-height: 1.5;
}
.footer__contact-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: rgba(246,139,45,0.1);
    border: 1px solid rgba(246,139,45,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--vw-accent);
    font-size: .85rem;
    flex-shrink: 0;
    margin-top: .05rem;
    transition: background 0.25s ease, transform 0.25s ease;
}
.footer__contact-list li:hover .footer__contact-icon {
    background: var(--vw-accent);
    color: #fff;
    transform: scale(1.1) rotate(-6deg);
}
.footer__contact-list a {
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    transition: color 0.2s;
}
.footer__contact-list a:hover { color: var(--vw-accent); }

.footer__divider {
    position: relative;
    z-index: 2;
    height: 1px;
    background: rgba(255,255,255,0.06);
    overflow: visible;
}
.footer__divider-glow {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 1px;
    background: var(--vw-accent);
    border-radius: 999px;
    box-shadow: 0 0 18px 4px rgba(246,139,45,0.45);
    animation: footer-glow-pulse 3s ease-in-out infinite alternate;
}
@keyframes footer-glow-pulse {
    from { width: 120px; opacity: .6; }
    to   { width: 260px; opacity: 1; }
}

.footer__bottom {
    position: relative;
    z-index: 2;
    padding: 1.5rem 0;
}
.footer__bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}
.footer__copy {
    color: rgba(255,255,255,0.28);
    font-size: .8rem;
    margin: 0;
}
.footer__bottom-links {
    display: flex;
    align-items: center;
    gap: .6rem;
}
.footer__bottom-links a {
    color: rgba(255,255,255,0.28);
    text-decoration: none;
    font-size: .8rem;
    transition: color 0.2s;
}
.footer__bottom-links a:hover { color: rgba(255,255,255,0.7); }
.footer__bottom-links span { color: rgba(255,255,255,0.15); }
.footer__bottom-badge {
    display: flex;
    align-items: center;
    gap: .4rem;
    font-size: .78rem;
    color: rgba(255,255,255,0.28);
}
.footer__bottom-badge i { color: var(--vw-accent); }

/* Desktop: logo + Destinos + Servicios + Contacto en una sola fila de 4 columnas */
@media (min-width: 1101px) {
    .footer__body .container {
        display: grid;
        grid-template-columns: 1.1fr 1fr 1fr 1.2fr;
        gap: 2.5rem;
        align-items: start;
    }
    .footer__col--brand {
        margin-bottom: 0;
        max-width: none;
    }
    .footer__grid {
        display: contents;
    }
}

@media (max-width: 1100px) {
    .footer__grid {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem;
    }
    .footer__col--contact {
        grid-column: 1 / -1;
    }
}

/* Footer en mobile/tablet: 2 columnas compactas, más atractivas y animadas */
@media (max-width: 600px) {
    .footer__bottom-inner { flex-direction: column; align-items: flex-start; gap: .6rem; }

    .footer__body { padding: 3rem 0 2.5rem; }

    .footer__col--brand {
        max-width: none;
        text-align: center;
        margin-bottom: 2.25rem;
    }
    .footer__logo { justify-content: center; }
    .footer__logo img { height: 80px; }
    .footer__tagline { max-width: none; margin-left: auto; margin-right: auto; }
    .footer__social { justify-content: center; }

    .footer__grid {
        grid-template-columns: 1fr 1fr;
        gap: 1.75rem 1.25rem;
    }
    .footer__col--contact {
        grid-column: 1 / -1;
        margin-top: .5rem;
        padding-top: 1.75rem;
        border-top: 1px solid rgba(255,255,255,0.08);
    }

    .footer__col-title {
        font-size: .68rem;
        margin-bottom: 1.1rem;
    }
    .footer__links {
        gap: .85rem;
    }
    .footer__links a {
        font-size: .87rem;
    }

    .footer__contact-list {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 1.1rem 1.5rem;
    }
    .footer__contact-list li {
        flex: 1 1 calc(50% - .75rem);
        min-width: 150px;
    }
}

/* Aparición escalonada y suave de cada columna del footer al hacer scroll */
.footer__col.reveal-up {
    transition:
        opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1) var(--delay, 0s),
        transform 0.7s cubic-bezier(0.22, 1, 0.36, 1) var(--delay, 0s);
}
.footer__links li,
.footer__contact-list li {
    transition: transform 0.25s ease;
}
.footer__links li:hover,
.footer__contact-list li:hover {
    transform: translateX(2px);
}

@media (max-width: 991px) {
    .tipos__grid { grid-template-columns: repeat(2, 1fr); }
    .nosotros__img-badge { right: .5rem; }

    /* Menú mobile/tablet: panel propio con fondo sólido, no transparente */
    #mainNavbar .navbar-collapse {
        position: absolute;
        top: calc(100% + .75rem);
        left: 0;
        right: 0;
        background: rgba(30, 41, 92, 0.98);
        backdrop-filter: blur(16px);
        border: 1px solid rgba(255,255,255,0.1);
        border-radius: 18px;
        padding: 1.25rem 1.5rem 1.5rem;
        box-shadow: 0 20px 50px rgba(0,0,0,0.35);
        max-height: calc(100vh - 6rem);
        overflow-y: auto;
    }

    #mainNavbar .navbar-nav {
        margin: 0 !important;
        gap: .15rem !important;
    }
    #mainNavbar .nav-item {
        border-bottom: 1px solid rgba(255,255,255,0.07);
    }
    #mainNavbar .nav-item:last-child {
        border-bottom: none;
    }
    #mainNavbar .nav-link {
        padding: .85rem .25rem !important;
        font-size: .85rem;
        text-align: left;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: .75rem;
    }
    #mainNavbar .nav-link::after {
        content: '\f285';
        font-family: 'bootstrap-icons';
        position: static;
        width: auto;
        height: auto;
        background: none;
        font-size: .85rem;
        color: rgba(255,255,255,0.35);
        transform: none;
        transition: color 0.2s, transform 0.2s;
        flex-shrink: 0;
    }
    #mainNavbar .nav-link:hover::after,
    #mainNavbar .nav-link.active::after {
        color: var(--vw-accent);
        transform: translateX(3px);
    }

    .navbar-actions {
        margin-left: 0;
        margin-top: 1.1rem;
        padding-top: 1.1rem;
        border-top: 1px solid rgba(255,255,255,0.1);
        justify-content: space-between;
    }
    .btn-nav-cta {
        flex: 1;
        text-align: center;
    }
}

@media (max-width: 767px) {
    .hero__search-group { flex-direction: column; }
    .hero__search-divider { width: 100%; height: 1px; margin: 0; }
    .hero__search-btn { border-radius: 10px; justify-content: center; margin: .25rem; }
    .ventajas-bar__inner { gap: 1rem; }
    .ventaja-item { min-width: 140px; padding: .25rem .5rem; }
    .ventaja-item__sep { display: none; }
    .tipos__grid { grid-template-columns: repeat(2, 1fr); }
    .tipo-card { height: 200px; }
}

@media (prefers-reduced-motion: reduce) {
    .hero__img-bg,
    .cta-section__icon,
    .footer__col-title::after,
    #mainNavbar .nav-link::after,
    .reveal-up, .reveal-left, .reveal-right, .reveal-scale {
        animation: none !important;
        transition: none !important;
        opacity: 1 !important;
        transform: none !important;
    }
}
