/* ==========================================================================
   JALEO CLUB — Hoja de Estilos Principal
   Identidad: Varsity / Colegial, Juvenil, Mediterráneo, Fiesta y Profesional
   ========================================================================== */

:root {
    /* Paleta de colores inspirada en el logotipo */
    --navy: #071F46;
    --navy-dark: #0A1628;
    --navy-light: #0d2d60;
    --royal: #1457C5;
    --royal-hover: #0f449e;
    --sky: #AFC8F2;
    --sky-light: #d8e5fa;
    --cream: #F7F1DF;
    --coral: #E53935;
    --coral-hover: #C62828;
    --coral-glow: rgba(229, 57, 53, 0.35);

    /* Neutros */
    --white: #FFFFFF;
    --gray-50: #F8FAFC;
    --gray-100: #F1F5F9;
    --gray-200: #E2E8F0;
    --gray-300: #CBD5E1;
    --gray-400: #94A3B8;
    --gray-500: #64748B;
    --gray-600: #475569;
    --gray-700: #334155;
    --gray-800: #1E293B;

    /* Estados y Badges */
    --success: #10B981;
    --success-bg: rgba(16, 185, 129, 0.12);
    --warning: #F59E0B;
    --warning-bg: rgba(245, 158, 11, 0.12);

    /* Tipografías */
    --font-heading: 'Oswald', sans-serif;
    --font-body: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

    /* Espaciado y Radios */
    --container-max: 1200px;
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;

    /* Sombras */
    --shadow-sm: 0 2px 4px rgba(7, 31, 70, 0.06);
    --shadow-md: 0 6px 16px rgba(7, 31, 70, 0.08);
    --shadow-lg: 0 12px 32px rgba(7, 31, 70, 0.14);

    /* Transiciones */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ==========================================================================
   Reset y Base
   ========================================================================== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    color: var(--gray-800);
    background-color: var(--navy);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    position: relative;
    width: 100%;
}

img, svg {
    display: block;
    max-width: 100%;
    height: auto;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color var(--transition-fast);
}

ul, ol {
    list-style: none;
}

button, input, select, textarea {
    font-family: inherit;
    font-size: inherit;
}

/* ==========================================================================
   Contenedores y Clases Globales
   ========================================================================== */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin-left: auto;
    margin-right: auto;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

.container--narrow {
    max-width: 860px;
}

.section-padding {
    padding-top: clamp(4.5rem, 8vw, 7.5rem);
    padding-bottom: clamp(4.5rem, 8vw, 7.5rem);
}

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

.text-coral {
    color: var(--coral);
}

.text-sky {
    color: var(--sky);
}

/* Kicker / Tag superior de títulos */
.section-kicker {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    color: var(--royal);
    margin-bottom: 0.75rem;
    text-transform: uppercase;
}

.section-kicker--light {
    color: var(--sky);
}

/* Encabezados de sección */
.section-header {
    text-align: center;
    max-width: 760px;
    margin: 0 auto clamp(2.5rem, 5vw, 4rem);
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(1.75rem, 5.5vw, 3.25rem);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    line-height: 1.12;
    color: var(--navy);
    margin-bottom: 1rem;
    overflow-wrap: break-word;
    word-wrap: break-word;
}

.section-title--light {
    color: var(--cream);
}

.section-subtitle {
    font-size: clamp(1rem, 2vw, 1.15rem);
    color: var(--gray-600);
    font-weight: 400;
    line-height: 1.6;
}

.section-subtitle--light {
    color: var(--sky);
}

/* ==========================================================================
   Botones
   ========================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    padding: 0.85rem 1.5rem;
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    border-radius: var(--radius-sm);
    border: 2px solid transparent;
    cursor: pointer;
    transition: transform var(--transition-fast), background-color var(--transition-fast), box-shadow var(--transition-fast), border-color var(--transition-fast);
    min-height: 48px;
    max-width: 100%;
    text-align: center;
    box-sizing: border-box;
    white-space: normal;
    line-height: 1.25;
}

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

.btn:active {
    transform: translateY(0);
}

/* Botón Coral (Acción Principal / Energía) */
.btn--coral {
    background-color: var(--coral);
    color: var(--white);
    box-shadow: 0 4px 14px var(--coral-glow);
}

.btn--coral:hover {
    background-color: var(--coral-hover);
    box-shadow: 0 6px 20px var(--coral-glow);
    color: var(--white);
}

