/* ========================================
   Full Pack Australia - YoMeAnimo! Redesign
   ======================================== */

/* --- Variables --- */
:root {
    --magenta: #DC3D54;
    --magenta-light: rgba(220, 61, 84, 0.08);
    --magenta-glow: rgba(220, 61, 84, 0.15);
    --teal: #2BC4C4;
    --teal-light: rgba(43, 196, 196, 0.08);
    --violet: #653B65;
    --violet-dark: #580044;
    --violet-mid: #683464;
    --white: #FFFFFF;
    --gray-50: #FAFAFA;
    --gray-100: #F5F5F7;
    --gray-200: #E8E8ED;
    --gray-400: #9B9BA7;
    --gray-600: #6B6B76;
    --gray-800: #2D2D3A;
    --gray-900: #1A1A2E;

    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;

    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 20px;
    --radius-full: 100px;
}

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

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
}

body {
    font-family: var(--font-body);
    color: var(--gray-800);
    background: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.15;
    color: var(--gray-900);
}

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

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

ul {
    list-style: none;
}

.container {
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 24px;
}

/* --- Utilities --- */
.gradient-text {
    background: linear-gradient(135deg, var(--magenta) 0%, var(--violet-mid) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-label {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--magenta);
    margin-bottom: 12px;
}

.section-label.light {
    color: rgba(255, 255, 255, 0.6);
}

.section-title {
    font-size: clamp(2rem, 4vw, 2.75rem);
    margin-bottom: 16px;
}

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

.section-desc {
    font-size: 1.1rem;
    color: var(--gray-600);
    max-width: 540px;
    margin-bottom: 48px;
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.95rem;
    border: none;
    cursor: pointer;
    transition: all 0.25s ease;
    border-radius: var(--radius-full);
    text-decoration: none;
}

.btn-primary {
    background: var(--magenta);
    color: var(--white);
    padding: 14px 28px;
    box-shadow: 0 2px 12px rgba(220, 61, 84, 0.25);
}

.btn-primary:hover {
    background: #c4324a;
    box-shadow: 0 4px 20px rgba(220, 61, 84, 0.35);
    transform: translateY(-1px);
}

.btn-lg {
    padding: 16px 32px;
    font-size: 1.05rem;
}

.btn-ghost {
    background: transparent;
    color: var(--gray-800);
    padding: 14px 28px;
    border: 1.5px solid var(--gray-200);
}

.btn-ghost:hover {
    border-color: var(--gray-400);
    background: var(--gray-50);
}

.btn-full {
    width: 100%;
    justify-content: center;
}

/* --- Country Bar --- */
.country-bar {
    display: none;
}

.country-bar-inner {
    display: flex;
    justify-content: flex-end;
}

.country-flags {
    display: flex;
    gap: 4px;
}

.country-flag {
    font-size: 0.68rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.5);
    padding: 3px 8px;
    border-radius: 6px;
    transition: all 0.2s;
    font-family: var(--font-body);
    letter-spacing: 0.3px;
}

.country-flag:hover,
.country-flag.active {
    color: var(--white);
    background: rgba(255, 255, 255, 0.1);
}

/* --- Main Navbar --- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    padding: 0;
    height: 62px;
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 62px;
    position: relative;
}

.nav-logo img {
    height: 36px;
    width: auto;
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1002;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--gray-800);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Desktop menu visible, mobile menu hidden by default */
.nav-menu-mobile {
    display: none;
}

/* Nav Links */
.nav-links {
    display: flex;
    align-items: center;
    gap: 0;
    list-style: none;
}

.nav-links > li > a {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 20px 14px;
    font-size: 0.88rem;
    font-weight: 500;
    color: #43173d;
    transition: color 0.2s;
    white-space: nowrap;
    font-family: var(--font-body);
}

.nav-links > li > a:hover {
    color: #00dbd0;
}

.nav-links > li > a svg {
    opacity: 0.5;
    transition: transform 0.3s;
}

/* Dropdown */
.has-dropdown {
    position: relative;
}

.dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 260px;
    background: var(--white);
    border-radius: 0 0 var(--radius-md) var(--radius-md);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
    padding: 8px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-4px);
    transition: all 0.25s ease;
    z-index: 100;
    list-style: none;
    border-top: 2px solid var(--magenta);
}

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

.has-dropdown:hover > a svg {
    transform: rotate(180deg);
}

