/* ========================================
   PARAPENTORGANYÀ - Estilos principales
   ======================================== */

/* === VARIABLES === */
:root {
    --blue: #0EA5E9;
    --blue-dark: #0284C7;
    --blue-light: #38BDF8;
    --green: #16A34A;
    --green-light: #22C55E;
    --white: #FFFFFF;
    --black: #0F172A;
    --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;
    --gray-900: #0F172A;
    --orange: #F97316;
    --red: #EF4444;

    --font-display: 'Poppins', sans-serif;
    --font-body: 'Inter', sans-serif;

    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;

    --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.1);
    --shadow-lg: 0 12px 40px rgba(0,0,0,0.15);
    --shadow-xl: 0 24px 60px rgba(0,0,0,0.2);

    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

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

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

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

ul { list-style: none; }

/* === CONTAINER === */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* === SECTION === */
.section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-tag {
    display: inline-block;
    background: linear-gradient(135deg, var(--blue), var(--blue-light));
    color: var(--white);
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--gray-900);
    line-height: 1.2;
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 1.15rem;
    color: var(--gray-500);
    max-width: 600px;
    margin: 0 auto;
}

/* === LUCIDE ICONS === */
.icon {
    display: inline-block;
    vertical-align: middle;
    width: 20px;
    height: 20px;
    stroke-width: 1.8;
}

.icon-xs {
    width: 16px;
    height: 16px;
}

.icon-sm {
    width: 20px;
    height: 20px;
}

.icon-lg {
    width: 32px;
    height: 32px;
}

.icon-xl {
    width: 40px;
    height: 40px;
}

.icon-xxl {
    width: 56px;
    height: 56px;
}

.icon-blue {
    color: var(--blue);
}

.icon-filled {
    fill: currentColor;
}

.icon-star {
    width: 18px;
    height: 18px;
    color: #FBBF24;
    fill: #FBBF24;
}

.trust-icon .icon {
    width: 22px;
    height: 22px;
    color: var(--blue);
}

.pack-icon .icon {
    color: var(--blue);
}


.step-icon {
    margin-bottom: 16px;
    line-height: 1;
}

.hero-trust .icon,
.hero-urgency .icon,
.hero-badge .icon {
    color: currentColor;
}

.hero-badge .icon-filled {
    color: #FBBF24;
    fill: #FBBF24;
}

.hero-trust .icon-filled {
    color: #FBBF24;
    fill: #FBBF24;
}

.footer-contact .icon {
    width: 16px;
    height: 16px;
    color: var(--blue-light);
    margin-right: 4px;
}

.form-note .icon {
    color: var(--gray-400);
}

.occasion-tag .icon {
    color: rgba(255, 255, 255, 0.7);
}

.whatsapp-icon .icon {
    width: 22px;
    height: 22px;
    color: var(--white);
}

/* === GLASS EFFECT === */
.glass {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

/* === BUTTONS === */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: var(--radius-md);
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    white-space: nowrap;
}

.btn-primary {
    background: linear-gradient(135deg, var(--blue), var(--blue-dark));
    color: var(--white);
    box-shadow: 0 4px 20px rgba(14, 165, 233, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(14, 165, 233, 0.5);
}

.btn-ghost {
    background: rgba(255, 255, 255, 0.15);
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(10px);
}

.btn-ghost:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.6);
}

.btn-lg {
    padding: 18px 40px;
    font-size: 1.1rem;
    border-radius: var(--radius-lg);
}

.btn-block {
    width: 100%;
}

.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 4px 20px rgba(14, 165, 233, 0.4); }
    50% { box-shadow: 0 4px 40px rgba(14, 165, 233, 0.7); }
    100% { box-shadow: 0 4px 20px rgba(14, 165, 233, 0.4); }
}

/* === NAVBAR === */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: var(--shadow-sm);
    padding: 10px 0;
}

.navbar.scrolled .logo-text,
.navbar.scrolled .nav-links a {
    color: var(--gray-800);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    z-index: 10;
}

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

.logo-icon .icon {
    width: 24px;
    height: 24px;
    color: var(--blue-light);
}

.navbar.scrolled .logo-icon .icon {
    color: var(--blue);
}