/* Botón WhatsApp */
.btn--whatsapp {
    background-color: #25D366;
    color: var(--white);
    box-shadow: 0 4px 14px rgba(37, 211, 102, 0.4);
}

.btn--whatsapp:hover {
    background-color: #1ebc59;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.55);
    color: var(--white);
}

/* Botón Royal Blue (Secundario / Confianza) */
.btn--royal {
    background-color: var(--royal);
    color: var(--white);
}

.btn--royal:hover {
    background-color: var(--royal-hover);
    color: var(--white);
}

/* Botón Outline para fondos oscuros */
.btn--outline {
    background-color: transparent;
    color: var(--cream);
    border-color: rgba(247, 241, 223, 0.4);
}

.btn--outline:hover {
    background-color: rgba(247, 241, 223, 0.1);
    border-color: var(--cream);
    color: var(--white);
}

.btn--outline-dark {
    background-color: transparent;
    color: var(--navy);
    border-color: var(--navy);
}

.btn--outline-dark:hover {
    background-color: var(--navy);
    color: var(--white);
}

.btn--lg {
    padding: 1rem 2.25rem;
    font-size: 1.15rem;
    min-height: 54px;
}

.btn--full {
    width: 100%;
}

/* ==========================================================================
   Badges y Etiquetas Universitarias / Varsity
   ========================================================================== */
.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.35rem 0.85rem;
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    border-radius: var(--radius-full);
}

.badge--included {
    background-color: var(--success-bg);
    color: var(--success);
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.badge--optional {
    background-color: rgba(175, 200, 242, 0.2);
    color: var(--royal);
    border: 1px solid rgba(20, 87, 197, 0.3);
}

.badge--pending {
    background-color: var(--warning-bg);
    color: var(--warning);
    border: 1px solid rgba(245, 158, 11, 0.3);
}

/* ==========================================================================
   1. Barra de Navegación (.navbar)
   ========================================================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(7, 31, 70, 0.95);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1.5px solid rgba(175, 200, 242, 0.12);
    padding: 0.6rem 0;
    transition: background-color var(--transition-normal), padding var(--transition-normal), box-shadow var(--transition-normal);
}

.navbar--scrolled {
    background-color: rgba(10, 22, 40, 0.98);
    padding: 0.4rem 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.navbar__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}

.navbar__logo {
    display: flex;
    align-items: center;
}

.navbar__logo img {
    height: 68px;
    width: 68px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.35);
    transition: transform var(--transition-fast), box-shadow var(--transition-fast), height var(--transition-normal), width var(--transition-normal);
}

.navbar--scrolled .navbar__logo img {
    height: 54px;
    width: 54px;
}

.navbar__logo:hover img {
    transform: scale(1.06);
    box-shadow: 0 0 20px rgba(175, 200, 242, 0.5);
}

.navbar__menu {
    display: flex;
    align-items: center;
    gap: 1.75rem;
}

.navbar__link {
    color: var(--cream);
    font-size: 0.95rem;
    font-weight: 500;
    padding: 0.5rem 0;
    position: relative;
    transition: color var(--transition-fast);
}

.navbar__link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--coral);
    transition: width var(--transition-normal);
    border-radius: 2px;
}

.navbar__link:hover,
.navbar__link.active {
    color: var(--white);
}

.navbar__link:hover::after,
.navbar__link.active::after {
    width: 100%;
}

.navbar__cta {
    display: inline-flex;
}

/* Botón Hamburguesa Móvil */
.navbar__hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 32px;
    height: 28px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1002;
}

.navbar__hamburger-line {
    width: 100%;
    height: 3px;
    background-color: var(--cream);
    border-radius: 3px;
    transition: transform var(--transition-normal), opacity var(--transition-normal), background-color var(--transition-normal);
}

.navbar__hamburger.active .navbar__hamburger-line:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
    background-color: var(--coral);
}

.navbar__hamburger.active .navbar__hamburger-line:nth-child(2) {
    opacity: 0;
}

.navbar__hamburger.active .navbar__hamburger-line:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
    background-color: var(--coral);
}