.dropdown li a {
    display: block;
    padding: 10px 20px;
    font-size: 0.85rem;
    color: var(--gray-800);
    transition: all 0.15s;
    font-family: var(--font-body);
}

.dropdown li a:hover {
    background: var(--gray-50);
    color: var(--magenta);
    padding-left: 24px;
}

.dropdown li a.current-page {
    color: var(--magenta);
    font-weight: 600;
}

.dropdown-divider {
    height: 1px;
    background: var(--gray-200);
    margin: 6px 16px;
}

.dropdown-label {
    padding: 8px 20px 4px;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--gray-400);
    font-family: var(--font-heading);
}

/* Nav CTA Button (Seguro de Viaje) */
.nav-cta-item {
    margin-left: 8px;
}

.nav-cta-btn {
    display: inline-block !important;
    background: var(--magenta) !important;
    color: var(--white) !important;
    padding: 10px 20px !important;
    border-radius: var(--radius-full) !important;
    font-weight: 600 !important;
    font-size: 0.85rem !important;
    transition: all 0.2s !important;
}

.nav-cta-btn:hover {
    background: #c4324a !important;
    color: var(--white) !important;
    transform: translateY(-1px);
}

/* Old logo class - keep for footer */
.logo {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.4rem;
    color: var(--gray-900);
    letter-spacing: -0.5px;
}

.logo span {
    color: var(--magenta);
}

/* ========================================
   HERO
   ======================================== */
.hero {
    padding: 140px 0 60px;
    position: relative;
    overflow: hidden;
    background: var(--gray-50);
}

.hero-split {
    display: flex;
    align-items: center;
    gap: 48px;
}

.hero-text {
    flex: 1;
    min-width: 0;
}

.hero-tagline {
    display: inline-block;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.15rem;
    color: var(--teal);
    margin-bottom: 12px;
    letter-spacing: 0.5px;
}

.hero h1 {
    font-size: clamp(2.8rem, 5.5vw, 4.2rem);
    font-weight: 900;
    letter-spacing: -1.5px;
    line-height: 0.95;
    margin-bottom: 24px;
    color: var(--gray-900);
    text-transform: uppercase;
}

/* Exclusivity badge */
.exclusivity-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(220, 61, 84, 0.07);
    border: 1.5px solid rgba(220, 61, 84, 0.35);
    border-radius: var(--radius-full);
    padding: 8px 18px;
    margin-bottom: 20px;
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--magenta);
    letter-spacing: 0.2px;
}

.exclusivity-flag {
    font-size: 1.1rem;
    line-height: 1;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: 32px;
    max-width: 460px;
}

@media (max-width: 767px) {
    .hero-subtitle {
        font-size: 0.95rem;
    }
}

.hero-actions {
    display: flex;
    gap: 12px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

/* Guarantee badge */
.hero-guarantee {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 16px;
    margin-bottom: 4px;
    padding: 8px 16px;
    background: linear-gradient(135deg, rgba(43,196,196,0.08), rgba(43,196,196,0.04));
    border: 1px solid rgba(43,196,196,0.15);
    border-radius: 100px;
    font-size: 0.82rem;
    font-weight: 600;
    color: #1a8a8a;
}
.hero-guarantee .g-icon {
    width: 20px;
    height: 20px;
    background: #2BC4C4;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.hero-guarantee .g-icon svg { width: 12px; height: 12px; }

/* Trust bar */
.hero-trust {
    display: flex;
    align-items: center;
    gap: 16px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    color: var(--gray-600);
    font-weight: 500;
}

.trust-divider {
    width: 1px;
    height: 20px;
    background: var(--gray-200);
}

/* Hero visual / image (desktop) */
.hero-visual {
    flex: 1;
    min-width: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-img {
    width: 100%;
    max-width: 520px;
    height: auto;
    display: block;
    filter: drop-shadow(8px 8px 24px rgba(0, 0, 0, 0.08));
}

/* Hero Bridge (mobile only - image between hero and features) */
.hero-bridge {
    display: none;
    background: var(--white);
    padding: 0;
    position: relative;
    z-index: 1;
}

.hero-bridge-img {
    max-width: 391px;
    margin: 0 auto;
    text-align: center;
}

.hero-bridge-img img {
    width: 100%;
    height: auto;
    display: block;
}

.hero-bg-gradient {
    position: absolute;
    top: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--magenta-glow) 0%, transparent 70%);
    pointer-events: none;
}

/* ========================================
   BENTO GRID / INCLUDES
   ======================================== */
.includes {
    padding: 100px 0;
}

.bento {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: auto;
    gap: 16px;
}

.bento-card {
    border-radius: var(--radius-xl);
    padding: 32px;
    transition: all 0.35s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.bento-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.08);
}