.logo-text {
    font-family: var(--font-display);
    font-size: 1.3rem;
    color: var(--white);
    font-weight: 600;
    transition: var(--transition);
}

.logo-text strong {
    font-weight: 800;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 28px;
}

.nav-links a {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    font-weight: 500;
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--blue-light);
}

.nav-cta {
    background: var(--blue) !important;
    color: var(--white) !important;
    padding: 10px 24px;
    border-radius: var(--radius-md);
}

.nav-cta:hover {
    background: var(--blue-dark) !important;
    transform: translateY(-1px);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 10;
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--white);
    transition: var(--transition);
    border-radius: 2px;
}

.navbar.scrolled .nav-toggle span {
    background: var(--gray-800);
}

/* === HERO === */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-video-wrapper {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
    background: #0F172A;
}

.hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* === VIDEO SECTION === */
.video-section {
    background: var(--gray-900);
    color: var(--white);
}

.video-section .section-tag {
    background: rgba(255, 255, 255, 0.12);
}

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

.video-section .section-subtitle {
    color: var(--gray-400);
}

.video-embed {
    max-width: 860px;
    margin: 0 auto;
}

.video-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 */
    height: 0;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    background: var(--black);
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.video-thumbnail {
    position: absolute;
    inset: 0;
    cursor: pointer;
}

.video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.video-thumbnail:hover img {
    transform: scale(1.03);
    filter: brightness(0.85);
}

.video-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: none;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    filter: drop-shadow(0 4px 12px rgba(0,0,0,0.4));
}

.video-play-btn:hover {
    transform: translate(-50%, -50%) scale(1.15);
}

.video-play-btn svg {
    display: block;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(15, 23, 42, 0.35) 0%,
        rgba(15, 23, 42, 0.45) 50%,
        rgba(15, 23, 42, 0.65) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 120px 20px 80px;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    margin-bottom: 24px;
    animation: fadeInDown 0.8s ease;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 900;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 20px;
    animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-highlight {
    background: linear-gradient(135deg, var(--blue-light), var(--green-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: clamp(1.05rem, 2vw, 1.3rem);
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 36px;
    line-height: 1.6;
    animation: fadeInUp 0.8s ease 0.4s both;
}

.hero-ctas {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 32px;
    animation: fadeInUp 0.8s ease 0.6s both;
}

.hero-urgency {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(249, 115, 22, 0.2);
    border: 1px solid rgba(249, 115, 22, 0.4);
    color: var(--white);
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 0.9rem;
    margin-bottom: 20px;
    animation: fadeInUp 0.8s ease 0.8s both;
}

.urgency-dot {
    width: 8px;
    height: 8px;
    background: var(--orange);
    border-radius: 50%;
    animation: blink 1.5s infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

.hero-trust {
    display: flex;
    gap: 12px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
    animation: fadeInUp 0.8s ease 1s both;
}

.trust-sep {
    color: rgba(255, 255, 255, 0.3);
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.scroll-arrow {
    width: 24px;
    height: 24px;
    border-right: 2px solid rgba(255, 255, 255, 0.5);
    border-bottom: 2px solid rgba(255, 255, 255, 0.5);
    transform: rotate(45deg);
    animation: scrollBounce 2s infinite;
}

@keyframes scrollBounce {
    0%, 100% { transform: rotate(45deg) translate(0, 0); opacity: 0.5; }
    50% { transform: rotate(45deg) translate(5px, 5px); opacity: 1; }
}

/* === TRUST BAR === */
.trust-bar {
    background: var(--gray-50);
    border-bottom: 1px solid var(--gray-200);
    padding: 20px 0;
}

.trust-items {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

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

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

/* === PACKS === */
.experiencias {
    background: var(--gray-50);
}

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

.pack-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid var(--gray-200);
}

.pack-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.pack-card.featured {
    border: 2px solid var(--blue);
    box-shadow: var(--shadow-md);
}

.pack-image {
    height: 200px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.pack-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 4px 14px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--gray-700);
}

.featured-badge {
    background: linear-gradient(135deg, var(--blue), var(--blue-dark)) !important;
    color: var(--white) !important;
}

.pack-content {
    padding: 24px;
    text-align: center;
}

.pack-icon {
    margin-bottom: 8px;
    line-height: 1;
}

.pack-name {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 6px;
}

.pack-desc {
    font-size: 0.9rem;
    color: var(--gray-500);
    margin-bottom: 16px;
}

.pack-price {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--blue);
    margin-bottom: 16px;
}

.pack-price span {
    font-size: 1.5rem;
    font-weight: 600;
}

.pack-price-consult {
    font-size: 1.5rem !important;
    color: var(--gray-600) !important;
}

/* === FEATURES / POR QUE ELEGIRNOS === */
.nosotros {
    background: var(--white);
}

.features-icon-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.feature-icon-card {
    text-align: center;
    padding: 32px 20px;
    border-radius: var(--radius-lg);
    transition: var(--transition);
}

.feature-icon-card:hover {
    transform: translateY(-6px);
    background: var(--gray-50);
}

.feature-icon-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.1), rgba(14, 165, 233, 0.05));
    border: 2px solid rgba(14, 165, 233, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: var(--transition);
}

.feature-icon-circle .icon {
    width: 34px;
    height: 34px;
    color: var(--blue);
    stroke-width: 1.6;
}

.feature-icon-card:hover .feature-icon-circle {
    background: linear-gradient(135deg, var(--blue), var(--blue-dark));
    border-color: transparent;
    transform: scale(1.1);
}

.feature-icon-card:hover .feature-icon-circle .icon {
    color: var(--white);
}

.feature-icon-card h3 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 10px;
}