@media (max-width: 991px) {
    .navbar__hamburger {
        display: flex;
    }

    .navbar__cta {
        display: none;
    }

    .navbar__menu {
        position: fixed;
        top: 0;
        right: 0;
        transform: translateX(100%);
        width: 80%;
        max-width: 340px;
        height: 100vh;
        background-color: var(--navy-dark);
        border-left: 1px solid rgba(175, 200, 242, 0.15);
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        padding: 3rem 2rem;
        gap: 1.5rem;
        transition: transform var(--transition-slow), visibility var(--transition-slow);
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
        z-index: 1001;
        visibility: hidden;
    }

    .navbar__menu.active {
        transform: translateX(0);
        visibility: visible;
    }

    .navbar__link {
        font-family: var(--font-heading);
        font-size: 1.35rem;
        text-transform: uppercase;
        letter-spacing: 0.05em;
    }
}

/* ==========================================================================
   2. Hero Principal (#inicio)
   ========================================================================== */
.hero {
    position: relative;
    min-height: calc(100vh - 80px);
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--navy-dark);
    background: 
        radial-gradient(ellipse 70% 50% at 85% 20%, rgba(229, 57, 53, 0.22) 0%, transparent 60%),
        radial-gradient(ellipse 60% 60% at 15% 80%, rgba(20, 87, 197, 0.32) 0%, transparent 65%),
        radial-gradient(circle at 50% 30%, #0e3b82 0%, var(--navy) 60%, var(--navy-dark) 100%);
    color: var(--cream);
    padding-top: clamp(125px, 12vw, 155px);
    padding-bottom: 4.5rem;
    overflow: hidden;
    text-align: center;
}

@media (max-width: 768px) {
    .hero {
        min-height: auto;
        padding-top: 130px;
        padding-bottom: 3.5rem;
    }
}

/* Efectos de ambiente y luces de festival */
.hero__stripes {
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(circle at 50% 0%, rgba(175, 200, 242, 0.08) 0%, transparent 50%),
        repeating-linear-gradient(45deg, rgba(175, 200, 242, 0.02) 0, rgba(175, 200, 242, 0.02) 20px, transparent 20px, transparent 40px);
    pointer-events: none;
    z-index: 1;
}

.hero::before {
    content: '';
    position: absolute;
    top: 8%;
    left: 8%;
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, rgba(20, 87, 197, 0.35) 0%, transparent 70%);
    filter: blur(50px);
    border-radius: 50%;
    pointer-events: none;
    z-index: 1;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 12%;
    right: 5%;
    width: 380px;
    height: 380px;
    background: radial-gradient(circle, rgba(229, 57, 53, 0.22) 0%, transparent 70%);
    filter: blur(60px);
    border-radius: 50%;
    pointer-events: none;
    z-index: 1;
}

.hero__content {
    position: relative;
    z-index: 2;
    max-width: 880px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero__title {
    font-family: var(--font-heading);
    font-size: clamp(2.75rem, 7.5vw, 5.5rem);
    font-weight: 700;
    text-transform: uppercase;
    line-height: 1.02;
    letter-spacing: 0.02em;
    color: var(--cream);
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
}

.hero__title-sub {
    display: block;
    font-size: clamp(1.4rem, 3.8vw, 2.4rem);
    font-weight: 700;
    letter-spacing: 0.16em;
    color: var(--sky);
    margin-top: 0.85rem;
    text-transform: uppercase;
    text-shadow: 0 2px 14px rgba(0, 0, 0, 0.4);
}

.hero__subtitle {
    font-size: clamp(1.1rem, 2.3vw, 1.4rem);
    color: var(--sky);
    font-weight: 400;
    max-width: 680px;
    margin-bottom: 2.5rem;
    line-height: 1.5;
}

.hero__buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 3rem;
    width: 100%;
}

/* ==========================================================================
   Banner Promocional de Alto Impacto (Hero Callout Estilo Festival)
   ========================================================================== */
.hero__promo-banner {
    margin-top: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 680px;
    width: 100%;
    transform: rotate(-1.5deg);
    transition: transform var(--transition-normal);
}

.hero__promo-banner:hover {
    transform: rotate(0deg) scale(1.02);
}

