/* CSS Premium: Glassmorphism & Cinematic UI */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;800&display=swap');

:root {
    --bg-base: #0f172a;
    --bg-secondary: #1e293b;
    --bg-neutral: #111827;
    --brand-cyan: #06b6d4;
    --brand-cyan-light: #22d3ee;
    --brand-blue: #3b82f6;
    --text-main: #f8fafc;
    --text-muted: #cbd5e1;
    --glass-bg: rgba(30, 41, 59, 0.45);
    --glass-border: rgba(255, 255, 255, 0.1);
    --ad-gradient-start: #f59e0b;
    --ad-gradient-end: #ea580c;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body { 
    font-family: 'Outfit', sans-serif; 
    background-color: var(--bg-base); 
    color: var(--text-main); 
    line-height: 1.6; 
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    max-width: 100%;
}
html { overflow-x: hidden; max-width: 100%; scroll-behavior: smooth; font-size: 100%; }

.container { max-width: 1000px; margin: 0 auto; padding: 0 1.5rem; }

/* ----------------- GLASSMORPHISM UTILITIES ----------------- */
.glass {
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    box-shadow: 0 8px 32px 0 rgba(6, 182, 212, 0.05);
    border-radius: 28px;
    isolation: isolate;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
}

/* ----------------- HEADER ----------------- */
.header { 
    position: sticky; top: 0; z-index: 100;
    padding: 1rem 0;
    transition: all 0.3s ease;
}
.glass-nav {
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
}
.header-content { display: flex; justify-content: space-between; align-items: center; }
.logo { display: flex; align-items: center; gap: 0.6rem; font-size: 1.6rem; font-weight: 800; }
.logo-img { width: 40px; height: 40px; border-radius: 50%; object-fit: cover; box-shadow: 0 0 10px rgba(6, 182, 212, 0.4); }
.header-right { display: flex; align-items: center; gap: 1.5rem; }
.nav-links { display: flex; gap: 1.5rem; align-items: center; }
.nav-links a { color: var(--text-muted); text-decoration: none; font-weight: 600; font-size: 1rem; transition: color 0.2s; }
.nav-links a:hover { color: var(--brand-cyan); }

.btn-header-call {
    display: inline-flex; align-items: center; gap: 0.4rem;
    background: linear-gradient(135deg, var(--brand-cyan), var(--brand-blue));
    color: white; padding: 0.6rem 1.2rem; border-radius: 30px;
    font-weight: 800; font-size: 1rem; text-decoration: none;
    box-shadow: 0 4px 15px rgba(6, 182, 212, 0.3);
    transition: transform 0.2s;
}
.btn-header-call:hover { transform: scale(1.05); }

/* ----------------- HERO SECTION ----------------- */
.hero { 
    position: relative; 
    min-height: 85vh; 
    display: flex; 
    align-items: center; 
    justify-content: center;
    text-align: center;
    overflow: hidden;
    padding-top: 4rem;
}

/* El fondo de la cabecera (PC) */
.hero-bg {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-image: url('fondo-pc.jpg');
    background-size: cover;
    background-position: center;
    z-index: -2;
    transform: scale(1.05); /* Para un futuro efecto parallax */
}

/* Degradado para fundir el fondo con el color base abajo */
.hero-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to bottom, rgba(15,23,42,0.3) 0%, rgba(15,23,42,0.8) 70%, var(--bg-base) 100%);
    z-index: -1;
}

.hero-content { position: relative; z-index: 1; max-width: 800px;  margin-top: -5vh; }

