/* ============================================
   LANDING PAGE - LONDRES MÁGICA
   JPM Viagens - Harry Potter Experience
   Design Moderno com Identidade Visual JPM
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Cinzel+Decorative:wght@400;700;900&family=Cinzel:wght@400;500;600;700;900&family=Lora:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&display=swap');

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

:root {
    /* Paleta JPM Viagens */
    --jpm-dark: #022C42;
    --jpm-medium: #6B9DFC;
    --jpm-light: #E9F1FF;
    --jpm-white: #ffffff;

    /* Mapeamento funcional */
    --bg-darkest: #011a2e;
    --bg-dark: #022C42;
    --bg-medium: #03354f;
    --bg-card: #054060;
    --bg-light: #0a5078;
    --accent: #6B9DFC;
    --accent-light: #8bb8ff;
    --accent-glow: rgba(107, 157, 252, 0.4);
    --gold: #6B9DFC;
    --cream: #E9F1FF;
    --white: #ffffff;
    --text-primary: #e8f0fa;
    --text-secondary: #b8cce6;
    --text-muted: #8fa8cc;
    --font-display: 'Cinzel Decorative', serif;
    --font-heading: 'Cinzel', serif;
    --font-body: 'Lora', serif;
    --radius: 12px;
    --radius-sm: 8px;
}

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

body {
    font-family: var(--font-body);
    color: var(--text-primary);
    background-color: var(--bg-darkest);
    overflow-x: hidden;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

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

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

/* === SCROLLBAR === */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg-darkest); }
::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 4px; }

/* === NAVIGATION === */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.2rem 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.4s ease;
}

.navbar.scrolled {
    background: rgba(2, 44, 66, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 0.8rem 3rem;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.6);
    border-bottom: 1px solid rgba(107, 157, 252, 0.15);
}

.nav-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: opacity 0.3s ease;
}
.nav-logo:hover {
    opacity: 0.85;
}
.nav-logo-img {
    height: 38px;
    width: auto;
    object-fit: contain;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
    align-items: center;
}

.nav-links a {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    color: var(--text-secondary);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: color 0.3s;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width 0.3s;
    border-radius: 1px;
}

.nav-links a:hover { color: var(--accent-light); }
.nav-links a:hover::after { width: 100%; }

.nav-cta {
    background: linear-gradient(135deg, var(--accent), var(--jpm-medium));
    color: var(--bg-darkest) !important;
    padding: 0.6rem 1.6rem;
    border-radius: 4px;
    font-weight: 700;
    font-size: 0.8rem;
    transition: all 0.3s !important;
    box-shadow: 0 4px 15px rgba(107, 157, 252, 0.3);
}
.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(107, 157, 252, 0.5);
}
.nav-cta::after { display: none !important; }

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 1001;
}
.menu-toggle span {
    width: 28px;
    height: 2px;
    background: var(--accent);
    transition: all 0.3s;
}

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

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/hogwarts-bg.webp') center/cover no-repeat;
    z-index: 0;
    transform: scale(1.08);
}

.hero-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        180deg,
        rgba(2, 44, 66, 0.25) 0%,
        rgba(2, 44, 66, 0.2) 30%,
        rgba(2, 44, 66, 0.4) 60%,
        rgba(2, 44, 66, 0.7) 80%,
        rgba(2, 44, 66, 1) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 2rem;
    max-width: 900px;
}

.hero-badge {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--accent);
    border: 1px solid rgba(107, 157, 252, 0.4);
    padding: 0.6rem 1.8rem;
    margin-bottom: 2rem;
    background: rgba(107, 157, 252, 0.05);
    backdrop-filter: blur(10px);
    opacity: 0;
    animation: fadeInUp 1s ease 0.3s forwards;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 900;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 1.2rem;
    text-shadow: 0 4px 60px rgba(0, 0, 0, 0.8);
    opacity: 0;
    animation: fadeInUp 1s ease 0.5s forwards;
}