.promo-kicker {
    font-family: var(--font-heading);
    font-size: clamp(1.2rem, 2.5vw, 1.6rem);
    font-weight: 700;
    letter-spacing: 0.08em;
    color: var(--white);
    text-transform: uppercase;
    margin-bottom: 0.25rem;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.promo-heading {
    font-family: var(--font-heading);
    font-size: clamp(1.75rem, 4.8vw, 3rem);
    font-weight: 800;
    line-height: 1.05;
    text-transform: uppercase;
    color: #FFE600;
    letter-spacing: 0.02em;
    text-shadow: 0 4px 18px rgba(0, 0, 0, 0.7);
    margin-bottom: 0.35rem;
}

.promo-price-block {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 0.35rem;
}

.promo-desde {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 3.8vw, 2.5rem);
    font-weight: 800;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    text-shadow: 0 3px 12px rgba(0, 0, 0, 0.6);
}

.promo-number {
    font-family: var(--font-heading);
    font-size: clamp(3.2rem, 8.5vw, 5.2rem);
    font-weight: 900;
    color: #FFE600;
    line-height: 1;
    letter-spacing: -0.02em;
    text-shadow: 0 6px 24px rgba(0, 0, 0, 0.7);
}

.promo-star {
    font-size: 0.6em;
    vertical-align: super;
    color: #FFE600;
}

.promo-disclaimer {
    font-size: clamp(0.9rem, 1.8vw, 1.1rem);
    color: var(--white);
    font-weight: 500;
    opacity: 0.95;
    margin-bottom: 1.25rem;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.promo-action {
    display: flex;
    justify-content: center;
}

.btn-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #FF3333 0%, var(--coral) 60%, #C62828 100%);
    color: var(--white);
    font-family: var(--font-heading);
    font-size: clamp(1.15rem, 2.2vw, 1.35rem);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding: 0.65rem 2.5rem;
    border-radius: var(--radius-full);
    border: 1px solid rgba(255, 255, 255, 0.25);
    box-shadow: 0 0 25px rgba(255, 46, 46, 0.7), 0 6px 18px rgba(229, 57, 53, 0.5), inset 0 1px 2px rgba(255, 255, 255, 0.4);
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.35);
    transition: transform var(--transition-fast), background var(--transition-fast), box-shadow var(--transition-fast);
    text-decoration: none;
}

.btn-pill:hover {
    background: linear-gradient(135deg, #FF4D4D 0%, #F44336 60%, var(--coral) 100%);
    transform: scale(1.06);
    box-shadow: 0 0 35px rgba(255, 46, 46, 0.95), 0 8px 24px rgba(229, 57, 53, 0.7);
    color: var(--white);
}

@media (max-width: 680px) {
    .hero__ticket-badge {
        flex-wrap: wrap;
        gap: 0.35rem;
        padding: 0.6rem 1rem;
        text-align: center;
        justify-content: center;
        border-radius: var(--radius-lg);
        width: 100%;
        max-width: 350px;
    }

    .ticket-text {
        font-size: 0.75rem;
        line-height: 1.3;
    }

    .ticket-code {
        border-left: none;
        padding-left: 0;
        font-size: 0.75rem;
    }

    .hero__buttons .btn {
        width: 100%;
        white-space: normal;
        font-size: 1.05rem;
        padding: 0.9rem 1.25rem;
        text-align: center;
    }

    .hero__promo-banner {
        transform: none;
        margin-top: 1.5rem;
    }

    .promo-heading {
        font-size: 1.65rem;
    }

    .promo-number {
        font-size: 3rem;
    }

    .btn-pill {
        width: 100%;
        max-width: 280px;
    }
}

/* ==========================================================================
   3. Propuesta de Valor Editorial (.propuesta)
   ========================================================================== */
.propuesta {
    background-color: var(--gray-100);
    border-top: 1px solid var(--gray-200);
    border-bottom: 1px solid var(--gray-200);
}

.propuesta__editorial-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.editorial-card {
    background-color: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 2.25rem 2rem;
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition-normal), box-shadow var(--transition-normal), border-color var(--transition-normal);
}

.editorial-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--royal);
}

.editorial-card__number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--royal);
    line-height: 1;
    opacity: 0.85;
    flex-shrink: 0;
}

.editorial-card__title {
    font-family: var(--font-heading);
    font-size: 1.45rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}

.editorial-card__text {
    font-size: 0.95rem;
    color: var(--gray-600);
    line-height: 1.55;
}

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

/* ==========================================================================
   4. Destino Salou (.destino)
   ========================================================================== */
.destino {
    background-color: var(--navy);
    color: var(--cream);
    position: relative;
    overflow: hidden;
}

.destino__layout {
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: 4rem;
    align-items: center;
}