.hero-title { font-size: clamp(2.5rem, 8vw, 4rem); font-weight: 700; line-height: 1.1; margin-bottom: 1.5rem; letter-spacing: -1.5px; text-shadow: 0 2px 10px rgba(0,0,0,0.6); }
.gradient-text {
    background: linear-gradient(135deg, var(--brand-cyan), var(--brand-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle { text-shadow: 0 2px 5px rgba(0,0,0,0.3); font-size: clamp(1.1rem, 2vw, 1.3rem); color: var(--text-muted); margin-bottom: 2.5rem; max-width: 600px; margin-inline: auto; font-weight: 500; }

.hero-actions { display: flex; justify-content: center; gap: 1rem; margin-bottom: 1.5rem; }

/* Botones Premium */
.btn { 
    display: inline-flex; align-items: center; justify-content: center; gap: 0.6rem; 
    padding: 1.1rem 2rem; border-radius: 50px; font-weight: 600; font-size: 1.1rem; 
    text-decoration: none; border: none; cursor: pointer; transition: all 0.4s cubic-bezier(0.2, 0, 0, 1);
}
@media (hover: hover) { .btn:hover { transform: translateY(-3px); } }
.btn:active { transform: translateY(1px); }

.btn-glow {
    background: linear-gradient(135deg, var(--brand-cyan), var(--brand-blue));
    color: white;
    box-shadow: 0 10px 25px -5px rgba(6, 182, 212, 0.5);
}
@media (hover: hover) { .btn-glow:hover { box-shadow: 0 15px 35px -5px rgba(6, 182, 212, 0.6); } }

.btn-whatsapp {
    background: #25D366;
    color: white;
    border-color: #25D366;
    box-shadow: 0 10px 25px -5px rgba(37, 211, 102, 0.4);
}
@media (hover: hover) { .btn-whatsapp:hover { background: #128C7E; box-shadow: 0 15px 35px -5px rgba(37, 211, 102, 0.5); } }

.btn-outline {
    background: transparent;
    border: 2px solid var(--glass-border);
    color: var(--text-main);
    backdrop-filter: blur(10px);
}
@media (hover: hover) { .btn-outline:hover { background: rgba(255,255,255,0.05); border-color: var(--brand-cyan); color: var(--brand-cyan); } }

.trust-badges { display: flex; justify-content: center; gap: 0.6rem; flex-wrap: wrap; }
.glass-badge {
    display: inline-flex; align-items: center; gap: 0.3rem;
    padding: 0.4rem 0.7rem; border-radius: 30px;
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    font-size: 0.9rem; font-weight: 600; color: var(--text-muted);
    white-space: nowrap;
}

.bizum-banner {
    display: inline-flex; align-items: center; gap: 0.25rem;
    padding: 0.5rem 1.2rem; border-radius: 30px;
    margin-top: 1rem;
    background: rgba(37, 211, 102, 0.1);
    border: 1px solid rgba(37, 211, 102, 0.2);
    font-size: 0.9rem; color: var(--text-main);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    backdrop-filter: blur(10px);
}
.bizum-icon { font-size: 1.2rem; }



/* ----------------- SECTIONS ----------------- */
section { padding: 5rem 0; }
.pricing-section { background-color: var(--bg-base); }
.destination-section { background-color: var(--bg-neutral); }
.calculator-section { background-color: var(--bg-base); }
.booking-section { background-color: var(--bg-neutral); border-top: 1px solid var(--glass-border); border-bottom: 1px solid var(--glass-border); }
.info-section { background-color: var(--bg-base); }

.section-title { font-size: clamp(1.8rem, 6vw, 2.5rem); font-weight: 600; text-align: center; margin-bottom: 0.5rem; white-space: nowrap; letter-spacing: -0.5px; }
.section-subtitle { text-align: center; color: var(--text-muted); margin-bottom: 3rem; font-size: 1.1rem;}
.update-date { color: var(--brand-cyan); font-weight: 600; font-size: 0.9rem; }

.subsection-title { font-size: clamp(1.2rem, 4vw, 1.4rem); font-weight: 500; color: var(--brand-cyan); margin-bottom: 1.5rem; text-align: left; }

/* Tabla de Precios (Glassmorphism) */
.table-responsive { width: 100%; border-radius: 16px; padding: 1px; -ms-overflow-style: none; scrollbar-width: none; } .table-responsive::-webkit-scrollbar { display: none; } /* ----------------- TABLAS ----------------- */
.glass-table { width: 100%; border-collapse: collapse; text-align: left; }
.glass-table th, .glass-table td { padding: 0.7rem 1.2rem; border-bottom: 1px solid rgba(255, 255, 255, 0.1); vertical-align: middle; }
.glass-table th { font-weight: 600; color: var(--text-main); font-size: 1.1rem; vertical-align: top; }
.glass-table th:nth-child(2), .glass-table td:nth-child(2),
.glass-table th:nth-child(3), .glass-table td:nth-child(3) { text-align: center; white-space: nowrap; min-width: 90px; }
.table-schedule { display: block; font-size: 0.9rem; font-weight: 400; color: var(--text-muted); margin-top: 0.3rem; }
.glass-table tbody tr:hover { background: rgba(255, 255, 255, 0.03); }

/* Grid Cards */
.pricing-grid, .grid-features { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; }
.price-card, .card { 
    padding: 2rem; text-align: center; border-radius: 28px;
    transition: transform 0.5s cubic-bezier(0.2, 0, 0, 1), box-shadow 0.5s cubic-bezier(0.2, 0, 0, 1);
    will-change: transform, box-shadow;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}
.price-card:hover, .card:hover { 
    transform: translateY(-8px) translateZ(0); 
    box-shadow: 0 20px 40px rgba(6, 182, 212, 0.12);
    border-color: rgba(255,255,255,0.15);
}
.card-icon { 
    display: inline-flex; align-items: center; justify-content: center;
    width: 60px; height: 60px; border-radius: 15px;
    background: rgba(6, 182, 212, 0.1); color: var(--brand-cyan);
    margin-bottom: 1.5rem;
}
.price-card h3, .card h3 { display: flex; align-items: center; justify-content: center; gap: 0.6rem; margin-bottom: 1rem; color: var(--text-main); font-size: 1.3rem;}
.price-card h3 i { color: var(--brand-cyan); }
.price { font-size: 3rem; font-weight: 800; background: linear-gradient(135deg, #fff, #94a3b8); -webkit-background-clip: text; -webkit-text-fill-color: transparent; margin-bottom: 0.5rem; line-height: 1; }
.desc, .card p { color: var(--text-muted); font-size: 0.95rem; }

/* Tarjetas de Destino con Foto */
.destination-card { padding: 0 !important; overflow: hidden; text-align: left; display: flex; flex-direction: column; }
.destination-img { width: 100%; height: 140px; object-fit: cover; border-bottom: 1px solid rgba(255,255,255,0.05); border-radius: 28px 28px 0 0; }
.destination-content { padding: 1.2rem; flex: 1; display: flex; flex-direction: column; }
.destination-content h3 { font-size: 1.3rem; color: var(--text-main); margin-bottom: 0.5rem; justify-content: flex-start; }
.destination-content .price { font-size: 2.2rem; margin-bottom: 0.3rem; text-align: left; }
.destination-content .desc { font-size: 0.9rem; color: var(--text-muted); }

/* ----------------- MAPA RGPD ----------------- */
.map-trust-badge {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-bottom: 1.2rem;
}
.map-trust-badge span {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--brand-cyan);
    background: rgba(6, 182, 212, 0.08);
    border: 1px solid rgba(6, 182, 212, 0.2);
    padding: 0.4rem 1rem;
    border-radius: 30px;
}

/* ----------------- SELECTOR DE IDIOMA ----------------- */
.lang-selector {
    display: flex;
    gap: 0.4rem;
    align-items: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    padding: 0.3rem;
    border-radius: 20px;
    margin-right: 0.5rem;
}
.lang-btn {
    background: transparent;
    border: none;
    outline: none;
    font-size: 1.15rem;
    cursor: pointer;
    padding: 0.2rem 0.5rem;
    border-radius: 12px;
    transition: background-color 0.2s, transform 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}
.lang-btn:hover {
    transform: scale(1.1);
}
.lang-btn.active {
    background: rgba(255, 255, 255, 0.15);
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.2);
}

/* ----------------- ESPACIO PUBLICITARIO PREMIUM (CADIZPASS) ----------------- */
.ad-section {
    padding: 3rem 0 1rem 0;
}
.ad-card {
    position: relative;
    padding: 2.5rem;
    border-radius: 32px;
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.5) 0%, rgba(15, 23, 42, 0.7) 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    align-items: flex-start;
    text-align: left;
}
/* Efecto de luz ambiental detrÃ¡s de la publicidad */
.ad-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(245, 158, 11, 0.12) 0%, rgba(234, 88, 12, 0) 70%);
    z-index: 0;
    pointer-events: none;
    border-radius: 50%;
    filter: blur(20px);
}
.ad-badge {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.4rem 0.8rem;
    border-radius: 30px;
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.15), rgba(234, 88, 12, 0.15));
    border: 1px solid rgba(245, 158, 11, 0.25);
    font-size: 0.75rem;
    font-weight: 600;
    color: #f59e0b;
}
.ad-body {
    position: relative;
    z-index: 1;
    width: 100%;
}
.ad-body h3 {
    font-size: 1.6rem;
    font-weight: 800;
    margin-bottom: 0.6rem;
    background: linear-gradient(135deg, #fff, #f59e0b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.ad-body p {
    color: var(--text-muted);
    font-size: 1rem;
    max-width: 750px;
    margin-bottom: 1.2rem;
    line-height: 1.6;
}
.btn-ad {
    background: linear-gradient(135deg, #f59e0b, #ea580c);
    color: white;
    box-shadow: 0 10px 20px -5px rgba(245, 158, 11, 0.4);
    font-size: 0.95rem;
    padding: 0.7rem 1.4rem;
    border-radius: 30px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}
.btn-ad:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 30px -5px rgba(245, 158, 11, 0.6);
}

/* ----------------- PREGUNTAS FRECUENTES (FAQ ACORDEÃ“N) ----------------- */
.faq-section {
    background-color: var(--bg-secondary);
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
}
.faq-list {
    max-width: 750px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    text-align: left;
}
.faq-item {
    border-radius: 28px !important;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.2, 0, 0, 1);
}
.faq-item:hover {
    border-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 12px 30px rgba(6, 182, 212, 0.12);
}
.faq-toggle {
    width: 100%;
    padding: 1.5rem;
    background: transparent;
    border: none;
    outline: none;
    color: var(--text-main);
    font-family: 'Outfit', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: color 0.3s;
}
.faq-toggle:hover {
    color: var(--brand-cyan);
}
.faq-icon {
    color: var(--text-muted);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.faq-item.active .faq-icon {
    transform: rotate(180deg);
    color: var(--brand-cyan);
}
.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.faq-content p {
    padding: 0 1.5rem 1.5rem 1.5rem;
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ----------------- FOOTER ----------------- */
.footer { padding: 4rem 0 2rem; margin-top: 4rem; border-top: 1px solid var(--glass-border); background: var(--bg-secondary); }
.footer-content { margin-bottom: 3rem; text-align: center; }
.footer-brand .logo { justify-content: center; margin-bottom: 1rem; }
.footer-brand p { color: var(--text-muted); }
.legal-disclaimer { padding: 2rem; font-size: 0.95rem; color: var(--text-muted); margin-bottom: 2rem; text-align: center; line-height: 1.6; }
.footer-bottom { text-align: center; color: var(--text-muted); font-size: 0.85rem; border-top: 1px solid var(--glass-border); padding-top: 2rem; }

/* ----------------- ANIMACIONES ----------------- */
@keyframes rotateSlow { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
@keyframes pulseIcon { 0% { box-shadow: 0 0 0 0 rgba(6, 182, 212, 0.4); } 70% { box-shadow: 0 0 0 15px rgba(6, 182, 212, 0); } 100% { box-shadow: 0 0 0 0 rgba(6, 182, 212, 0); } }

/* ----------------- FORMULARIO DE RESERVAS ----------------- */
.booking-card {
    max-width: 650px;
    margin: 0 auto;
    padding: 3rem;
}
.booking-form { display: flex; flex-direction: column; gap: 1.5rem; text-align: left; }
.form-row { display: flex; gap: 1.5rem; }
.form-row .form-group { flex: 1; }
.form-group { display: flex; flex-direction: column; gap: 0.6rem; }
.form-group label { display: flex; align-items: center; gap: 0.4rem; font-size: 0.95rem; font-weight: 600; color: var(--brand-cyan); }
.glass-input {
    width: 100%; padding: 1.2rem; border-radius: 12px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--glass-border);
    color: var(--text-main); font-family: 'Outfit', sans-serif; font-size: 1.05rem;
    transition: all 0.3s;
}
.glass-input::placeholder { color: rgba(255,255,255,0.3); }
.glass-input:focus { outline: none; border-color: var(--brand-cyan); background: rgba(255,255,255,0.08); box-shadow: 0 0 15px rgba(6,182,212,0.2); }
.input-icon-wrapper { position: relative; width: 100%; display: flex; align-items: center; }
.input-icon-wrapper i, .input-icon-wrapper svg { position: absolute; left: 1rem; color: var(--text-muted); pointer-events: none; }
.glass-input.with-icon { padding-left: 3rem; }
/* Hacer que los iconos de los calendarios sean blancos */
::-webkit-calendar-picker-indicator { filter: invert(1); opacity: 0.6; cursor: pointer; transition: opacity 0.2s; }
::-webkit-calendar-picker-indicator:hover { opacity: 1; }

/* ----------------- FLOATING ACTION BUTTONS ----------------- */
.fab-container {
    position: fixed; bottom: 1.5rem; 
    right: max(1.5rem, calc(50vw - 500px + 1.5rem));
    display: flex; flex-direction: column; gap: 1rem; z-index: 999;
    opacity: 0; visibility: hidden; pointer-events: none;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}
.fab-container.scrolled { opacity: 1; visibility: visible; pointer-events: auto; }
.fab-btn {
    width: 60px; height: 60px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: white; box-shadow: 0 8px 25px rgba(6, 182, 212, 0.2);
    transition: transform 0.4s cubic-bezier(0.2, 0, 0, 1), box-shadow 0.4s cubic-bezier(0.2, 0, 0, 1);
    text-decoration: none;
}
.fab-btn:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 12px 30px rgba(6, 182, 212, 0.4);
}
.fab-btn:active { transform: scale(0.95); }
.fab-btn svg { width: 32px; height: 32px; }
.fab-btn i { width: 28px; height: 28px; }
.fab-whatsapp { background-color: #25D366; }
.fab-call { background: linear-gradient(135deg, var(--brand-cyan), var(--brand-blue)); }

/* ----------------- RESPONSIVE ----------------- */
@media (max-width: 768px) {
    .hero-content { margin-top: 0; }
    .trust-badges { gap: 0.3rem; }
    .glass-badge { padding: 0.3rem 0.5rem; font-size: 0.7rem; }
    .hero-bg {
        background-image: url('fondo-movil.jpg');
        background-position: center;
    }
    section { padding: 3.5rem 0; }
    .price-card, .card { padding: 1.5rem; }
    .nav-links { display: none; }
    .hide-mobile { display: none; }
    
    /* ZÃ³calo superior y Botones flotantes */
    .btn-header-call { display: none; }

    
    .hero-actions { flex-direction: row; gap: 0.5rem; }
    .hero-actions .btn { flex: 1; padding: 1rem 0.5rem; white-space: nowrap; font-size: 1rem; width: auto; }
    .glass-badge svg { width: 20px !important; height: 20px !important; }
    .btn { width: 100%; }
    .form-row { flex-direction: row; gap: 0.8rem; }
    .booking-card { padding: 1.5rem; }
    
    /* Botonera de tarjetas en 2 lÃ­neas (Grid 3x2) */
    .destination-card .interactive-controls {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 0.4rem;
    }
    .destination-card .pill-toggle {
        justify-content: center;
        padding: 0.4rem 0.2rem;
        font-size: 0.75rem;
    }
    .destination-card .pill-toggle i, .destination-card .pill-toggle svg {
        width: 14px; height: 14px; margin-right: -0.1rem;
    }
}

/* Interactive Cards */
.price-display { margin-bottom: 0.8rem; display: flex; align-items: baseline; gap: 0.3rem; }
.price-display .price { font-size: 2.2rem; font-weight: 800; color: var(--brand-cyan); line-height: 1; margin: 0; }
.price-display .price-aprox { font-size: 0.9rem; color: var(--text-muted); }

.calc-details { margin-bottom: 1rem; display: flex; flex-direction: column; gap: 0.4rem; font-size: 0.95rem; color: var(--text-muted); }
.calc-row { display: flex; align-items: center; gap: 0.4rem; }
.calc-row i { color: var(--brand-cyan-light); opacity: 0.9; }

.interactive-controls { display: flex; flex-wrap: wrap; gap: 0.4rem; margin-top: auto; }
.pill-toggle { 
    display: flex; align-items: center; gap: 0.4rem; 
    padding: 0.5rem 0.8rem; border-radius: 20px; 
    border: 1px solid rgba(255,255,255,0.1); background: rgba(255,255,255,0.05); 
    color: var(--text-muted); cursor: pointer; font-size: 0.9rem; 
    transition: all 0.2s; 
}
.pill-toggle:hover { background: rgba(255,255,255,0.1); }
.pill-toggle.active { background: rgba(6, 182, 212, 0.2); border-color: var(--brand-cyan-light); color: var(--text-main); }
.pill-toggle.active i { color: var(--brand-cyan-light); }

.luggage-counter {
    display: flex; align-items: center; gap: 0.4rem;
    padding: 0.4rem 0.8rem; border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.1); background: rgba(255,255,255,0.05);
    font-size: 0.9rem; color: var(--text-main);
}
.cnt-btn { background: none; border: none; color: var(--brand-cyan-light); font-weight: bold; font-size: 1.1rem; cursor: pointer; padding: 0 0.3rem; line-height: 1; }
.cnt-btn:hover { color: var(--text-main); }




@media (min-width: 769px) {
    .hero { min-height: calc(100vh - 75px); padding-top: 0; }
    .hero-content { margin-top: 0; }
    .hero-title { font-size: 4.2rem; text-shadow: 0 2px 5px rgba(0,0,0,0.3); margin-bottom: 0.5rem; }
    .hero-subtitle { text-shadow: 0 2px 5px rgba(0,0,0,0.3); margin-bottom: 1.5rem; }
    .hero-actions { margin-bottom: 1.5rem; } .hero-actions .btn { box-shadow: 0 2px 5px rgba(0,0,0,0.3) !important; }
    .trust-badges { gap: 1rem; }
}

@media (min-width: 1200px) {
    .hero-content { margin-top: -3vh; }
    .hero-title { font-size: 5rem; text-shadow: 0 2px 5px rgba(0,0,0,0.3); margin-bottom: 0.5rem; }
    .hero-subtitle { text-shadow: 0 2px 5px rgba(0,0,0,0.3); margin-bottom: 1.5rem; }
    .hero-actions { margin-bottom: 1.5rem; } .hero-actions .btn { box-shadow: 0 2px 5px rgba(0,0,0,0.3) !important; }
    .trust-badges { gap: 1rem; }
}

.price-disclaimer { 
    font-size: 0.9rem; 
    color: var(--text-muted); 
    opacity: 0.8; 
    margin-top: -0.6rem; 
    margin-bottom: 2rem; 
    line-height: 1.4; 
    font-style: normal; 
    letter-spacing: normal; 
}

.dest-from { color: var(--brand-cyan-light); text-transform: uppercase; font-weight: 500; font-size: 0.875rem; margin-bottom: 0.3rem; letter-spacing: 0.05em; }

@media (min-width: 769px) { .mobile-break { display: none; } }
/* AUTOCOMPLETE STYLES */
.autocomplete-suggestions {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 999;
    background: rgba(20, 25, 40, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 10px;
    margin-top: 5px;
    max-height: 250px;
    overflow-y: auto;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}
.autocomplete-suggestions.hidden {
    display: none;
}
.autocomplete-suggestions > div:hover {
    background: rgba(255,255,255,0.1) !important;
}

/* ----------------- MINI DESTINATIONS ----------------- */
.mini-dest-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-top: 2.5rem;
}
.mini-dest-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 1.5rem;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
    cursor: pointer;
    touch-action: manipulation;
}
@media (hover: hover) {
    .mini-dest-card:hover {
        background: rgba(6, 182, 212, 0.1);
        border-color: rgba(6, 182, 212, 0.3);
        transform: translateY(-2px);
    }
}