.feature-icon-card p {
    font-size: 0.9rem;
    color: var(--gray-500);
    line-height: 1.65;
}

/* === GALLERY === */
.galeria {
    background: var(--gray-900);
    color: var(--white);
}

.galeria .section-tag {
    background: rgba(255, 255, 255, 0.15);
}

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

.galeria .section-subtitle {
    color: var(--gray-400);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 200px;
    gap: 12px;
    margin-bottom: 40px;
}

.gallery-item {
    border-radius: var(--radius-md);
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

.gallery-item-lg {
    grid-column: span 2;
    grid-row: span 2;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(0,0,0,0.6) 0%, transparent 60%);
    display: flex;
    align-items: flex-end;
    padding: 16px;
    opacity: 0;
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay span {
    color: var(--white);
    font-weight: 600;
    font-size: 0.9rem;
}

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

/* === TESTIMONIOS === */
.testimonios {
    background: linear-gradient(135deg, var(--gray-50), #E0F2FE);
}

.counter-row {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

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

.counter-number {
    display: block;
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 900;
    color: var(--blue);
    line-height: 1;
    margin-bottom: 6px;
}

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

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

.testimonial-card {
    padding: 32px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.testimonial-stars {
    margin-bottom: 16px;
    display: flex;
    gap: 2px;
}

.testimonial-text {
    font-size: 0.95rem;
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--blue), var(--blue-light));
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.85rem;
}

.testimonial-author strong {
    display: block;
    font-size: 0.9rem;
    color: var(--gray-800);
}

.testimonial-author span {
    font-size: 0.8rem;
    color: var(--gray-400);
}

/* === COMO FUNCIONA === */
.como-funciona {
    background: var(--white);
}

.steps-grid {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
}

.step-card {
    text-align: center;
    padding: 30px 24px;
    flex: 1;
    max-width: 260px;
    position: relative;
}

.step-number {
    position: absolute;
    top: 10px;
    right: 20px;
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 900;
    color: var(--gray-100);
    line-height: 1;
}

.step-icon {
    margin-bottom: 16px;
    line-height: 1;
}

.step-card h3 {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 8px;
}

.step-card p {
    font-size: 0.9rem;
    color: var(--gray-500);
    line-height: 1.5;
}

.step-connector {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, var(--blue-light), var(--blue));
    margin-top: 70px;
    flex-shrink: 0;
    border-radius: 2px;
}

/* === BONOS REGALO === */
.bonos {
    background: linear-gradient(135deg, #1E293B, #0F172A);
    color: var(--white);
}

.bonos .section-tag {
    background: rgba(255, 255, 255, 0.12);
}

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

.bonos-wrapper {
    display: flex;
    align-items: center;
    gap: 60px;
    padding: 60px;
    border-radius: var(--radius-xl);
    background: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
}

.bonos-content {
    flex: 1;
}

.bonos-desc {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 24px;
    line-height: 1.7;
}

.bonos-occasions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 32px;
}

.occasion-tag {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
}

.bonos-visual {
    flex: 0 0 380px;
}

.gift-card {
    perspective: 1000px;
}

.gift-card-inner {
    background: linear-gradient(135deg, var(--blue), var(--blue-dark), #1D4ED8);
    border-radius: var(--radius-lg);
    padding: 32px;
    box-shadow: var(--shadow-xl);
    transform: rotateY(-5deg) rotateX(3deg);
    transition: var(--transition);
    min-height: 220px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.gift-card:hover .gift-card-inner {
    transform: rotateY(0) rotateX(0);
}

.gift-card-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.gift-logo {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.9rem;
}

.gift-badge {
    background: rgba(255, 255, 255, 0.2);
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.gift-card-body h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 4px;
}

.gift-card-body p {
    font-size: 0.85rem;
    opacity: 0.7;
}

.gift-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    opacity: 0.8;
}

.gift-price {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.2rem;
    opacity: 1;
}

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

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

.faq-item {
    background: var(--white);
    border-radius: var(--radius-md);
    margin-bottom: 12px;
    overflow: hidden;
    border: 1px solid var(--gray-200);
    transition: var(--transition);
}

.faq-item.active {
    box-shadow: var(--shadow-md);
    border-color: var(--blue-light);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    background: none;
    border: none;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    color: var(--gray-800);
    cursor: pointer;
    text-align: left;
    transition: var(--transition);
}

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

.faq-icon {
    font-size: 1.5rem;
    color: var(--blue);
    transition: var(--transition);
    font-weight: 300;
    flex-shrink: 0;
    width: 28px;
    text-align: center;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-answer p {
    padding: 0 24px 20px;
    font-size: 0.95rem;
    color: var(--gray-600);
    line-height: 1.7;
}

/* === RESERVA / FORMULARIO === */
.reserva {
    background: var(--white);
}

.reserva-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.reserva-info .section-tag {
    margin-bottom: 12px;
}

.reserva-info .section-title {
    text-align: left;
    margin-bottom: 16px;
}

.reserva-info > p {
    color: var(--gray-600);
    margin-bottom: 28px;
    line-height: 1.7;
}

.reserva-incentivo {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    border-radius: var(--radius-md);
    margin-bottom: 32px;
    background: rgba(14, 165, 233, 0.05) !important;
    border: 1px solid rgba(14, 165, 233, 0.15) !important;
}

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

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

.reserva-contacto {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contacto-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    color: var(--gray-600);
}

.contacto-item a:hover {
    color: var(--blue);
}

.reserva-form-wrapper {
    padding: 36px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    background: var(--white) !important;
    border: 1px solid var(--gray-200) !important;
}

.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gray-700);
    margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--gray-300);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--gray-800);
    transition: var(--transition);
    background: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--blue);
    box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.15);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