/* Postal de viaje temática */
.travel-postcard {
    background: #FAF8F5;
    color: var(--navy);
    border-radius: var(--radius-lg);
    padding: 1.75rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(175, 200, 242, 0.3);
    transform: rotate(-1.5deg);
    transition: transform var(--transition-normal);
}

.travel-postcard:hover {
    transform: rotate(0deg);
}

.travel-postcard__top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 1rem;
    border-bottom: 1px dashed var(--gray-300);
    padding-bottom: 0.6rem;
}

.postcard-tag {
    color: var(--coral);
}

.postcard-coords {
    color: var(--gray-500);
}

.travel-postcard__art {
    background: linear-gradient(135deg, #071F46 0%, #1457C5 60%, #E53935 100%);
    aspect-ratio: 16 / 10;
    border-radius: var(--radius-sm);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    padding: 1.5rem;
    margin-bottom: 1.25rem;
}

.art-sun {
    position: absolute;
    top: 15%;
    right: 15%;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #F7F1DF;
    box-shadow: 0 0 30px #F7F1DF;
}

.art-waves {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 40%;
    background: linear-gradient(to top, rgba(7, 31, 70, 0.8), transparent);
}

.art-caption {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
}

.art-caption strong {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    color: var(--cream);
    line-height: 1;
    letter-spacing: 0.05em;
}

.art-caption span {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    color: var(--sky);
    letter-spacing: 0.1em;
}

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

.postcard-stamp {
    border: 2px dashed var(--royal);
    padding: 0.35rem 0.75rem;
    font-family: var(--font-heading);
    font-size: 0.8rem;
    line-height: 1.1;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--royal);
}

.postcard-note {
    font-size: 0.85rem;
    color: var(--gray-600);
    font-style: italic;
}

/* Puntos de destino */
.destino__text {
    font-size: 1.15rem;
    color: var(--sky);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.destino__points {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.destino__point {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
    background: rgba(175, 200, 242, 0.06);
    padding: 1rem 1.25rem;
    border-radius: var(--radius-md);
    border: 1px solid rgba(175, 200, 242, 0.12);
}

.point-badge {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--coral);
    background: rgba(229, 57, 53, 0.15);
    padding: 0.2rem 0.5rem;
    border-radius: var(--radius-sm);
    line-height: 1;
}

.point-text {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.point-text strong {
    color: var(--cream);
    font-size: 1rem;
}

.point-text span {
    color: var(--gray-300);
    font-size: 0.88rem;
}

@media (max-width: 991px) {
    .destino__layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

/* ==========================================================================
   5. Packs y Precios Comerciales (.packs-section)
   ========================================================================== */
.packs-section {
    background-color: var(--white);
    position: relative;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    align-items: stretch;
    margin-bottom: 3.5rem;
}

.pricing-card {
    background-color: var(--gray-50);
    border: 1.5px solid var(--gray-200);
    border-radius: var(--radius-xl);
    padding: 2.5rem 2rem;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: transform var(--transition-normal), box-shadow var(--transition-normal), border-color var(--transition-normal);
}

.pricing-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 32px rgba(7, 31, 70, 0.08);
    border-color: var(--royal);
}

.pricing-card--featured {
    background: #FFFFFF;
    border: 2.5px solid var(--coral);
    box-shadow: 0 12px 36px rgba(229, 57, 53, 0.14);
    transform: scale(1.02);
}

.pricing-card--featured:hover {
    transform: scale(1.02) translateY(-6px);
    box-shadow: 0 20px 44px rgba(229, 57, 53, 0.22);
}

.featured-ribbon {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--coral);
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    padding: 0.35rem 1.25rem;
    border-radius: var(--radius-full);
    white-space: nowrap;
    box-shadow: 0 4px 12px var(--coral-glow);
}

.pricing-card__header {
    margin-bottom: 1.5rem;
    border-bottom: 1px solid var(--gray-200);
    padding-bottom: 1.5rem;
}

.pricing-badge {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--royal);
    background: rgba(20, 87, 197, 0.08);
    padding: 0.25rem 0.65rem;
    border-radius: var(--radius-sm);
    letter-spacing: 0.06em;
    margin-bottom: 0.65rem;
    text-transform: uppercase;
}

.pricing-badge--coral {
    color: var(--coral);
    background: rgba(229, 57, 53, 0.1);
}