.bento-card h3 {
    font-size: 1.3rem;
    margin-bottom: 8px;
    font-weight: 700;
}

.bento-card p {
    font-size: 0.92rem;
    color: var(--gray-600);
    line-height: 1.6;
    margin-bottom: 12px;
}

/* Icon boxes */
.bento-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.bi-magenta { background: var(--magenta); color: var(--white); }
.bi-teal { background: var(--teal); color: var(--white); }
.bi-violet { background: var(--violet); color: var(--white); }
.bi-dark { background: var(--violet-dark); color: var(--white); }

/* Tag */
.bento-tag {
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--magenta);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: auto;
    padding-top: 8px;
}

/* --- Card Variants --- */

/* VISA - Wide, pink gradient */
.bento-visa {
    grid-column: span 2;
    background: linear-gradient(145deg, #FFF0F3 0%, #FFF8FA 50%, #FDF0FF 100%);
    border: 1px solid rgba(220, 61, 84, 0.1);
}

.bento-visa h3 { color: var(--violet-dark); }

/* Checklist inside visa */
.bento-checklist {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin: 16px 0 4px;
}

.check-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--gray-800);
}

.check-dot {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.dot-green {
    background: var(--teal);
    box-shadow: 0 2px 8px rgba(43, 196, 196, 0.3);
}

.dot-green::after {
    content: '';
    width: 8px;
    height: 5px;
    border-left: 2px solid white;
    border-bottom: 2px solid white;
    transform: rotate(-45deg) translateY(-1px);
}

/* SEGURO - Tall card, teal tint */
.bento-seguro {
    grid-column: span 1;
    background: linear-gradient(170deg, #EEFBFB 0%, #F4FFFE 100%);
    border: 1px solid rgba(43, 196, 196, 0.12);
}

/* Pills */
.bento-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin: 8px 0 16px;
}

.pill {
    background: rgba(43, 196, 196, 0.1);
    color: #1a9e9e;
    font-size: 0.78rem;
    font-weight: 600;
    padding: 5px 12px;
    border-radius: var(--radius-full);
    border: 1px solid rgba(43, 196, 196, 0.15);
}

/* COMUNIDAD - Chat visual */
.bento-comunidad {
    grid-row: span 2;
    background: linear-gradient(160deg, #F0F4FF 0%, #EEF8FF 100%);
    border: 1px solid rgba(100, 140, 220, 0.1);
    padding-top: 16px;
}

.bento-comunidad-img {
    width: 100%;
    margin-bottom: 16px;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bento-comunidad-img img {
    width: 100%;
    max-height: 330px;
    object-fit: contain;
    display: block;
}

.bento-chat-visual {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
}

.chat-msg {
    display: flex;
    align-items: flex-end;
    gap: 8px;
    max-width: 85%;
}

.chat-msg.chat-right {
    align-self: flex-end;
}

.chat-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
    color: white;
    flex-shrink: 0;
}

.chat-left .chat-avatar { background: var(--magenta); }
.chat-right .chat-avatar { background: var(--teal); }
.chat-left:nth-child(3) .chat-avatar { background: var(--violet); }

.chat-text {
    background: var(--white);
    padding: 10px 16px;
    border-radius: 16px;
    font-size: 0.88rem;
    color: var(--gray-800);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    font-weight: 500;
}

.chat-left .chat-text { border-bottom-left-radius: 4px; }
.chat-right .chat-text {
    background: var(--teal);
    color: white;
    border-bottom-right-radius: 4px;
}

/* WELCOME PACK */
.bento-welcome {
    background: linear-gradient(150deg, #FDF4FF 0%, #F9F0FF 100%);
    border: 1px solid rgba(104, 52, 100, 0.08);
}

/* TRABAJO - Job listings */
.bento-trabajo {
    grid-column: span 2;
    background: linear-gradient(155deg, #F4FFF4 0%, #F8FFF8 100%);
    border: 1px solid rgba(72, 187, 120, 0.1);
}

.bento-jobs {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 8px;
}

.job-mini {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--white);
    padding: 12px 16px;
    border-radius: 12px;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--gray-800);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
    transition: transform 0.2s;
}

.job-mini:hover { transform: translateX(4px); }

.job-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #48BB78;
    flex-shrink: 0;
}

.job-new {
    font-size: 0.65rem;
    font-weight: 700;
    background: var(--magenta);
    color: white;
    padding: 2px 7px;
    border-radius: var(--radius-full);
    margin-left: auto;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* APP - Small card */
.bento-app {
    background: var(--gray-900);
    border: none;
}

.bento-app h3 { color: var(--white); }
.bento-app p { color: rgba(255, 255, 255, 0.55); }
.bento-app .bento-tag { color: var(--teal); }
.bento-app .bento-icon { background: var(--magenta); }

/* ========================================
   PROCESS / TIMELINE
   ======================================== */
.process {
    padding: 100px 0;
    background: var(--gray-50);
}

/* --- Phases (nuevo sistema de fases) --- */
.phases {
    max-width: 680px;
    margin: 56px auto 0;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.phase-block {
    position: relative;
    padding-left: 28px;
    padding-bottom: 40px;
}

.phase-block::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, var(--magenta) 0%, var(--violet-mid) 100%);
    border-radius: 2px;
}

.phase-block:last-child {
    padding-bottom: 0;
}

.phase-block:last-child::before {
    display: none;
}

.phase-header {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 20px;
}

.phase-badge {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--magenta);
    background: rgba(220, 61, 84, 0.08);
    border: 1px solid rgba(220, 61, 84, 0.15);
    padding: 4px 12px;
    border-radius: var(--radius-full);
    width: fit-content;
}