/* CALENDAR PICKER */
.calendar-picker {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    overflow: hidden;
    user-select: none;
}

.cal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 14px;
    background: var(--gray-50);
    border-bottom: 1px solid var(--gray-200);
}

.cal-header button {
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px 8px;
    border-radius: 6px;
    color: var(--gray-600);
    font-size: 1.1rem;
    transition: all 0.15s;
}

.cal-header button:hover {
    background: var(--gray-200);
    color: var(--gray-900);
}

.cal-month-label {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--gray-800);
    text-transform: capitalize;
}

.cal-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 2px;
    padding: 8px;
}

.cal-day-header {
    text-align: center;
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--gray-400);
    padding: 4px 0;
    text-transform: uppercase;
}

.cal-day {
    text-align: center;
    padding: 8px 4px;
    font-size: 0.85rem;
    border-radius: 8px;
    cursor: default;
    color: var(--gray-300);
    transition: all 0.15s;
    position: relative;
}

.cal-day.available {
    color: var(--gray-800);
    cursor: pointer;
    font-weight: 500;
}

.cal-day.available:hover {
    background: rgba(14, 165, 233, 0.1);
    color: var(--blue);
}

.cal-day.selected {
    background: var(--blue) !important;
    color: var(--white) !important;
    font-weight: 700;
}

