/* =========================================================
   LIVARE VIAGENS - CIRCUITO ANDINO (REFINED v2)
   Palette: Purple #2D1B69 | Orange #FF8C42 | Green #4CAF50
   ========================================================= */

/* =========================================================
   0. RESET & DESIGN TOKENS
   ========================================================= */
:root {
    --purple: #2D1B69;
    --purple-light: #3d2a8a;
    --purple-dark: #1a0f40;
    --purple-soft: #f0edf8;
    --orange: #FF8C42;
    --orange-dark: #e67730;
    --green: #4CAF50;
    --green-bright: #43A047;
    --green-dark: #388E3C;
    --red: #E53935;
    --white: #FFFFFF;
    --gray-50: #F8F9FA;
    --gray-100: #F5F5F5;
    --gray-200: #EEEEEE;
    --gray-300: #E0E0E0;
    --gray-600: #757575;
    --gray-800: #333333;
    --gray-900: #1a1a1a;
    --radius: 16px;
    --radius-sm: 12px;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 10px 40px rgba(0, 0, 0, 0.14);
    --transition: 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    --section-gap: 100px;
}

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--gray-800);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.text-center {
    text-align: center;
}

.mt-24 {
    margin-top: 24px;
}

.section {
    padding: var(--section-gap) 0;
}

.section-title {
    font-size: 3rem;
    font-weight: 800;
    color: var(--purple);
    text-align: center;
    margin-bottom: 14px;
    letter-spacing: 0px;
}

.section-subtitle {
    font-size: 1.15rem;
    color: var(--gray-600);
    text-align: center;
    margin-bottom: 52px;
    font-weight: 500;
}

/* =========================================================
   1. BUTTONS (Unified)
   ========================================================= */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px 36px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 1rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all var(--transition);
    border: 2px solid transparent;
    will-change: transform;
}

.btn:hover {
    transform: scale(1.05);
}

.btn-lg {
    padding: 18px 40px;
    font-size: 1.1rem;
}

.btn-xl {
    padding: 24px 52px;
    font-size: 1.25rem;
}

.btn-xxl {
    padding: 26px 56px;
    font-size: 1.35rem;
}


.btn-primary {
    background: var(--purple);
    color: var(--white);
    border-color: var(--purple);
}

.btn-primary:hover {
    background: var(--purple-light);
    box-shadow: 0 6px 24px rgba(45, 27, 105, 0.4);
}

.btn-success {
    background: var(--green);
    color: var(--white);
    border-color: var(--green);
}

.btn-success:hover {
    background: var(--green-dark);
    box-shadow: 0 6px 24px rgba(76, 175, 80, 0.45);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--purple);
}

.btn-outline-light {
    background: transparent;
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.5);
}

.btn-outline-light:hover {
    background: var(--white);
    color: var(--purple);
    border-color: var(--white);
}

.btn-outline-sm {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all var(--transition);
    background: transparent;
    color: var(--purple);
    border: 2px solid var(--purple);
    text-transform: uppercase;
}

.btn-outline-sm:hover {
    background: var(--purple);
    color: var(--white);
    transform: scale(1.05);
}

.btn-primary-sm {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all var(--transition);
    background: var(--orange);
    color: var(--white);
    border: 2px solid var(--orange);
    text-transform: uppercase;
}

.btn-primary-sm:hover {
    background: var(--orange-dark);
    border-color: var(--orange-dark);
    transform: scale(1.05);
}

.btn-success-sm {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all var(--transition);
    background: var(--green);
    color: var(--white);
    border: 2px solid var(--green);
    text-transform: uppercase;
}

.btn-success-sm:hover {
    background: var(--green-dark);
    border-color: var(--green-dark);
    transform: scale(1.05);
    box-shadow: 0 4px 16px rgba(76, 175, 80, 0.4);
}

.btn-full {
    width: 100%;
    margin-top: 12px;
}

.btn-pulse {
    animation: ctaPulse 2.5s ease-in-out infinite;
}

/* =========================================================
   2. STICKY HEADER
   ========================================================= */
.sticky-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: all 0.3s ease;
    background: transparent;
}