.hero-title span {
    color: var(--accent);
    display: block;
    font-size: 0.55em;
    font-family: var(--font-heading);
    font-weight: 600;
    letter-spacing: 4px;
    margin-top: 0.8rem;
    text-shadow: 0 2px 30px rgba(107, 157, 252, 0.3);
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-secondary);
    max-width: 680px;
    margin: 1.5rem auto 2.5rem;
    line-height: 1.8;
    opacity: 0;
    animation: fadeInUp 1s ease 0.7s forwards;
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.6);
}

.hero-date {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--accent);
    margin-bottom: 2.5rem;
    opacity: 0;
    animation: fadeInUp 1s ease 0.9s forwards;
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.6);
}

.hero-date svg { width: 20px; height: 20px; }

.hero-date-carnival {
    background: linear-gradient(135deg, #ff2d55 0%, #d63031 50%, #e74c3c 100%) !important;
    color: #fff !important;
    font-size: 0.9rem !important;
    font-weight: 800 !important;
    padding: 0.4rem 1.1rem !important;
    border-radius: 25px !important;
    text-transform: uppercase !important;
    letter-spacing: 1.5px !important;
    margin-left: 0.6rem !important;
    display: inline-block !important;
    vertical-align: middle !important;
    animation: pulse 1.5s ease-in-out infinite !important;
    box-shadow: 0 0 16px rgba(255, 45, 85, 0.7), 0 0 30px rgba(231, 76, 60, 0.3) !important;
    border: 2px solid rgba(255, 255, 255, 0.25) !important;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3) !important;
    position: relative !important;
    z-index: 10 !important;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 16px rgba(255, 45, 85, 0.7), 0 0 30px rgba(231, 76, 60, 0.3);
    }
    50% {
        transform: scale(1.08);
        box-shadow: 0 0 24px rgba(255, 45, 85, 0.9), 0 0 45px rgba(231, 76, 60, 0.5);
    }
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeInUp 1s ease 1.1s forwards;
}

.hero-scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    animation: bounce 2s infinite;
}
.hero-scroll svg { width: 30px; height: 30px; color: var(--accent); opacity: 0.6; }

/* === BUTTONS === */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 1.1rem 2.8rem;
    background: linear-gradient(135deg, var(--accent), var(--jpm-medium));
    color: var(--bg-darkest);
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(107, 157, 252, 0.3);
}
.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 40px rgba(107, 157, 252, 0.5);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 1.1rem 2.8rem;
    background: transparent;
    color: var(--accent);
    border: 1px solid rgba(107, 157, 252, 0.5);
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
}
.btn-secondary:hover {
    background: rgba(107, 157, 252, 0.1);
    border-color: var(--accent);
    transform: translateY(-3px);
}

/* === ANIMATIONS === */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

/* === PARTICLES === */
.particles-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}
.particle {
    position: absolute;
    width: 2px;
    height: 2px;
    background: var(--accent);
    border-radius: 50%;
    opacity: 0;
    animation: float-particle 10s infinite;
}
@keyframes float-particle {
    0% { opacity: 0; transform: translateY(100vh) scale(0); }
    10% { opacity: 0.6; }
    90% { opacity: 0.6; }
    100% { opacity: 0; transform: translateY(-10vh) scale(1); }
}

/* === SECTION COMMON === */
section {
    position: relative;
    z-index: 2;
}
.section-padding {
    padding: 7rem 2rem;
}
.container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 4.5rem;
}
.section-header h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 3.5vw, 3rem);
    color: var(--accent);
    margin-bottom: 0.8rem;
    text-shadow: 0 0 40px rgba(107, 157, 252, 0.2);
    letter-spacing: 4px;
    word-spacing: 8px;
}
.section-title-large {
    font-family: var(--font-heading) !important;
    font-size: clamp(1.3rem, 2.5vw, 1.8rem) !important;
    color: var(--accent) !important;
    font-weight: 600 !important;
    line-height: 1.4 !important;
    margin-bottom: 0.8rem;
}
.section-header p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}
.section-divider {
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
    margin: 1.2rem auto;
}