.mini-dest-name {
    font-weight: 500;
    color: var(--text-main);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.mini-dest-price {
    font-weight: 700;
    color: var(--brand-cyan);
    font-size: 1.1rem;
}

/* ----------------- DESTINATION ACTIONS ACCORDION ----------------- */
.mini-dest-card {
    flex-direction: column;
    align-items: stretch;
    touch-action: manipulation;
}
.mini-dest-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}
.dest-actions-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    margin-top: 0.5rem;
}
.dest-action-toggle {
    background: none;
    border: none;
    color: var(--brand-cyan);
    cursor: pointer;
    padding: 0.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.3s ease;
    border-radius: 50%;
}
@media (hover: hover) {
    .dest-action-toggle:hover {
        background: rgba(255,255,255,0.1);
        color: var(--brand-cyan);
    }
}
.dest-action-toggle.open {
    transform: rotate(180deg);
}
.dest-actions-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, opacity 0.3s ease;
    opacity: 0;
    pointer-events: none;
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    width: 100%;
}
.dest-actions-content.open {
    max-height: 600px;
    opacity: 1;
    pointer-events: auto;
}
.circle-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white !important;
    text-decoration: none;
    transition: transform 0.3s cubic-bezier(0.2, 0, 0, 1), box-shadow 0.3s ease;
    border: none;
    cursor: pointer;
}
.circle-btn:hover {
    transform: translateY(-4px) scale(1.08);
}
.circle-btn.btn-nuclear {
    background: radial-gradient(circle at 30% 30%, #ef4444, #991b1b);
    box-shadow: 0 4px 15px rgba(239, 68, 68, 0.4);
}
.circle-btn.btn-nuclear:hover {
    box-shadow: 0 8px 25px rgba(239, 68, 68, 0.6);
}
.circle-btn.btn-blue {
    background: radial-gradient(circle at 30% 30%, #3b82f6, #1e3a8a);
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.4);
}
.circle-btn.btn-blue:hover {
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.6);
}
.circle-btn.btn-green {
    background: radial-gradient(circle at 30% 30%, #25D366, #075E54);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
}
.circle-btn.btn-green:hover {
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.6);
}