.sticky-header.scrolled {
    background: rgba(45, 27, 105, 0.95);
    backdrop-filter: blur(14px);
    padding: 10px 0;
    box-shadow: 0 2px 24px rgba(0, 0, 0, 0.18);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-logo {
    height: 40px;
    width: auto;
    filter: brightness(0) invert(1);
}

.sticky-header.scrolled .header-logo {
    height: 32px;
}

.header-nav {
    display: flex;
    gap: 28px;
}

.header-nav a {
    color: rgba(255, 255, 255, 0.85);
    font-weight: 600;
    font-size: 0.9rem;
    transition: color 0.2s;
}

.header-nav a:hover {
    color: var(--orange);
}

.header-cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--orange);
    color: var(--white);
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.85rem;
    transition: all var(--transition);
}

.header-cta:hover {
    background: var(--orange-dark);
    transform: scale(1.05);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.hamburger span {
    width: 24px;
    height: 2px;
    background: var(--white);
    transition: all 0.3s ease;
    border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* =========================================================
   3. HERO
   ========================================================= */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 140px 0 100px;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    z-index: 1;
    animation: kenBurns 12s ease-in-out infinite alternate;
    will-change: transform;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(45, 27, 105, 0.35) 0%, rgba(0, 0, 0, 0.55) 50%, rgba(0, 0, 0, 0.8) 100%);
    z-index: 2;
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 3;
    overflow: hidden;
    pointer-events: none;
}

.particle {
    position: absolute;
    bottom: -10%;
    background: rgba(255, 255, 255, 0.35);
    border-radius: 50%;
    box-shadow: 0 0 8px rgba(255, 255, 255, 0.6);
    animation: floatParticle linear infinite;
    will-change: transform, opacity;
}

.hero-content {
    position: relative;
    z-index: 4;
    text-align: center;
    color: var(--white);
}

.hero-logo {
    max-width: 360px;
    margin: 0 auto 44px;
    filter: brightness(0) invert(1);
}

.hero-title {
    font-size: 3.6rem;
    font-weight: 800;
    margin-bottom: 24px;
    line-height: 1.1;
    text-shadow: 0 4px 24px rgba(0, 0, 0, 0.5);
    letter-spacing: -0.5px;
}

.hero-subtitle {
    font-size: 1.15rem;
    font-weight: 500;
    max-width: 640px;
    margin: 0 auto 40px;
    line-height: 1.75;
    opacity: 0.92;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-downloads {
    margin-top: 24px;
    font-size: 0.9rem;
    font-weight: 600;
    opacity: 0.7;
    letter-spacing: 0.5px;
}

/* Hero Promo Badge */
.hero-promo-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: var(--white);
    padding: 10px 28px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-bottom: 24px;
}

/* =========================================================
   4. PACKAGE CARDS
   ========================================================= */
.section-packages {
    background: var(--gray-50);
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.package-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all var(--transition);
}

.package-card:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-6px);
}

.package-image {
    height: 300px;
    background-size: cover;
    background-position: center;
    position: relative;
    filter: brightness(1.05) contrast(1.08) saturate(1.15);
}

.package-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 1px;
    color: var(--white);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.badge-orange {
    background: var(--orange);
}

.badge-pink {
    background: linear-gradient(135deg, #e84393, #fd79a8);
}

.package-body {
    padding: 32px;
}

.package-body h3 {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--purple);
    margin-bottom: 14px;
}

.package-desc {
    color: var(--gray-600);
    font-size: 1rem;
    line-height: 1.75;
    margin-bottom: 20px;
}

.package-icons {
    display: flex;
    gap: 20px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.pkg-icon {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--gray-800);
}

.pkg-icon svg {
    color: var(--orange);
}

/* App Offer Box (replaces prices) */
.app-offer-box {
    background: var(--purple-soft);
    border-radius: var(--radius-sm);
    padding: 20px;
    margin-bottom: 24px;
    text-align: center;
}

.app-offer-badge {
    display: inline-block;
    background: var(--purple);
    color: var(--white);
    padding: 8px 24px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 800;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
}

.app-offer-box p {
    font-size: 0.9rem;
    color: var(--gray-800);
    font-weight: 600;
    margin-bottom: 4px;
}

.app-offer-bonus {
    color: var(--green) !important;
    font-weight: 700 !important;
}

.package-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

/* =========================================================
   5. FEATURES / DIFERENCIAIS
   ========================================================= */