/* === ABOUT SECTION === */
.about {
    background: var(--bg-medium);
    position: relative;
}
.about::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(107, 157, 252, 0.04) 0%, transparent 70%);
    pointer-events: none;
}
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}
.about-image {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}
.about-image img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    transition: transform 0.6s;
}
.about-image:hover img { transform: scale(1.05); }
.about-image::after {
    content: '';
    position: absolute;
    inset: 0;
    border: 1px solid rgba(107, 157, 252, 0.25);
    border-radius: var(--radius);
    pointer-events: none;
}

.about-text h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--accent-light);
    margin-bottom: 1.5rem;
    line-height: 1.3;
    text-shadow: 0 0 30px rgba(139, 184, 255, 0.2);
}
.about-text p {
    color: var(--text-primary);
    margin-bottom: 1.2rem;
    font-size: 1.05rem;
    line-height: 1.8;
    text-shadow: 0 1px 8px rgba(0,0,0,0.5);
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.2rem;
    margin-top: 2.5rem;
}
.stat-item {
    text-align: center;
    padding: 1.8rem 1rem;
    background: var(--bg-card);
    border: 1px solid rgba(107, 157, 252, 0.2);
    border-radius: var(--radius-sm);
    transition: all 0.3s;
}
.stat-item:hover {
    border-color: var(--accent);
    box-shadow: 0 0 20px rgba(107, 157, 252, 0.1);
}
.stat-number {
    font-family: var(--font-display);
    font-size: 2.5rem;
    color: var(--accent);
    display: block;
    text-shadow: 0 0 20px rgba(107, 157, 252, 0.3);
}
.stat-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-top: 0.4rem;
    font-family: var(--font-heading);
}

/* === EXPERIENCES SECTION === */
.experiences {
    background: var(--bg-medium);
}
.exp-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}
.exp-card {
    background: rgba(5, 64, 96, 0.95);
    border: 1px solid rgba(107, 157, 252, 0.3);
    border-radius: var(--radius);
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}
.exp-card:hover {
    transform: translateY(-10px);
    border-color: rgba(107, 157, 252, 0.4);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5), 0 0 30px rgba(107, 157, 252, 0.1);
}
.exp-card-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}
.exp-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s;
}
.exp-card:hover .exp-card-image img { transform: scale(1.08); }
.exp-card-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60%;
    background: linear-gradient(transparent, var(--bg-card));
}
.exp-card-content {
    padding: 1.8rem;
}
.exp-card-tag {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent);
    background: rgba(107, 157, 252, 0.12);
    border: 1px solid rgba(107, 157, 252, 0.25);
    padding: 0.3rem 0.8rem;
    border-radius: 3px;
    margin-bottom: 1rem;
    font-family: var(--font-heading);
}
.exp-card-content h3 {
    font-family: var(--font-heading);
    font-size: 1rem;
    color: var(--cream);
    margin-bottom: 0.8rem;
    line-height: 1.3;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.exp-card-content p {
    color: var(--text-secondary);
    font-size: 0.92rem;
    line-height: 1.7;
}
.exp-pdf-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    margin-top: 1.2rem;
    padding: 0.55rem 1.2rem;
    background: var(--accent);
    color: var(--bg-darkest);
    font-size: 0.82rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 6px;
    letter-spacing: 0.5px;
    transition: all 0.3s;
}
.exp-pdf-btn:hover {
    background: var(--accent-light);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(107, 157, 252, 0.3);
}