.cal-day.today {
    font-weight: 700;
}

.cal-day.today::after {
    content: '';
    position: absolute;
    bottom: 3px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--blue);
}

.cal-day.available .cal-plazas {
    display: block;
    font-size: 0.6rem;
    color: var(--green);
    font-weight: 600;
    line-height: 1;
    margin-top: 1px;
}

.cal-day.few .cal-plazas {
    color: var(--orange);
}

/* TURNO OPTIONS */
.turno-options {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.turno-option {
    flex: 1;
    min-width: 140px;
    padding: 12px 16px;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all 0.15s;
    text-align: center;
}

.turno-option:hover {
    border-color: var(--gray-400);
}

.turno-option.selected {
    border-color: var(--blue);
    background: rgba(14, 165, 233, 0.05);
}

.turno-option .turno-name {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--gray-800);
    display: block;
}

.turno-option .turno-time {
    font-size: 0.8rem;
    color: var(--gray-500);
    margin-top: 2px;
    display: block;
}

.turno-option .turno-plazas {
    font-size: 0.75rem;
    color: var(--green);
    font-weight: 600;
    margin-top: 4px;
    display: block;
}

/* PAYMENT METHOD SELECTOR */
.payment-methods {
    display: flex;
    gap: 10px;
}

.payment-option {
    flex: 1;
    cursor: pointer;
}

.payment-option input {
    display: none;
}

.payment-label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 16px;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--gray-500);
    transition: var(--transition);
}

.payment-option input:checked + .payment-label {
    border-color: var(--blue);
    background: rgba(14, 165, 233, 0.05);
    color: var(--blue);
}

.payment-label:hover {
    border-color: var(--gray-400);
}

.form-note {
    text-align: center;
    font-size: 0.8rem;
    color: var(--gray-400);
    margin-top: 12px;
}

/* === FOOTER === */
.footer {
    background: var(--gray-900);
    color: var(--gray-300);
    padding: 60px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand .logo-text {
    color: var(--white);
}

.footer-brand > p {
    margin-top: 12px;
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--gray-400);
}

.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 16px;
}

.social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    font-size: 1.1rem;
    transition: var(--transition);
}

.social-link:hover {
    background: var(--blue);
    transform: translateY(-2px);
}

.footer-links h4,
.footer-contact h4 {
    color: var(--white);
    font-family: var(--font-display);
    font-weight: 700;
    margin-bottom: 16px;
    font-size: 1rem;
}

.footer-links ul li {
    margin-bottom: 8px;
}

.footer-links a {
    font-size: 0.9rem;
    color: var(--gray-400);
}

.footer-links a:hover {
    color: var(--blue-light);
}

.footer-contact p {
    font-size: 0.9rem;
    margin-bottom: 8px;
}

.footer-contact a:hover {
    color: var(--blue-light);
}

.footer-map {
    margin-top: 12px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 20px;
    text-align: center;
    font-size: 0.85rem;
    color: var(--gray-500);
}

/* === WHATSAPP FLOAT === */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    display: flex;
    align-items: center;
    gap: 8px;
    background: #25D366;
    color: var(--white);
    padding: 14px 22px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: var(--transition);
}

.whatsapp-float:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5);
}

.whatsapp-icon {
    font-size: 1.3rem;
}

/* === EXIT POPUP === */
.popup-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.popup-overlay.active {
    opacity: 1;
    visibility: visible;
}

.popup-content {
    background: var(--white) !important;
    border: 1px solid var(--gray-200) !important;
    border-radius: var(--radius-xl);
    padding: 48px;
    max-width: 460px;
    width: 100%;
    position: relative;
    transform: scale(0.9) translateY(20px);
    transition: var(--transition);
    text-align: center;
}

.popup-overlay.active .popup-content {
    transform: scale(1) translateY(0);
}