.pricing-card__title {
    font-family: var(--font-heading);
    font-size: 1.85rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 0.75rem;
    text-transform: uppercase;
}

.pricing-card__price {
    display: flex;
    align-items: baseline;
    gap: 0.4rem;
    margin-bottom: 0.65rem;
}

.price-from {
    font-size: 0.9rem;
    color: var(--gray-500);
    font-weight: 500;
}

.price-amount {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--navy);
    line-height: 1;
}

.price-unit {
    font-size: 0.9rem;
    color: var(--gray-500);
}

.pricing-card__desc {
    font-size: 0.92rem;
    color: var(--gray-600);
    line-height: 1.45;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    flex-grow: 1;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    font-size: 0.95rem;
    color: var(--gray-800);
}

.f-check {
    font-weight: bold;
    color: var(--royal);
    font-size: 1.1rem;
    line-height: 1;
}

.f-check--coral {
    color: var(--coral);
}

.f-muted {
    color: var(--gray-400) !important;
    text-decoration: line-through;
}

.pricing-card .btn {
    margin-top: auto;
}

.pricing-card__disclaimer {
    font-size: 0.75rem;
    color: var(--gray-500);
    line-height: 1.4;
    margin-top: 0.85rem;
    text-align: center;
    font-style: italic;
}

.pricing-footer-banner {
    background: var(--navy);
    color: var(--cream);
    border-radius: var(--radius-xl);
    padding: 2rem 2.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    box-shadow: var(--shadow-lg);
}

.banner-text {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.banner-text strong {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    color: var(--cream);
    text-transform: uppercase;
}

.banner-text span {
    color: var(--sky);
    font-size: 0.95rem;
}

@media (max-width: 991px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .pricing-card--featured {
        transform: none;
    }

    .pricing-card--featured:hover {
        transform: translateY(-6px);
    }

    .pricing-footer-banner {
        flex-direction: column;
        text-align: center;
        padding: 2rem;
    }
}



/* ==========================================================================
   7. Para Grupos (.para-grupos)
   ========================================================================== */
.para-grupos {
    background-color: var(--gray-100);
}

.para-grupos__layout {
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: 4rem;
    align-items: flex-start;
    width: 100%;
}

.para-grupos__layout > * {
    min-width: 0;
    width: 100%;
}

.para-grupos__lead {
    font-size: 1.1rem;
    color: var(--gray-600);
    margin-bottom: 2rem;
    line-height: 1.6;
    overflow-wrap: break-word;
}

.benefits-stack {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-bottom: 2.25rem;
    width: 100%;
}

.benefit-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    width: 100%;
}

.benefit-check {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(229, 57, 53, 0.1);
    color: var(--coral);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
    margin-top: 0.1rem;
}

.benefit-desc {
    display: flex;
    flex-direction: column;
    flex: 1;
    min-width: 0;
    overflow-wrap: break-word;
    word-wrap: break-word;
}

.benefit-desc strong {
    color: var(--navy);
    font-size: 1.05rem;
    margin-bottom: 0.2rem;
    line-height: 1.3;
}

.benefit-desc span {
    color: var(--gray-600);
    font-size: 0.925rem;
    line-height: 1.45;
}

/* Tarjeta Formulario */
.form-card {
    background-color: var(--white);
    padding: clamp(1.25rem, 4vw, 2.75rem);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--gray-200);
    position: relative;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    min-width: 0;
}

.form-card__header-tag {
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--royal);
    letter-spacing: 0.1em;
    margin-bottom: 0.5rem;
}

.form-card__title {
    font-family: var(--font-heading);
    font-size: clamp(1.4rem, 5vw, 1.85rem);
    color: var(--navy);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    line-height: 1.15;
    overflow-wrap: break-word;
    word-wrap: break-word;
}

.form-card__subtitle {
    font-size: 0.925rem;
    color: var(--gray-600);
    margin-bottom: 1.5rem;
    line-height: 1.45;
    overflow-wrap: break-word;
}

.form-group {
    margin-bottom: 1.15rem;
    width: 100%;
}

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

.form-label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 0.35rem;
}

.form-input {
    width: 100%;
    padding: 0.75rem 1rem;
    font-size: 0.925rem;
    border: 1.5px solid var(--gray-200);
    border-radius: var(--radius-sm);
    background-color: var(--gray-50);
    color: var(--gray-800);
    transition: border-color var(--transition-fast), background-color var(--transition-fast), box-shadow var(--transition-fast);
}