/* === HIGHLIGHTS SECTION === */
.highlights {
    background: var(--bg-medium);
}
.highlights-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}
.highlight-item {
    text-align: center;
    padding: 2.5rem 1.5rem;
    background: var(--bg-card);
    border: 1px solid rgba(107, 157, 252, 0.12);
    border-radius: var(--radius);
    transition: all 0.3s;
}
.highlight-item:hover {
    border-color: rgba(107, 157, 252, 0.35);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}
.highlight-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(107, 157, 252, 0.1);
    border: 1px solid rgba(107, 157, 252, 0.3);
}
.highlight-icon svg {
    width: 26px;
    height: 26px;
    color: var(--accent);
}
.highlight-item h4 {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    color: var(--cream);
    margin-bottom: 0.8rem;
    font-weight: 600;
}
.highlight-item p {
    color: var(--text-muted);
    font-size: 0.88rem;
    line-height: 1.6;
}

/* === GALLERY SECTION === */
.gallery {
    background: var(--bg-dark);
}
.gallery-mosaic {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 280px);
    gap: 0.8rem;
}
.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-sm);
    cursor: pointer;
}
.gallery-item:nth-child(1) {
    grid-column: span 2;
    grid-row: span 2;
}
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s;
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(2, 44, 66, 0);
    transition: background 0.3s;
    border: 1px solid transparent;
    border-radius: var(--radius-sm);
}
.gallery-item:hover::after {
    background: rgba(2, 44, 66, 0.2);
    border-color: rgba(107, 157, 252, 0.3);
}

/* === ITINERARY SECTION === */
.itinerary {
    background: var(--bg-medium);
    position: relative;
}
.timeline {
    position: relative;
    padding-left: 3rem;
}
.timeline::before {
    content: '';
    position: absolute;
    left: 15px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, var(--accent), rgba(107, 157, 252, 0.1));
}
.timeline-item {
    position: relative;
    margin-bottom: 2rem;
    padding: 2rem;
    background: rgba(5, 64, 96, 0.7);
    border: 1px solid rgba(107, 157, 252, 0.2);
    border-radius: var(--radius);
    transition: all 0.3s;
}
.timeline-item:hover {
    border-color: rgba(107, 157, 252, 0.3);
    transform: translateX(5px);
}
.timeline-item::before {
    content: '';
    position: absolute;
    left: -2.35rem;
    top: 2.2rem;
    width: 12px;
    height: 12px;
    background: var(--accent);
    border-radius: 50%;
    border: 3px solid var(--bg-medium);
    box-shadow: 0 0 12px rgba(107, 157, 252, 0.4);
}
.timeline-day {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 0.5rem;
}
.timeline-item h4 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    color: var(--cream);
    margin-bottom: 0.8rem;
    font-weight: 600;
}
.timeline-item p {
    color: var(--text-primary);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* === PRICING SECTION === */
.pricing {
    background: var(--bg-medium);
}
.pricing-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1050px;
    margin: 0 auto;
}
.pricing-card {
    background: rgba(5, 64, 96, 0.7);
    border: 1px solid rgba(107, 157, 252, 0.2);
    border-radius: var(--radius);
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.4s;
    position: relative;
    overflow: hidden;
}
.pricing-card.featured {
    border-color: var(--accent);
    box-shadow: 0 0 40px rgba(107, 157, 252, 0.15);
    background: var(--bg-light);
}
.pricing-card.featured::before {
    content: 'MAIS POPULAR';
    position: absolute;
    top: 1.5rem;
    right: -2.5rem;
    background: var(--accent);
    color: var(--bg-darkest);
    font-family: var(--font-heading);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 2px;
    padding: 0.35rem 3.2rem;
    transform: rotate(45deg);
    white-space: nowrap;
    z-index: 2;
}
.pricing-card:hover {
    transform: translateY(-5px);
    border-color: rgba(107, 157, 252, 0.35);
}
.pricing-card.featured:hover {
    transform: translateY(-8px);
}
.pricing-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}
.pricing-icon svg {
    width: 36px;
    height: 36px;
    color: var(--accent);
}
.pricing-card h3 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--cream);
    margin-bottom: 0.3rem;
    font-weight: 700;
}
.pricing-card .room-type {
    font-size: 0.82rem;
    color: var(--text-muted);
    margin-bottom: 1.8rem;
}
.pricing-amount {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--accent);
    margin-bottom: 0.3rem;
    text-shadow: 0 0 20px rgba(107, 157, 252, 0.2);
}
.pricing-amount span {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-family: var(--font-body);
}
.pricing-installment {
    font-size: 0.88rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
}
.pricing-features {
    list-style: none;
    text-align: left;
    margin-bottom: 2rem;
}
.pricing-features li {
    padding: 0.5rem 0;
    font-size: 0.9rem;
    color: var(--text-secondary);
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
}
.pricing-features li svg {
    width: 16px;
    height: 16px;
    color: var(--accent);
    flex-shrink: 0;
    margin-top: 3px;
}