.popup-close {
    position: absolute;
    top: 16px;
    right: 20px;
    background: none;
    border: none;
    font-size: 1.8rem;
    color: var(--gray-400);
    cursor: pointer;
    transition: var(--transition);
    line-height: 1;
}

.popup-close:hover {
    color: var(--gray-800);
}

.popup-icon {
    display: block;
    margin-bottom: 16px;
    line-height: 1;
}

.popup-body h3 {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: 12px;
}

.popup-body p {
    font-size: 1rem;
    color: var(--gray-600);
    margin-bottom: 24px;
    line-height: 1.6;
}

.popup-dismiss {
    display: block;
    margin: 12px auto 0;
    background: none;
    border: none;
    font-family: var(--font-body);
    font-size: 0.85rem;
    color: var(--gray-400);
    cursor: pointer;
    text-decoration: underline;
}

.popup-dismiss:hover {
    color: var(--gray-600);
}

/* === BONO REGALO MODAL === */
.bono-modal-content {
    max-width: 520px;
    max-height: 90vh;
    overflow-y: auto;
}

.bono-modal-header {
    text-align: center;
    margin-bottom: 24px;
}

.bono-modal-header h3 {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--gray-900);
    margin-top: 12px;
    margin-bottom: 6px;
}

.bono-modal-header p {
    color: var(--gray-500);
    font-size: 0.95rem;
}

.bono-confirm-content {
    max-width: 460px;
    text-align: center;
}

.bono-confirm-icon {
    margin-bottom: 12px;
}

.bono-confirm-body h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: 20px;
}

.bono-code-display {
    background: var(--gray-50);
    border: 2px dashed var(--blue);
    border-radius: var(--radius-md);
    padding: 20px;
    margin-bottom: 16px;
}

.bono-code-label {
    display: block;
    font-size: 0.8rem;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 6px;
}

.bono-code {
    display: block;
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--blue);
    letter-spacing: 2px;
}

.bono-confirm-info {
    color: var(--gray-500);
    font-size: 0.9rem;
    margin-bottom: 24px;
}

.bono-confirm-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 16px;
}

/* === ANIMATIONS === */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

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

[data-aos="fade-up"] {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-aos="fade-right"] {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-aos="fade-left"] {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-aos="zoom-in"] {
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-aos].aos-animate {
    opacity: 1;
    transform: translate(0) scale(1);
}

/* === RESPONSIVE === */
@media (max-width: 1024px) {
    .packs-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .features-icon-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
        grid-auto-rows: 180px;
    }

    .testimonials-slider {
        grid-template-columns: repeat(2, 1fr);
    }

    .bonos-wrapper {
        flex-direction: column;
        padding: 40px;
    }

    .bonos-visual {
        flex: none;
        width: 100%;
        max-width: 380px;
    }

    .reserva-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .section {
        padding: 70px 0;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        padding: 100px 30px 30px;
        gap: 0;
        box-shadow: var(--shadow-xl);
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links a {
        color: var(--gray-800) !important;
        font-size: 1.1rem;
        padding: 14px 0;
        border-bottom: 1px solid var(--gray-100);
        display: block;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    .packs-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 150px;
    }

    .gallery-item-lg {
        grid-column: span 2;
        grid-row: span 1;
    }

    .testimonials-slider {
        grid-template-columns: 1fr;
    }

    .steps-grid {
        flex-direction: column;
        align-items: center;
    }

    .step-connector {
        width: 2px;
        height: 40px;
        margin: 0;
    }

    .counter-row {
        gap: 30px;
    }

    .trust-items {
        gap: 16px;
    }

    .trust-item {
        flex: 0 0 calc(50% - 8px);
        font-size: 0.8rem;
    }

    .hero-ctas {
        flex-direction: column;
        align-items: center;
    }

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

    .trust-sep {
        display: none;
    }

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

    .form-row {
        grid-template-columns: 1fr;
    }

    .whatsapp-text {
        display: none;
    }

    .whatsapp-float {
        padding: 14px;
        border-radius: 50%;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .popup-content {
        padding: 32px 24px;
    }

    .bonos-wrapper {
        padding: 28px;
    }

    .reserva-form-wrapper {
        padding: 24px;
    }
}