@media (max-width: 768px) {
    .dest-action-toggle {
        display: none !important;
    }
}

/* ----------------- MD3 BUTTONS ----------------- */
.dest-actions-content.md3-actions {
    flex-direction: column;
    gap: 0.6rem;
    padding-left: 1rem;
    padding-right: 1rem;
}
.dest-actions-content.md3-actions.open {
    padding-top: 2rem;
    padding-bottom: 1.5rem;
}
.md3-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 9999px;
    font-weight: 500;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    width: 100%;
}
.md3-primary {
    background-color: var(--brand-cyan);
    color: var(--dark-bg);
    box-shadow: 0 4px 10px rgba(0, 230, 255, 0.15);
}
.md3-primary:hover {
    background-color: #33eeff;
    box-shadow: 0 6px 15px rgba(0, 230, 255, 0.3);
    transform: translateY(-2px);
}
.md3-tonal {
    background-color: rgba(59, 130, 246, 0.15);
    color: #93c5fd;
}
.md3-tonal:hover {
    background-color: rgba(59, 130, 246, 0.25);
    color: #bfdbfe;
    transform: translateY(-2px);
}
.md3-tonal-green {
    background-color: rgba(37, 211, 102, 0.15);
    color: #86efac;
}
.md3-tonal-green:hover {
    background-color: rgba(37, 211, 102, 0.25);
    color: #bbf7d0;
    transform: translateY(-2px);
}