.phase-title {
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--gray-900);
    display: flex;
    align-items: baseline;
    gap: 10px;
    line-height: 1.25;
    margin: 0;
}

.phase-num {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--magenta);
    letter-spacing: -0.5px;
    margin-bottom: 6px;
}

.phase-num--final {
    background: linear-gradient(135deg, var(--magenta) 0%, var(--violet-mid) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.phase-steps {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.phase-step {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    padding: 16px 20px;
    transition: all 0.25s ease;
}

.phase-step:hover {
    border-color: rgba(220, 61, 84, 0.25);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
    transform: translateX(4px);
}

.step-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--magenta), var(--violet-mid));
    flex-shrink: 0;
    margin-top: 5px;
}

.step-text {
    flex: 1;
}

.step-text strong {
    font-size: 0.97rem;
    font-weight: 600;
    color: var(--gray-900);
    display: block;
    line-height: 1.4;
}

.step-text p {
    font-size: 0.88rem;
    color: var(--gray-500);
    margin: 4px 0 0;
    line-height: 1.5;
}

/* Fase 4 - final especial */
.phase-block--final {
    padding-bottom: 0;
}

.phase-title--final {
    font-size: 1.55rem;
}

.gradient-final-text {
    background: linear-gradient(135deg, var(--magenta) 0%, var(--violet-mid) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ========================================
   PRICING
   ======================================== */
.pricing {
    padding: 100px 0;
    background: linear-gradient(160deg, var(--violet-dark) 0%, var(--gray-900) 100%);
    position: relative;
}

.pricing-card {
    max-width: 520px;
    margin: 40px auto 0;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-xl);
    padding: 40px;
    backdrop-filter: blur(20px);
    position: relative;
}

.pricing-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--teal);
    color: var(--white);
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 6px 20px;
    border-radius: var(--radius-full);
}

.pricing-top {
    text-align: center;
    padding-bottom: 28px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    margin-bottom: 28px;
}

.pricing-top h3 {
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 6px;
}

.pricing-includes {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

.pricing-breakdown {
    margin-bottom: 28px;
}

.breakdown-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}

.breakdown-val {
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
}

.pricing-total {
    text-align: center;
    padding: 24px 0 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.old-price {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 8px;
}

.strikethrough {
    text-decoration: line-through;
}

.new-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 4px;
    margin-bottom: 8px;
}

.new-price .currency {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
}

.new-price .amount {
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
    letter-spacing: -2px;
}

.savings {
    color: var(--teal);
    font-size: 0.88rem;
    font-weight: 600;
}

.pricing-card .btn-primary {
    margin-top: 8px;
}

.pricing-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.45);
}