/* === FLIGHTS SECTION === */
.flights {
    background: var(--bg-dark);
    padding: 5rem 0;
}
.flights .section-header h2 {
    font-family: 'Cinzel', serif !important;
    letter-spacing: 3px !important;
    word-spacing: 6px !important;
}
.flights-airline {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
}
.airline-logo {
    max-width: 160px;
    height: auto;
    filter: drop-shadow(0 2px 8px rgba(107, 157, 252, 0.2));
    transition: transform 0.3s ease;
}
.airline-logo:hover {
    transform: scale(1.05);
}
.flights-table-wrapper {
    max-width: 900px;
    margin: 0 auto;
    overflow-x: auto;
}
.flights-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--bg-card);
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid rgba(107, 157, 252, 0.15);
}
.flights-table thead {
    background: linear-gradient(135deg, var(--accent) 0%, #4a7de0 100%);
}
.flights-table thead th {
    padding: 1.2rem 1.5rem;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--bg-dark);
    text-align: left;
    letter-spacing: 0.5px;
    white-space: nowrap;
}
.flights-table tbody td {
    padding: 1rem 1.5rem;
    color: var(--cream);
    font-size: 0.95rem;
    border-bottom: 1px solid rgba(107, 157, 252, 0.08);
    white-space: nowrap;
}
.flights-table tbody tr:last-child td {
    border-bottom: none;
}
.flights-table tbody tr:hover {
    background: rgba(107, 157, 252, 0.06);
}
.flights-table tbody td:first-child {
    font-weight: 500;
    color: var(--accent);
}

/* === CONDITIONS SECTION === */
.conditions {
    background: var(--bg-medium);
}
.conditions-box {
    background: var(--bg-card);
    border: 1px solid rgba(107, 157, 252, 0.15);
    border-radius: var(--radius);
    padding: 3rem;
    max-width: 800px;
    margin: 0 auto;
}
.conditions-box h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--accent);
    margin-bottom: 1.8rem;
    font-weight: 700;
}
.conditions-list { list-style: none; }
.conditions-list li {
    padding: 0.9rem 0;
    color: var(--text-secondary);
    font-size: 0.95rem;
    border-bottom: 1px solid rgba(107, 157, 252, 0.08);
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    line-height: 1.6;
}
.conditions-list li::before {
    content: '✦';
    color: var(--accent);
    flex-shrink: 0;
    margin-top: 2px;
}

/* === CTA SECTION === */
.cta-section {
    background: linear-gradient(135deg, var(--bg-medium) 0%, var(--bg-dark) 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}
.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(107, 157, 252, 0.04) 0%, transparent 60%);
    animation: pulse-glow 5s ease-in-out infinite;
}
@keyframes pulse-glow {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.05); }
}
.cta-section h2 {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    color: var(--accent);
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}
.cta-section p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
    line-height: 1.8;
}
.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}
.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 1.1rem 2.8rem;
    background: #25D366;
    color: #fff;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
}
.btn-whatsapp:hover {
    background: #20bd5a;
    transform: translateY(-3px);
    box-shadow: 0 10px 40px rgba(37, 211, 102, 0.4);
}
.btn-whatsapp svg { width: 22px; height: 22px; }