.form-input:focus {
    outline: none;
    border-color: var(--royal);
    background-color: var(--white);
    box-shadow: 0 0 0 3px rgba(20, 87, 197, 0.12);
}

.form-input.is-invalid {
    border-color: var(--coral);
    background-color: #fff5f5;
}

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

.form-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%23071F46' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}

.form-group--checkbox {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    margin-top: 1rem;
    margin-bottom: 1.5rem;
}

.form-group--checkbox input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-top: 0.2rem;
    accent-color: var(--coral);
    flex-shrink: 0;
    cursor: pointer;
}

.form-label--checkbox {
    font-size: 0.825rem;
    color: var(--gray-600);
    font-weight: 400;
    line-height: 1.4;
    cursor: pointer;
}

.form-label--checkbox a {
    color: var(--royal);
    text-decoration: underline;
}

.form-error {
    display: none;
    font-size: 0.775rem;
    color: var(--coral);
    margin-top: 0.35rem;
    font-weight: 500;
}

[hidden] {
    display: none !important;
}

.form-success {
    display: none;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.75rem;
    padding: 2.5rem 1.5rem;
    background: var(--success-bg);
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: var(--radius-lg);
    color: var(--navy);
}

.form-success svg {
    color: var(--success);
}

.form-success h3, .form-success h4 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--navy);
    text-transform: uppercase;
}

.form-success p {
    font-size: 0.95rem;
    color: var(--gray-700);
}

@media (max-width: 991px) {
    .para-grupos__layout {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
}

@media (max-width: 600px) {
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .form-card {
        padding: 1.5rem 1.15rem;
        border-radius: var(--radius-lg);
    }
}

/* ==========================================================================
   8. Familias (.familias)
   ========================================================================== */
.familias {
    background-color: var(--cream);
}

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

.trust-card {
    background-color: var(--white);
    padding: 2rem 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(7, 31, 70, 0.08);
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
}

.trust-card__num {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--royal);
    margin-bottom: 0.75rem;
}

.trust-card__title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    color: var(--navy);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}

.trust-card__text {
    font-size: 0.9rem;
    color: var(--gray-600);
    line-height: 1.5;
}

.familias__expandable {
    max-width: 700px;
    margin: 2rem auto 0;
    transition: max-height var(--transition-normal), opacity var(--transition-normal);
}

.familias__expandable-inner {
    background-color: var(--white);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-200);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.familias__expandable-inner p {
    font-size: 0.95rem;
    color: var(--gray-700);
    line-height: 1.6;
}

.familias__expandable-inner a {
    color: var(--royal);
    font-weight: 600;
}

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

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

/* ==========================================================================
   9. Proceso de Reserva (.proceso)
   ========================================================================== */
.proceso {
    background-color: var(--white);
}

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

.timeline__step {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 1.5rem;
    background: var(--gray-50);
    border-radius: var(--radius-md);
    border: 1px solid var(--gray-200);
}

.timeline__number {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-sm);
    background-color: var(--navy);
    color: var(--cream);
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
}

.timeline__title {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--navy);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}

.timeline__text {
    font-size: 0.9rem;
    color: var(--gray-600);
    line-height: 1.5;
}

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

/* ==========================================================================
   10. Comunidad (.comunidad)
   ========================================================================== */
.comunidad {
    background: radial-gradient(circle at 50% 50%, #0d2d60 0%, var(--navy) 60%, var(--navy-dark) 100%);
    color: var(--cream);
    text-align: center;
}

.comunidad__box {
    max-width: 720px;
    margin: 0 auto;
    padding: 3.5rem 2.5rem;
    border: 2px solid rgba(175, 200, 242, 0.25);
    border-radius: var(--radius-xl);
    background: rgba(7, 31, 70, 0.6);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.comunidad__badge {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--coral);
    letter-spacing: 0.12em;
    margin-bottom: 1rem;
}

.comunidad__title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 2.75rem);
    color: var(--cream);
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.comunidad__text {
    font-size: 1.1rem;
    color: var(--sky);
    margin-bottom: 2rem;
    line-height: 1.6;
}

/* ==========================================================================
   11. FAQ (.faq)
   ========================================================================== */
.faq {
    background-color: var(--gray-50);
}