.not-included {
    max-width: 520px;
    margin: 24px auto 0;
    text-align: center;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.35);
}

.not-included strong {
    color: rgba(255, 255, 255, 0.5);
}

/* ========================================
   FAQ
   ======================================== */
.faq {
    padding: 100px 0;
}

.faq-list {
    max-width: 680px;
    margin: 40px auto 0;
}

.faq-item {
    border-bottom: 1px solid var(--gray-200);
}

.faq-item:first-child {
    border-top: 1px solid var(--gray-200);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
    cursor: pointer;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    color: var(--gray-800);
    list-style: none;
    gap: 16px;
}

.faq-question::-webkit-details-marker {
    display: none;
}

.faq-question::marker {
    content: '';
}

.faq-icon {
    flex-shrink: 0;
    color: var(--gray-400);
    transition: transform 0.3s ease;
    display: flex;
}

details[open] .faq-icon {
    transform: rotate(180deg);
}

details[open] .faq-question {
    color: var(--magenta);
}

.faq-answer {
    padding: 0 0 20px;
    font-size: 0.95rem;
    color: var(--gray-600);
    line-height: 1.7;
    animation: fadeDown 0.3s ease;
}

.faq-answer ul {
    padding-left: 0;
}

.faq-answer li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 6px;
}

.faq-answer li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--teal);
}

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

/* ========================================
   FINAL CTA
   ======================================== */
.final-cta {
    padding: 80px 0;
    background: var(--gray-50);
    text-align: center;
}

.final-cta h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    margin-bottom: 12px;
}

.final-cta p {
    color: var(--gray-600);
    font-size: 1.1rem;
    margin-bottom: 32px;
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
    padding: 60px 0 0;
    background: var(--gray-900);
    color: rgba(255, 255, 255, 0.5);
}

.footer-inner {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    padding-bottom: 40px;
}

.footer-logo {
    color: var(--white);
    margin-bottom: 12px;
    display: inline-block;
}