/* === FOOTER === */
.footer {
    background: var(--bg-darkest);
    padding: 3rem 2rem;
    text-align: center;
    border-top: 1px solid rgba(107, 157, 252, 0.1);
}
.footer-logo-img {
    height: 40px;
    margin: 0 auto 1.5rem auto;
    display: block;
    transition: opacity 0.3s;
}
.footer-logo-img:hover {
    opacity: 0.8;
}
.footer-info {
    color: var(--text-muted);
    font-size: 0.88rem;
    margin-bottom: 0.5rem;
}
.footer-info a {
    color: var(--accent);
    transition: color 0.3s;
}
.footer-info a:hover { color: var(--accent-light); }
.footer-copy {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(107, 157, 252, 0.08);
    color: var(--text-muted);
    font-size: 0.8rem;
    opacity: 0.6;
}

/* === FLOATING WHATSAPP === */
.floating-whatsapp {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 999;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: all 0.3s;
    animation: pulse-wa 2s infinite;
}
.floating-whatsapp:hover {
    transform: scale(1.1);
}
.floating-whatsapp svg { width: 30px; height: 30px; color: #fff; }
@keyframes pulse-wa {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4); }
    70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* === REVEAL ANIMATIONS === */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}
.reveal-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-left.visible {
    opacity: 1;
    transform: translateX(0);
}
.reveal-right {
    opacity: 0;
    transform: translateX(40px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* === RESPONSIVE === */
@media (max-width: 1024px) {
    .exp-cards { grid-template-columns: repeat(2, 1fr); }
    .highlights-grid { grid-template-columns: repeat(2, 1fr); }
    .pricing-cards { grid-template-columns: repeat(2, 1fr); }
    .pricing-card:last-child { grid-column: span 2; max-width: 400px; margin: 0 auto; }
}

@media (max-width: 768px) {
    .navbar { padding: 1rem 1.5rem; }
    .nav-links {
        display: none;
        position: fixed;
        top: 0; left: 0;
        width: 100%; height: 100vh;
        background: rgba(2, 44, 66, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
    }
    .nav-links.active { display: flex; }
    .menu-toggle { display: flex; }
    
    .about-grid { grid-template-columns: 1fr; gap: 2rem; }
    .about-image img { height: 300px; }
    .exp-cards { grid-template-columns: 1fr; }
    .highlights-grid { grid-template-columns: 1fr 1fr; }
    
    .gallery-mosaic {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(4, 180px);
    }
    .gallery-item:nth-child(1) { grid-column: span 2; grid-row: span 2; }
    
    .pricing-cards { grid-template-columns: 1fr; }
    .pricing-card.featured { transform: none; }
    .pricing-card:last-child { grid-column: span 1; }
    .pricing-card:hover, .pricing-card.featured:hover { transform: translateY(-5px); }
    
    .timeline { padding-left: 2.5rem; }
    .conditions-box { padding: 2rem 1.5rem; }
    .about-stats { grid-template-columns: 1fr 1fr; }
    .section-padding { padding: 4rem 1.5rem; }
}

@media (max-width: 480px) {
    .hero-title { font-size: 1.8rem; }
    .hero-buttons { flex-direction: column; align-items: center; }
    .btn-primary, .btn-secondary { width: 100%; max-width: 280px; justify-content: center; }
    .gallery-mosaic { grid-template-columns: 1fr; grid-template-rows: repeat(8, 180px); }
    .gallery-item:nth-child(1) { grid-column: span 1; }
    .highlights-grid { grid-template-columns: 1fr; }
    .about-stats { grid-template-columns: 1fr; }
}