.section-features {
    background: var(--white);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.feature-item {
    text-align: center;
    padding: 36px 20px;
    border-radius: var(--radius);
    transition: all var(--transition);
}

.feature-item:hover {
    background: var(--gray-50);
    transform: translateY(-6px);
    box-shadow: var(--shadow);
}

.feature-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--purple), var(--purple-light));
    color: var(--white);
}

.feature-item h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 10px;
}

.feature-item p {
    font-size: 0.9rem;
    color: var(--gray-600);
    line-height: 1.65;
}

/* =========================================================
   6. APP SECTION
   ========================================================= */
.section-app {
    background: linear-gradient(180deg, var(--purple-soft) 0%, var(--white) 100%);
    padding: 120px 0;
}

.app-highlight-banner {
    text-align: center;
    background: var(--orange);
    color: var(--white);
    padding: 20px 40px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 1.05rem;
    letter-spacing: 0.5px;
    margin-bottom: 40px;
    display: inline-block;
    width: auto;
    margin-left: auto;
    margin-right: auto;
    box-shadow: 0 6px 24px rgba(255, 140, 66, 0.4);
}

.section-app .container {
    text-align: center;
}

.section-app .section-title {
    margin-top: 0;
}

.app-flex {
    display: flex;
    align-items: center;
    gap: 60px;
    text-align: left;
}

.app-mockup {
    flex: 0 0 340px;
}

.app-mockup img {
    border-radius: var(--radius);
    box-shadow: var(--shadow-hover);
}

.app-benefits {
    flex: 1;
}

.benefits-list li {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--gray-800);
    padding: 18px 0;
    border-bottom: 1px solid var(--gray-200);
}

.benefits-list li:last-child {
    border-bottom: none;
}

.check-icon {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(76, 175, 80, 0.12);
    border-radius: 50%;
}

.app-benefits .btn {
    margin-top: 28px;
    box-shadow: 0 6px 24px rgba(76, 175, 80, 0.4);
}

/* =========================================================
   7. DEPARTURES
   ========================================================= */
.section-departures {
    background: var(--white);
    margin-top: 20px;
}

.departures-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.departure-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all var(--transition);
}

.departure-card:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-8px);
}

.departure-img {
    height: 200px;
    background-size: cover;
    background-position: center;
    position: relative;
    filter: saturate(1.1);
}

.departure-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 1px;
    color: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.25);
}

.badge-red {
    background: var(--red);
}

.badge-warm {
    background: var(--orange);
}

.badge-green {
    background: var(--green);
}

.badge-new {
    background: linear-gradient(135deg, var(--purple), #7c3aed);
}

.departure-body {
    padding: 22px;
}

.departure-body h4 {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--purple);
    margin-bottom: 10px;
}

.departure-date {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--gray-800);
    margin-bottom: 6px;
}

.departure-date svg {
    color: var(--orange);
}

.departure-app-hint {
    font-size: 0.82rem;
    color: var(--gray-600);
    font-style: italic;
    margin-bottom: 4px;
}

/* =========================================================
   8. GALLERY
   ========================================================= */
.section-gallery {
    background: var(--gray-50);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.gallery-item {
    position: relative;
    border-radius: var(--radius-sm);
    overflow: hidden;
    aspect-ratio: 4/3;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    filter: contrast(1.05) saturate(1.1);
    image-rendering: -webkit-optimize-contrast;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(45, 27, 105, 0.65);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.35s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay span {
    color: var(--white);
    font-weight: 700;
    font-size: 1rem;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

/* =========================================================
   9. STATS STRIP
   ========================================================= */
.stats-strip {
    background: linear-gradient(135deg, var(--purple-dark), var(--purple));
    padding: 64px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 4rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1.2;
}

.stat-label {
    display: block;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
    margin-top: 4px;
}

/* =========================================================
   10. TESTIMONIALS
   ========================================================= */
.section-testimonials {
    background: var(--gray-100);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.testimonial-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 32px;
    box-shadow: var(--shadow);
    transition: all var(--transition);
}

.testimonial-card:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-6px);
}

.testi-stars {
    font-size: 1.5rem;
    color: #FFB400;
    margin-bottom: 16px;
    letter-spacing: 3px;
}

.testimonial-card p {
    font-size: 1rem;
    color: var(--gray-600);
    line-height: 1.75;
    font-style: italic;
    margin-bottom: 24px;
}

.testi-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testi-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--purple), var(--orange));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 800;
    font-size: 0.95rem;
}