@media (min-width: 768px) {
    .dest-actions-content.md3-actions {
        flex-direction: column;
        padding: 0 1rem;
    }
    .md3-btn {
        width: auto;
        padding: 0.6rem 1.2rem;
    }
    .mini-dest-grid {
        gap: 0.5rem;
    }
    .mini-dest-card {
        padding: 0.8rem 1.5rem;
        touch-action: manipulation;
}
    .dest-actions-wrapper {
        margin-top: 0.2rem;
    }
}


/* Tarifa Prototype */
/* Tarifa Prototype and X button */
.mini-dest-info-right {
    transition: opacity 0.2s ease 0.2s;
}
.mini-dest-card.expanded .mini-dest-info-right {
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease;
}

.mini-dest-close-btn {
    position: absolute;
    right: 0;
    background: rgba(255,255,255,0.1);
    border: none;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease, background 0.3s;
    cursor: pointer;
    color: white;
    z-index: 10;
}
@media (hover: hover) {
    .mini-dest-close-btn:hover {
        background: rgba(255,255,255,0.2);
    }
}

.mini-dest-card.expanded .mini-dest-close-btn {
    opacity: 1;
    pointer-events: auto;
    transition: opacity 0.2s ease;
}

.mini-dest-card.expanded .dest-actions-wrapper { margin-top: 1rem; }