.faq__accordion {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.faq-item {
    background-color: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.faq-item.active {
    border-color: var(--royal);
    box-shadow: var(--shadow-sm);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 1.5rem;
    background: transparent;
    border: none;
    cursor: pointer;
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--navy);
    text-align: left;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    gap: 1rem;
    transition: color var(--transition-fast);
}

.faq-question:hover {
    color: var(--royal);
}

.faq-item.active .faq-question {
    color: var(--royal);
}

.faq-icon {
    font-size: 1.5rem;
    line-height: 1;
    color: var(--coral);
    font-weight: 700;
    flex-shrink: 0;
    width: 24px;
    text-align: center;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-normal);
}

.faq-answer p {
    padding: 0 1.5rem 1.25rem;
    font-size: 0.95rem;
    color: var(--gray-600);
    line-height: 1.6;
}

.faq-answer a {
    color: var(--royal);
    font-weight: 600;
}

/* ==========================================================================
   12. Contacto (.contacto)
   ========================================================================== */
.contacto {
    background: radial-gradient(circle at 50% 10%, #0c3370 0%, var(--navy) 50%, var(--navy-dark) 100%);
    color: var(--cream);
}

.contacto__form-wrapper {
    max-width: 720px;
    margin: 0 auto;
    background-color: var(--white);
    padding: clamp(2rem, 5vw, 3.5rem);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
}

.contact-form .form-label {
    color: var(--navy);
}

.contact-form .form-label--checkbox {
    color: var(--gray-600);
}

/* ==========================================================================
   13. WhatsApp Flotante (.whatsapp-float)
   ========================================================================== */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: transform var(--transition-fast), box-shadow var(--transition-fast);
    animation: whatsappPulse 2.5s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.6);
}

.whatsapp-float svg {
    width: 32px;
    height: 32px;
    fill: currentColor;
}

.whatsapp-float__tooltip {
    position: absolute;
    right: 72px;
    background-color: var(--navy-dark);
    color: var(--cream);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    font-weight: 500;
    white-space: nowrap;
    box-shadow: var(--shadow-md);
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition-fast);
    border: 1px solid rgba(175, 200, 242, 0.15);
}

.whatsapp-float:hover .whatsapp-float__tooltip {
    opacity: 1;
}

@keyframes whatsappPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
    }
    70% {
        box-shadow: 0 0 0 16px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

@media (max-width: 767px) {
    .whatsapp-float {
        bottom: 18px;
        right: 18px;
        width: 52px;
        height: 52px;
    }

    .whatsapp-float svg {
        width: 28px;
        height: 28px;
    }

    .whatsapp-float__tooltip {
        display: none;
    }
}

/* ==========================================================================
   14. Footer (.footer)
   ========================================================================== */
.footer {
    background-color: #051329;
    color: var(--cream);
    padding-top: 4.5rem;
    padding-bottom: 2.5rem;
    border-top: 1px solid rgba(175, 200, 242, 0.1);
}

.footer__top {
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: 3.5rem;
    margin-bottom: 3.5rem;
}

.footer__brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer__logo {
    height: 80px;
    width: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1.25rem;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.footer__tagline {
    font-size: 1.05rem;
    color: var(--sky);
    font-weight: 500;
    max-width: 280px;
}

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

.footer__heading {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    color: var(--white);
    margin-bottom: 1.25rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.footer__links ul {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.footer__links a {
    color: var(--gray-400);
    font-size: 0.925rem;
}

.footer__links a:hover {
    color: var(--sky);
}

.footer__social {
    display: flex;
    gap: 1rem;
    margin-bottom: 2.5rem;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid rgba(175, 200, 242, 0.1);
}

.footer__social-link {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background-color: rgba(175, 200, 242, 0.08);
    color: var(--sky);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color var(--transition-fast), color var(--transition-fast), transform var(--transition-fast);
}

.footer__social-link:hover {
    background-color: var(--coral);
    color: var(--white);
    transform: translateY(-3px);
}

.footer__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
    font-size: 0.8rem;
    color: var(--gray-500);
}

.footer__legal p {
    margin-bottom: 0.25rem;
}

.footer__legal a {
    color: var(--sky);
}

@media (max-width: 860px) {
    .footer__top {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

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

    .footer__bottom {
        flex-direction: column;
        align-items: flex-start;
    }
}

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

/* ==========================================================================
   Animaciones de Scroll (Fade In Up)
   ========================================================================== */
.fade-in-up {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}