.testi-author strong {
    display: block;
    font-size: 0.92rem;
    color: var(--gray-900);
}

.testi-author span {
    display: block;
    font-size: 0.78rem;
    color: var(--gray-600);
}

/* =========================================================
   11. CTA FINAL (Impossible to Ignore)
   ========================================================= */
.section-cta {
    background: linear-gradient(135deg, var(--purple-dark) 0%, var(--purple) 50%, var(--purple-light) 100%);
    color: var(--white);
    padding: 140px 0;
}

.cta-layout {
    display: flex;
    align-items: center;
    gap: 60px;
}

.cta-text {
    flex: 1;
}

.cta-title {
    font-size: 3.4rem;
    font-weight: 800;
    margin-bottom: 16px;
    line-height: 1.15;
    letter-spacing: -0.5px;
}

.cta-urgency {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--orange);
    margin-bottom: 16px;
}

.cta-desc {
    font-size: 1.1rem;
    opacity: 0.85;
    max-width: 520px;
    line-height: 1.75;
    margin-bottom: 36px;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 24px;
}

.cta-mini-badges {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    font-size: 1rem;
    font-weight: 600;
    opacity: 0.8;
}

.cta-qr {
    flex: 0 0 auto;
}

.qr-box {
    text-align: center;
    background: rgba(255, 255, 255, 0.08);
    border-radius: var(--radius);
    padding: 32px 28px;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.qr-placeholder {
    width: 140px;
    height: 140px;
    margin: 0 auto 16px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px dashed rgba(255, 255, 255, 0.2);
}

.qr-box p {
    font-size: 0.9rem;
    font-weight: 600;
    opacity: 0.85;
    line-height: 1.4;
}

.qr-arrow {
    font-size: 2rem;
    display: block;
    margin-top: 8px;
    opacity: 0.5;
    animation: bounceArrow 1.5s ease-in-out infinite;
}

/* Store Badges */
.store-badges {
    display: flex;
    gap: 16px;
    margin-top: 20px;
    margin-bottom: 12px;
    flex-wrap: wrap;
}

.store-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 10px 22px;
    border-radius: 10px;
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--white);
    transition: all 0.3s ease;
}

.store-badge:hover {
    background: rgba(255, 255, 255, 0.18);
}


/* =========================================================
   12. FOOTER
   ========================================================= */
.footer {
    background: var(--gray-900);
    color: rgba(255, 255, 255, 0.7);
    padding: 72px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    max-width: 160px;
    margin-bottom: 16px;
    filter: brightness(0) invert(1);
}

.footer-slogan {
    font-style: italic;
    margin-bottom: 12px;
    font-size: 0.9rem;
}

.footer-info,
.footer-address {
    font-size: 0.85rem;
    line-height: 1.6;
    margin-bottom: 8px;
}

.footer-col h4 {
    color: var(--white);
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    font-size: 0.88rem;
    transition: color 0.2s;
}

.footer-col ul li a:hover {
    color: var(--orange);
    text-decoration: underline;
}

.social-icons {
    display: flex;
    gap: 12px;
    margin-top: 8px;
}

.social-link {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--orange);
    color: var(--white);
    transform: scale(1.1);
}

.newsletter-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 28px 32px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius);
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.newsletter-text strong {
    display: block;
    color: var(--white);
    font-size: 1rem;
}

.newsletter-text span {
    font-size: 0.85rem;
}

.newsletter-form {
    display: flex;
    gap: 8px;
}

.newsletter-form input {
    padding: 14px 24px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.08);
    color: var(--white);
    font-family: inherit;
    font-size: 1rem;
    min-width: 280px;
    outline: none;
    transition: border-color 0.3s;
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.newsletter-form input:focus {
    border-color: var(--orange);
}

.trust-badges {
    display: flex;
    justify-content: center;
    gap: 36px;
    padding: 24px 0 32px;
    flex-wrap: wrap;
}

.trust-badge {
    font-size: 0.82rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.55);
    letter-spacing: 1px;
}

.footer-copyright {
    text-align: center;
    padding: 24px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.35);
}