/* ----------------- NATIVE ACCORDION ----------------- */
details.mini-dest-card {
    transition: background-color 0.2s ease;
}
details.mini-dest-card > summary {
    list-style: none;
    outline: none;
    padding: 0;
    margin: 0;
    cursor: pointer;
}
details.mini-dest-card > summary::-webkit-details-marker {
    display: none;
}
details.mini-dest-card[open] .mini-dest-close-btn {
    opacity: 1;
    pointer-events: auto;
}

/* Ocultar info de la tarjeta al desplegar */
details.native-accordion[open] .mini-dest-info-right {
    display: none !important;
}

/* Arreglo destello tactil y animaciones acordeon */
details.native-accordion,
details.native-accordion * {
    -webkit-tap-highlight-color: transparent !important;
    -webkit-tap-highlight-color: rgba(0,0,0,0) !important;
}
details.native-accordion summary {
    outline: none !important;
    user-select: none;
    -webkit-user-select: none;
}
details.native-accordion summary:focus,
details.native-accordion summary:active {
    outline: none !important;
    background: transparent !important;
}
details.native-accordion .native-content {
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease, padding 0.3s ease;
    padding-top: 0;
    padding-bottom: 0;
}
details.native-accordion[open] .native-content {
    opacity: 1;
    max-height: 600px;
    padding-top: 1.5rem;
    padding-bottom: 0.5rem;
}
details.native-accordion.closing .native-content {
    opacity: 0;
    max-height: 0;
    padding-top: 0;
    padding-bottom: 0;
}