.footer-left p {
    font-size: 0.9rem;
    line-height: 1.6;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.footer-col h4 {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 16px;
}

.footer-col a {
    display: block;
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 10px;
    transition: color 0.2s;
}

.footer-col a:hover {
    color: var(--white);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding: 24px 0;
    font-size: 0.82rem;
    text-align: center;
}

/* ========================================
   RESPONSIVE
   ======================================== */
/* --- Bento tablet --- */
@media (max-width: 900px) and (min-width: 601px) {
    .bento {
        grid-template-columns: repeat(2, 1fr);
    }

    .bento-seguro {
        grid-row: span 1;
    }

    .bento-comunidad {
        grid-column: span 2;
    }

    .bento-trabajo {
        grid-column: span 2;
    }
}

/* --- Navbar Mobile --- */
@media (max-width: 991px) {
    .country-bar {
        display: none;
    }

    .navbar {
        top: 0;
    }

    .hamburger {
        display: flex;
    }

    .nav-menu-desktop {
        display: none !important;
    }

    .nav-menu-mobile {
        display: block !important;
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        width: 100vw !important;
        height: 100vh !important;
        background: #FFFFFF !important;
        padding: 80px 24px 40px !important;
        overflow-y: auto !important;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease, visibility 0.3s ease;
        z-index: 999999 !important;
    }

    .nav-menu-mobile.open {
        opacity: 1 !important;
        visibility: visible !important;
    }

    .mobile-close {
        position: absolute;
        top: 20px;
        right: 24px;
        background: none;
        border: none;
        cursor: pointer;
        color: var(--gray-800);
        padding: 8px;
        border-radius: 50%;
        transition: background 0.2s;
    }

    .mobile-close:hover {
        background: var(--gray-100);
    }

    .navbar {
        z-index: 100000;
        background: #FFFFFF;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
    }

    .nav-menu-mobile .nav-links {
        flex-direction: column;
        align-items: stretch;
        gap: 0;
    }

    .nav-menu-mobile .nav-links > li > a {
        padding: 16px 0;
        font-size: 1.25rem;
        font-weight: 600;
        line-height: 1.25;
        border-bottom: 1px solid var(--gray-100);
        width: 100%;
    }

    .dropdown {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border-radius: 0;
        border-top: none;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.35s ease;
        padding: 0;
    }

    .has-dropdown.dropdown-open .dropdown {
        max-height: 600px;
        padding: 4px 0 8px;
    }

    .has-dropdown.dropdown-open > a svg {
        transform: rotate(180deg);
    }

    .dropdown li a {
        padding: 10px 16px;
        font-size: 0.9rem;
    }

    .dropdown-label {
        padding: 10px 16px 4px;
    }

    .dropdown-divider {
        margin: 4px 16px;
    }

    .nav-cta-item {
        display: none !important;
    }

    /* ── Mobile CTAs (cards grandes) ── */
    .nav-menu-mobile .mobile-ctas {
        padding: 28px 0 14px;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 14px;
    }
    .nav-menu-mobile .cta-card {
        display: block;
        width: 90%;
        max-width: 420px;
        border-radius: 20px;
        padding: 24px 28px 22px;
        text-align: left;
        color: #fff !important;
        text-decoration: none !important;
        position: relative;
        overflow: hidden;
        box-shadow: 0 14px 30px rgba(67, 23, 61, 0.22);
        transition: transform 0.15s ease, box-shadow 0.2s ease;
        min-height: 110px;
        font-family: 'Plus Jakarta Sans', sans-serif;
    }
    .nav-menu-mobile .cta-card:hover,
    .nav-menu-mobile .cta-card:focus,
    .nav-menu-mobile .cta-card:active {
        transform: translateY(-2px);
        box-shadow: 0 18px 38px rgba(67, 23, 61, 0.28);
        color: #fff !important;
        text-decoration: none !important;
    }
    .nav-menu-mobile .cta-card-violet {
        background: linear-gradient(135deg, #5d1e5a 0%, #2e0a35 100%);
    }
    .nav-menu-mobile .cta-card-red {
        background: linear-gradient(135deg, #e91e63 0%, #8a0030 100%);
    }
    .nav-menu-mobile .cta-card-label {
        display: block;
        font-size: 10px;
        letter-spacing: 2px;
        text-transform: uppercase;
        opacity: 0.82;
        font-weight: 600;
        margin-bottom: 8px;
        color: #fff !important;
    }
    .nav-menu-mobile .cta-card-title {
        display: block;
        font-family: 'Outfit', sans-serif;
        font-size: 22px;
        font-weight: 800;
        line-height: 1.1;
        letter-spacing: -0.4px;
        padding-right: 40px;
        color: #fff !important;
    }
    .nav-menu-mobile .cta-card-arrow {
        position: absolute;
        right: 24px;
        top: 50%;
        transform: translateY(-50%);
        font-size: 26px;
        font-weight: 400;
        color: #fff !important;
    }

    /* ── Mobile redes sociales ── */
    .nav-menu-mobile .mobile-social {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 20px;
        padding: 22px 24px 20px;
        margin: 14px 24px 0;
        border-top: 1px solid #f2eff2;
    }
    .nav-menu-mobile .mobile-social a {
        color: #43173D;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        text-decoration: none;
        transition: transform 0.15s;
    }
    .nav-menu-mobile .mobile-social a svg {
        width: 28px;
        height: 28px;
        fill: currentColor;
        display: block;
    }
    .nav-menu-mobile .mobile-social a:hover svg {
        transform: translateY(-2px);
    }
}

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

    .bento-visa,
    .bento-comunidad,
    .bento-seguro,
    .bento-trabajo {
        grid-column: span 1;
        grid-row: span 1;
    }

    .footer-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-links {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .hero-split {
        text-align: center;
    }

    .hero-visual {
        display: none;
    }

    .hero-bridge {
        display: block;
    }

    .hero-subtitle {
        max-width: 100%;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-trust {
        justify-content: center;
        flex-wrap: wrap;
    }
}

@media (max-width: 600px) {
    .hero {
        padding: 100px 0 60px;
    }

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

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-actions .btn {
        justify-content: center;
    }

    .hero-trust {
        flex-direction: column;
        gap: 8px;
    }

    .trust-divider {
        display: none;
    }

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

    .feature-card {
        padding: 28px;
    }

    .pricing-card {
        padding: 32px 24px;
    }

    .new-price .amount {
        font-size: 3rem;
    }

    .footer-links {
        grid-template-columns: 1fr;
    }

    .timeline-item {
        gap: 16px;
    }

    .timeline-number {
        width: 40px;
        height: 40px;
        font-size: 0.88rem;
    }

    .timeline::before {
        left: 19px;
    }
}