/* =========================================================
   13. WHATSAPP FLOAT
   ========================================================= */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 62px;
    height: 62px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.25);
    z-index: 999;
    transition: all var(--transition);
    animation: waPulse 2s infinite cubic-bezier(0.66, 0, 0, 1);
}

.whatsapp-float:hover {
    transform: scale(1.12);
    animation: none;
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.5);
}

/* =========================================================
   14. KEYFRAMES
   ========================================================= */
@keyframes kenBurns {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.15);
    }
}

@keyframes floatParticle {
    0% {
        transform: translateY(0) translateX(0);
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    90% {
        opacity: 1;
    }

    100% {
        transform: translateY(-110vh) translateX(30px);
        opacity: 0;
    }
}

@keyframes waPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7), 0 4px 18px rgba(0, 0, 0, 0.25);
    }

    70% {
        box-shadow: 0 0 0 22px rgba(37, 211, 102, 0), 0 4px 18px rgba(0, 0, 0, 0.25);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0), 0 4px 18px rgba(0, 0, 0, 0.25);
    }
}

@keyframes ctaPulse {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(76, 175, 80, 0.5);
    }

    50% {
        box-shadow: 0 0 0 14px rgba(76, 175, 80, 0);
    }
}

@keyframes bounceArrow {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

/* Scroll Reveal */
.scroll-reveal {
    opacity: 0;
    transform: translateY(34px);
    transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.scroll-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* =========================================================
   15. RESPONSIVE
   ========================================================= */
@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .departures-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .cta-layout {
        flex-direction: column;
        text-align: center;
    }

    .cta-text {
        max-width: 600px;
    }

    .cta-buttons {
        justify-content: center;
    }

    .cta-mini-badges {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    :root {
        --section-gap: 60px;
    }

    .section-title {
        font-size: 1.9rem;
    }

    .section-subtitle {
        font-size: 1rem;
        margin-bottom: 36px;
    }

    .header-nav {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(45, 27, 105, 0.98);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 32px;
        z-index: 998;
    }

    .header-nav.open {
        display: flex;
    }

    .header-nav a {
        font-size: 1.3rem;
        color: var(--white);
    }

    .header-cta {
        display: none;
    }

    .hamburger {
        display: flex;
        z-index: 999;
    }

    .hero {
        padding: 100px 0 60px;
    }

    .hero-title {
        font-size: 2.4rem;
    }

    .hero-promo-badge {
        font-size: 0.78rem;
        padding: 8px 20px;
    }

    .hero-subtitle {
        font-size: 0.95rem;
    }

    .hero-logo {
        max-width: 250px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .hero-buttons .btn {
        width: 100%;
        max-width: 340px;
    }

    .packages-grid {
        grid-template-columns: 1fr;
    }

    .package-image {
        height: 240px;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .app-flex {
        flex-direction: column;
        text-align: center;
    }

    .app-mockup {
        flex: none;
        max-width: 280px;
        margin: 0 auto;
    }

    .section-app {
        padding: 80px 0;
    }

    .store-badges {
        justify-content: center;
    }

    .departures-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stat-number {
        font-size: 2.2rem;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .cta-title {
        font-size: 2.4rem;
    }

    .section-cta {
        padding: 100px 0;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-buttons .btn {
        width: 100%;
        max-width: 340px;
    }

    .cta-mini-badges {
        flex-direction: column;
        align-items: center;
        gap: 8px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .newsletter-bar {
        flex-direction: column;
        text-align: center;
    }

    .newsletter-form {
        flex-direction: column;
        width: 100%;
    }

    .newsletter-form input {
        min-width: auto;
        width: 100%;
    }

    .package-buttons {
        flex-direction: column;
    }

    .package-buttons>* {
        width: 100%;
    }

    .whatsapp-float {
        width: 56px;
        height: 56px;
        bottom: 20px;
        right: 20px;
    }

    .whatsapp-float svg {
        width: 28px;
        height: 28px;
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .hero-title {
        font-size: 1.8rem;
    }
}

/* =========================================================
   16. PREFERS REDUCED MOTION
   ========================================================= */
@media (prefers-reduced-motion: reduce) {

    *,
    ::before,
    ::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }

    .scroll-reveal {
        opacity: 1;
        transform: none;
    }
}