/* ================================================== */
/* 808 WORK AND TRAVEL - CSS v4                       */
/* Estilo G4 Traction - Premium & Moderno             */
/* ================================================== */

/* ================================================== */
/* 1. CSS VARIABLES                                   */
/* ================================================== */
:root {
    /* Primary Colors */
    --orange-primary: #ED5300;
    --orange-light: #FF6B4A;
    --orange-dark: #D94035;
    --orange-glow: rgba(237, 83, 0, 0.3);

    /* Neutral Colors */
    --white: #FFFFFF;
    --beige: #e07830;
    --beige-light: #f2a779;
    --gray-100: #F5F5F5;
    --gray-200: #E5E5E5;
    --gray-300: #D4D4D4;
    --gray-400: #A3A3A3;
    --gray-500: #737373;
    --gray-600: #525252;
    --gray-700: #404040;
    --gray-800: #262626;
    --gray-900: #171717;

    /* Text Colors */
    --text-primary: #1A1A1A;
    --text-secondary: #525252;
    --text-muted: #737373;
    --text-light: #A3A3A3;

    /* Background Colors */
    --bg-primary: #FFFFFF;
    --bg-secondary: #f7c9a5;
    --bg-dark: #1A1A1A;

    /* Gradients */
    --gradient-hero: linear-gradient(180deg, #fef6f0 0%, #FFFFFF 100%);
    --gradient-orange: linear-gradient(135deg, #ED5300 0%, #FF6B4A 100%);
    --gradient-dark: linear-gradient(180deg, #1A1A1A 0%, #262626 100%);

    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    --shadow-orange: 0 10px 30px rgba(237, 83, 0, 0.3);

    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

    /* Font Sizes */
    --text-xs: 0.75rem;
    --text-sm: 0.875rem;
    --text-base: 1rem;
    --text-lg: 1.125rem;
    --text-xl: 1.25rem;
    --text-2xl: 1.5rem;
    --text-3xl: 1.875rem;
    --text-4xl: 2.25rem;
    --text-5xl: 3rem;
    --text-6xl: 3.75rem;

    /* Font Weights */
    --font-normal: 400;
    --font-medium: 500;
    --font-semibold: 600;
    --font-bold: 700;
    --font-extrabold: 800;

    /* Spacing */
    --space-1: 0.25rem;
    --space-2: 0.5rem;
    --space-3: 0.75rem;
    --space-4: 1rem;
    --space-5: 1.25rem;
    --space-6: 1.5rem;
    --space-8: 2rem;
    --space-10: 2.5rem;
    --space-12: 3rem;
    --space-16: 4rem;
    --space-20: 5rem;
    --space-24: 6rem;

    /* Border Radius */
    --radius-sm: 0.25rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-2xl: 1.5rem;
    --radius-full: 9999px;

    /* Transitions */
    --transition-fast: 0.15s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;

    /* Z-index */
    --z-dropdown: 100;
    --z-sticky: 200;
    --z-modal: 300;
    --z-tooltip: 400;

    /* Container */
    --container-max: 1280px;
    --container-padding: 1.5rem;
}

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

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

body {
    font-family: var(--font-primary);
    font-size: var(--text-base);
    font-weight: var(--font-normal);
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--bg-primary);
    overflow-x: hidden;
}

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

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

ul, ol {
    list-style: none;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

input, select, textarea {
    font-family: inherit;
    font-size: inherit;
}

/* ================================================== */
/* 3. LAYOUT                                          */
/* ================================================== */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

section {
    padding: var(--space-20) 0;
}

/* ================================================== */
/* 4. TYPOGRAPHY                                      */
/* ================================================== */
h1, h2, h3, h4, h5, h6 {
    font-weight: var(--font-bold);
    line-height: 1.2;
    color: var(--text-primary);
}

h1 {
    font-size: clamp(2.25rem, 5vw, 3.75rem);
    font-weight: var(--font-extrabold);
}

h2 {
    font-size: clamp(1.875rem, 4vw, 3rem);
}

h3 {
    font-size: clamp(1.25rem, 2.5vw, 1.5rem);
}

p {
    color: var(--text-secondary);
}

.highlight {
    color: var(--orange-primary);
}

/* ================================================== */
/* 5. BUTTONS                                         */
/* ================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
    padding: var(--space-3) var(--space-6);
    font-size: var(--text-sm);
    font-weight: var(--font-semibold);
    border-radius: var(--radius-full);
    transition: all var(--transition-base);
    white-space: nowrap;
}

.btn-primary {
    background: var(--gradient-orange);
    color: var(--white);
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-orange);
}

.btn-outline {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid var(--gray-200);
}

.btn-outline:hover {
    border-color: var(--orange-primary);
    color: var(--orange-primary);
}

.btn-whatsapp {
    background: #25D366;
    color: var(--white);
}

.btn-whatsapp:hover {
    background: #128C7E;
    transform: translateY(-2px);
}

.btn-lg {
    padding: var(--space-4) var(--space-8);
    font-size: var(--text-base);
}

.btn-block {
    width: 100%;
}

/* ================================================== */
/* 6. SECTION HEADERS                                 */
/* ================================================== */
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto var(--space-12);
}

.section-badge {
    display: inline-block;
    padding: var(--space-2) var(--space-4);
    background: var(--beige);
    color: var(--orange-primary);
    font-size: var(--text-sm);
    font-weight: var(--font-semibold);
    border-radius: var(--radius-full);
    margin-bottom: var(--space-4);
}

.section-title {
    margin-bottom: var(--space-4);
}

.section-subtitle {
    font-size: var(--text-lg);
    color: var(--text-secondary);
}

/* ================================================== */
/* 7. NAVBAR                                          */
/* ================================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: var(--z-sticky);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    transition: all var(--transition-base);
}

.navbar.scrolled {
    box-shadow: var(--shadow-md);
}

.navbar-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.navbar-logo img {
    height: 48px;
    width: auto;
    border-radius: var(--radius-md);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: var(--space-8);
}

.nav-links a {
    font-size: var(--text-sm);
    font-weight: var(--font-medium);
    color: var(--text-secondary);
    transition: color var(--transition-fast);
}

.nav-links a:hover {
    color: var(--orange-primary);
}

.navbar-cta {
    display: none;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: var(--space-2);
}

.mobile-menu-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    transition: all var(--transition-fast);
}

/* ================================================== */
/* 8. HERO                                            */
/* ================================================== */
.hero {
    position: relative;
    padding-top: 140px;
    padding-bottom: 80px;
    background: var(--gradient-hero);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('assets/usa_flag_bg.jpg') center center / cover no-repeat;
    opacity: 0.08;
    z-index: 0;
}

.hero-container {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-12);
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-2) var(--space-4);
    background: rgba(237, 83, 0, 0.1);
    color: var(--orange-primary);
    font-size: var(--text-sm);
    font-weight: var(--font-semibold);
    border-radius: var(--radius-full);
    margin-bottom: var(--space-6);
}

.hero-title {
    margin-bottom: var(--space-6);
}

.hero-subtitle {
    font-size: var(--text-xl);
    color: var(--text-secondary);
    margin-bottom: var(--space-8);
}

.hero-subtitle strong {
    color: var(--orange-primary);
}

.hero-ctas {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-4);
    margin-bottom: var(--space-8);
}

.hero-trust {
    display: flex;
    gap: var(--space-8);
}

.trust-item {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    color: var(--text-secondary);
    font-size: var(--text-sm);
}

.trust-item i {
    color: var(--orange-primary);
}

.hero-media {
    position: relative;
}

.hero-image-wrapper {
    position: relative;
}

.hero-image {
    width: 100%;
    max-width: 500px;
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-2xl);
}

.floating-badge {
    position: absolute;
    display: flex;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-3) var(--space-4);
    background: var(--white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    font-size: var(--text-sm);
    font-weight: var(--font-semibold);
}

.floating-badge i {
    color: var(--orange-primary);
}

.badge-top {
    top: 20%;
    right: -20px;
    animation: float 3s ease-in-out infinite;
}

.badge-bottom {
    bottom: 20%;
    left: -20px;
    animation: float 3s ease-in-out infinite 0.5s;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.hero-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
}

.hero-wave svg {
    display: block;
    width: 100%;
}

/* ================================================== */
/* 9. STATS                                           */
/* ================================================== */
.stats {
    background: var(--white);
    padding: var(--space-16) 0;
}

.stats-title {
    display: inline-block;
    background: var(--orange-primary);
    color: var(--white);
    font-size: var(--text-sm);
    font-weight: 600;
    padding: 8px 20px;
    border-radius: 999px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: var(--space-10);
}

.stats .container {
    text-align: center;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-8);
    text-align: center;
}

.stat-item {
    padding: var(--space-6);
}

.stat-number {
    font-size: var(--text-5xl);
    font-weight: var(--font-extrabold);
    color: var(--orange-primary);
    line-height: 1;
    margin-bottom: var(--space-2);
}

.stat-label {
    font-size: var(--text-sm);
    color: var(--text-secondary);
    font-weight: var(--font-medium);
}

/* ================================================== */
/* 10. WHY INTERCAMBIO                                */
/* ================================================== */
.why-intercambio {
    background: var(--beige);
    position: relative;
}

.why-intercambio::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('assets/fazenda_agricola_bg.webp') center center / cover no-repeat;
    opacity: 0.18;
    z-index: 0;
}

.why-intercambio > * {
    position: relative;
    z-index: 1;
}

.why-intercambio .section-title,
.why-intercambio .section-subtitle {
    color: var(--white);
}

.why-intercambio .section-badge {
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-6);
}

.why-card {
    background: var(--white);
    padding: var(--space-8);
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
}

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

.why-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(237, 83, 0, 0.1);
    border-radius: var(--radius-xl);
    margin-bottom: var(--space-6);
}

.why-icon i {
    font-size: var(--text-2xl);
    color: var(--orange-primary);
}

.why-card h3 {
    margin-bottom: var(--space-3);
}

.why-card p {
    font-size: var(--text-sm);
    margin-bottom: var(--space-4);
}

.why-stat {
    display: flex;
    align-items: baseline;
    gap: var(--space-2);
    padding-top: var(--space-4);
    border-top: 1px solid var(--gray-200);
}

.stat-highlight {
    font-size: var(--text-2xl);
    font-weight: var(--font-bold);
    color: var(--orange-primary);
}

.why-stat span:last-child {
    font-size: var(--text-sm);
    color: var(--text-muted);
}

/* ================================================== */
/* 11. METODOLOGIA / TIMELINE                         */
/* ================================================== */
.metodologia {
    background: var(--white);
}

.metodologia-cta {
    text-align: center;
    margin-top: var(--space-12);
}

.timeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-6);
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 35px;
    left: 12.5%;
    right: 12.5%;
    height: 2px;
    background: var(--gray-200);
    z-index: 0;
}

.timeline-item {
    position: relative;
    z-index: 1;
}

.timeline-marker {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-orange);
    border-radius: 50%;
    margin: 0 auto var(--space-6);
    box-shadow: var(--shadow-orange);
}

.timeline-marker span {
    font-size: var(--text-xl);
    font-weight: var(--font-bold);
    color: var(--white);
}

.timeline-content {
    background: #f5f5f5;
    padding: var(--space-6);
    border-radius: var(--radius-xl);
    transition: all var(--transition-base);
}

.timeline-content:hover {
    box-shadow: var(--shadow-lg);
}

.timeline-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--space-3);
    flex-wrap: wrap;
    gap: var(--space-2);
}

.timeline-header h3 {
    font-size: var(--text-lg);
}

.timeline-duration {
    font-size: var(--text-xs);
    color: var(--text-muted);
    background: var(--white);
    padding: var(--space-1) var(--space-3);
    border-radius: var(--radius-full);
}

.timeline-duration.badge-exclusive {
    background: var(--orange-primary);
    color: var(--white);
}

.timeline-content > p {
    font-size: var(--text-sm);
    margin-bottom: var(--space-4);
}

.timeline-checklist {
    display: flex;
    flex-direction: column;
    gap: var(--space-2);
}

.timeline-checklist li {
    display: flex;
    align-items: flex-start;
    gap: var(--space-2);
    font-size: var(--text-sm);
    color: var(--text-secondary);
}

.timeline-checklist i {
    color: var(--orange-primary);
    margin-top: 3px;
}

.exclusive-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    margin-top: var(--space-4);
    padding: var(--space-2) var(--space-3);
    background: rgba(237, 83, 0, 0.1);
    color: var(--orange-primary);
    font-size: var(--text-xs);
    font-weight: var(--font-semibold);
    border-radius: var(--radius-full);
}

/* ================================================== */
/* 12. VISTOS                                         */
/* ================================================== */
.vistos {
    background: var(--beige);
    position: relative;
}

.vistos::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('assets/vistos_bg.webp') center center / cover no-repeat;
    opacity: 0.15;
    z-index: 0;
}

.vistos > * {
    position: relative;
    z-index: 1;
}

.vistos .section-title,
.vistos .section-subtitle {
    color: var(--white);
}

.vistos .section-badge {
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
}

/* Carrossel de Vistos (Swiper) */
.vistos-swiper {
    width: 100%;
    padding: var(--space-8) 0;
    position: relative;
}

.vistos-swiper .swiper-slide {
    width: 280px;
    height: auto;
}

.visto-card {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
}

.visto-card:hover {
    transform: scale(1.03);
    box-shadow: var(--shadow-xl);
}

.visto-card img {
    width: 100%;
    height: 350px;
    object-fit: cover;
}

.vistos-prev,
.vistos-next {
    color: var(--white) !important;
    background: rgba(0, 0, 0, 0.5);
    width: 44px !important;
    height: 44px !important;
    border-radius: 50%;
}

.vistos-prev::after,
.vistos-next::after {
    font-size: 18px !important;
}

.vistos-pagination .swiper-pagination-bullet {
    background: var(--white);
    opacity: 0.5;
}

.vistos-pagination .swiper-pagination-bullet-active {
    background: var(--orange-primary);
    opacity: 1;
}

.visto-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: var(--space-4);
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
    display: flex;
    align-items: center;
    gap: var(--space-2);
    color: var(--white);
}

.visto-overlay i {
    color: #4ade80;
    font-size: var(--text-xl);
}

.visto-overlay span {
    font-weight: var(--font-semibold);
}

/* ================================================== */
/* 13. DEPOIMENTOS (Carrossel 9:16)                   */
/* ================================================== */
.depoimentos {
    background: var(--white);
}

/* Carrossel de Depoimentos */
.depoimentos-swiper {
    width: 100%;
    padding: var(--space-8) 0;
    position: relative;
}

.depoimentos-swiper .swiper-slide {
    width: 280px;
    height: auto;
}

.depoimentos-prev,
.depoimentos-next {
    color: var(--orange-primary) !important;
    background: var(--white);
    width: 44px !important;
    height: 44px !important;
    border-radius: 50%;
    box-shadow: var(--shadow-md);
}

.depoimentos-prev::after,
.depoimentos-next::after {
    font-size: 18px !important;
}

.depoimentos-pagination .swiper-pagination-bullet {
    background: var(--gray-300);
    opacity: 1;
}

.depoimentos-pagination .swiper-pagination-bullet-active {
    background: var(--orange-primary);
    width: 24px;
    border-radius: 4px;
}

/* Fallback grid (não usado) */
.depoimentos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-6);
}

.depoimento-card {
    background: var(--white);
    border-radius: var(--radius-2xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: all var(--transition-base);
}

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

.depoimento-media {
    position: relative;
    aspect-ratio: 9/16;
    background: var(--gray-900);
}

.depoimento-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    box-shadow: var(--shadow-xl);
    transition: all var(--transition-base);
    z-index: 10;
}

.play-button i {
    font-size: var(--text-xl);
    color: var(--orange-primary);
    margin-left: 4px;
}

.play-button:hover {
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow: var(--shadow-orange);
}

/* ================================================== */
/* 14. DIFERENCIAIS                                   */
/* ================================================== */
.diferenciais {
    background: var(--beige);
    position: relative;
    overflow: hidden;
}

.diferenciais::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('assets/diferenciais_bg.png') center center / cover no-repeat;
    opacity: 0.15;
    z-index: 0;
}

.diferenciais > * {
    position: relative;
    z-index: 1;
}

.diferenciais .section-title,
.diferenciais .section-subtitle {
    color: var(--white);
}

.diferenciais .section-badge {
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
}

.diferenciais-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-6);
}

.diferencial-card {
    background: var(--white);
    padding: var(--space-8);
    border-radius: var(--radius-2xl);
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
}

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

.diferencial-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-orange);
    border-radius: 50%;
    margin: 0 auto var(--space-6);
    box-shadow: var(--shadow-orange);
}

.diferencial-icon i {
    font-size: var(--text-3xl);
    color: var(--white);
}

.diferencial-card h3 {
    margin-bottom: var(--space-3);
}

.diferencial-card p {
    font-size: var(--text-sm);
}

/* ================================================== */
/* 15. PLANOS                                         */
/* ================================================== */
.planos {
    background: var(--white);
}

.planos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-6);
    align-items: start;
}

.plano-card {
    position: relative;
    background: var(--white);
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-2xl);
    padding: var(--space-8);
    text-align: center;
    transition: all var(--transition-base);
}

.plano-card:hover {
    border-color: var(--orange-primary);
    box-shadow: var(--shadow-xl);
}

.plano-card.featured {
    border-color: var(--orange-primary);
    transform: scale(1.05);
    box-shadow: var(--shadow-xl);
}

.plano-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    padding: var(--space-2) var(--space-4);
    background: var(--gradient-orange);
    color: var(--white);
    font-size: var(--text-xs);
    font-weight: var(--font-semibold);
    border-radius: var(--radius-full);
    white-space: nowrap;
}

.plano-header {
    margin-bottom: var(--space-6);
}

.plano-header h3 {
    font-size: var(--text-2xl);
    margin-bottom: var(--space-2);
}

.plano-header p {
    font-size: var(--text-sm);
}

.plano-price {
    margin-bottom: var(--space-6);
}

.plano-price .currency {
    font-size: var(--text-xl);
    font-weight: var(--font-semibold);
    color: var(--text-secondary);
    vertical-align: top;
}

.plano-price .amount {
    font-size: var(--text-5xl);
    font-weight: var(--font-extrabold);
    color: var(--text-primary);
}

.plano-features {
    text-align: left;
    margin-bottom: var(--space-8);
}

.plano-features li {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    padding: var(--space-3) 0;
    border-bottom: 1px solid var(--gray-100);
    font-size: var(--text-sm);
}

.plano-features li:last-child {
    border-bottom: none;
}

.plano-features li i {
    font-size: var(--text-sm);
}

.plano-features li .fa-check {
    color: var(--orange-primary);
}

.plano-features li.disabled {
    color: var(--text-muted);
}

.plano-features li.disabled .fa-times {
    color: var(--gray-400);
}

/* ================================================== */
/* 16. DESTINOS                                       */
/* ================================================== */
.destinos {
    background: var(--beige);
    position: relative;
}

.destinos::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('assets/destinos_bg.webp') center center / cover no-repeat;
    opacity: 0.15;
    z-index: 0;
}

.destinos > * {
    position: relative;
    z-index: 1;
}

.destinos .section-title,
.destinos .section-subtitle {
    color: var(--white);
}

.destinos .section-badge {
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
}

.destinos-filtros {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: var(--space-3);
    margin-bottom: var(--space-10);
}

.filtro-btn {
    padding: var(--space-3) var(--space-6);
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: var(--radius-full);
    font-size: var(--text-sm);
    font-weight: var(--font-medium);
    color: var(--white);
    transition: all var(--transition-fast);
}

.filtro-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: var(--white);
}

.filtro-btn.active {
    background: var(--white);
    border-color: var(--white);
    color: var(--beige);
}

.destinos-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-6);
}

.destino-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
}

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

.destino-card.hidden {
    display: none;
}

.destino-image {
    position: relative;
    height: 180px;
    overflow: hidden;
}

.destino-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.destino-card:hover .destino-image img {
    transform: scale(1.1);
}

.destino-badge {
    position: absolute;
    top: var(--space-3);
    right: var(--space-3);
    padding: var(--space-1) var(--space-3);
    background: var(--orange-primary);
    color: var(--white);
    font-size: var(--text-xs);
    font-weight: var(--font-semibold);
    border-radius: var(--radius-full);
}

.destino-content {
    padding: var(--space-5);
}

.destino-flag {
    font-size: var(--text-3xl);
    margin-bottom: var(--space-2);
}

.destino-content h3 {
    font-size: var(--text-lg);
    margin-bottom: var(--space-3);
}

.destino-info {
    display: flex;
    gap: var(--space-4);
    margin-bottom: var(--space-3);
}

.destino-info span {
    display: flex;
    align-items: center;
    gap: var(--space-1);
    font-size: var(--text-xs);
    color: var(--text-muted);
}

.destino-info i {
    color: var(--orange-primary);
}

.destino-popularity {
    position: relative;
}

.popularity-bar {
    height: 4px;
    background: var(--gray-200);
    border-radius: var(--radius-full);
    margin-bottom: var(--space-2);
    overflow: hidden;
}

.popularity-bar::after {
    content: '';
    display: block;
    height: 100%;
    width: var(--width);
    background: var(--gradient-orange);
    border-radius: var(--radius-full);
}

.destino-popularity span {
    font-size: var(--text-xs);
    color: var(--text-muted);
}

/* ================================================== */
/* 17. FAQ                                            */
/* ================================================== */
.faq {
    background: var(--white);
}

.faq .section-badge,
.planos .section-badge,
.depoimentos .section-badge,
.metodologia .section-badge {
    background: var(--orange-primary);
    color: var(--white);
}

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

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

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-6) 0;
    text-align: left;
    font-size: var(--text-lg);
    font-weight: var(--font-semibold);
    color: var(--text-primary);
    transition: color var(--transition-fast);
}

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

.faq-question i {
    font-size: var(--text-sm);
    color: var(--text-muted);
    transition: transform var(--transition-base);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
    color: var(--orange-primary);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-base);
}

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

.faq-answer p {
    padding-bottom: var(--space-6);
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ================================================== */
/* 18. CTA + FORM                                     */
/* ================================================== */
.cta {
    background: var(--gradient-dark);
    color: var(--white);
}

.cta-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-12);
    align-items: center;
}

.cta-content h2 {
    color: var(--white);
    margin-bottom: var(--space-4);
}

.cta-content > p {
    color: var(--gray-400);
    font-size: var(--text-lg);
    margin-bottom: var(--space-8);
}

.cta-benefits {
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
    margin-bottom: var(--space-8);
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    color: var(--gray-300);
}

.benefit-item i {
    color: #4ade80;
}

.cta-form {
    background: var(--white);
    padding: var(--space-8);
    border-radius: var(--radius-2xl);
}

.cta-form h3 {
    text-align: center;
    margin-bottom: var(--space-6);
    color: var(--text-primary);
}

.form-group {
    margin-bottom: var(--space-5);
}

.form-group label {
    display: block;
    font-size: var(--text-sm);
    font-weight: var(--font-medium);
    color: var(--text-primary);
    margin-bottom: var(--space-2);
}

.form-group input,
.form-group select {
    width: 100%;
    padding: var(--space-4);
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-lg);
    font-size: var(--text-base);
    color: var(--text-primary);
    transition: border-color var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--orange-primary);
}

.form-group input::placeholder {
    color: var(--text-muted);
}

/* ================================================== */
/* 19. FOOTER                                         */
/* ================================================== */
.footer {
    background: var(--gray-900);
    color: var(--gray-400);
    padding: var(--space-16) 0 var(--space-8);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr;
    gap: var(--space-10);
    margin-bottom: var(--space-12);
}

.footer-logo {
    height: 48px;
    width: auto;
    border-radius: var(--radius-md);
    margin-bottom: var(--space-4);
}

.footer-brand p {
    font-size: var(--text-sm);
    line-height: 1.7;
    margin-bottom: var(--space-6);
}

.footer-social {
    display: flex;
    gap: var(--space-4);
}

.footer-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gray-800);
    border-radius: 50%;
    color: var(--gray-400);
    transition: all var(--transition-fast);
}

.footer-social a:hover {
    background: var(--orange-primary);
    color: var(--white);
}

.footer-links h4,
.footer-contact h4 {
    color: var(--white);
    font-size: var(--text-sm);
    font-weight: var(--font-semibold);
    margin-bottom: var(--space-5);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
}

.footer-links a {
    font-size: var(--text-sm);
    color: var(--gray-400);
    transition: color var(--transition-fast);
}

.footer-links a:hover {
    color: var(--orange-primary);
}

.footer-contact ul {
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    font-size: var(--text-sm);
}

.footer-contact i {
    color: var(--orange-primary);
}

.footer-contact a:hover {
    color: var(--orange-primary);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: var(--space-8);
    border-top: 1px solid var(--gray-800);
}

.footer-bottom p {
    font-size: var(--text-sm);
    color: var(--gray-500);
}

.footer-legal {
    display: flex;
    gap: var(--space-6);
}

.footer-legal a {
    font-size: var(--text-sm);
    color: var(--gray-500);
}

.footer-legal a:hover {
    color: var(--orange-primary);
}

/* ================================================== */
/* 20. RESPONSIVE                                     */
/* ================================================== */

/* Tablet */
@media (max-width: 1024px) {
    .navbar-cta {
        display: none;
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-content {
        order: 2;
    }

    .hero-media {
        order: 1;
        margin-bottom: var(--space-8);
    }

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

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

    .hero-image {
        max-width: 400px;
        margin: 0 auto;
    }

    .floating-badge {
        display: none;
    }

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

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

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

    .timeline::before {
        display: none;
    }

    .depoimentos-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: var(--space-4);
    }

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

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

    .plano-card.featured {
        transform: none;
    }

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

    .cta-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .cta-benefits {
        align-items: center;
    }

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

    .footer-brand {
        grid-column: span 2;
    }
}

/* Mobile */
@media (max-width: 768px) {
    section {
        padding: var(--space-12) 0;
    }

    .nav-links {
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: var(--space-6);
        gap: var(--space-4);
        box-shadow: var(--shadow-lg);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all var(--transition-base);
    }

    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .mobile-menu-btn {
        display: flex;
    }

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

    .mobile-menu-btn.active span:nth-child(2) {
        opacity: 0;
    }

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

    .hero {
        padding-top: 120px;
    }

    .hero-ctas {
        flex-direction: column;
    }

    .hero-trust {
        flex-direction: column;
        gap: var(--space-4);
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-4);
    }

    .stat-number {
        font-size: var(--text-4xl);
    }

    .why-grid {
        grid-template-columns: 1fr;
    }

    .timeline {
        grid-template-columns: 1fr;
    }

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

    .diferenciais-grid {
        grid-template-columns: 1fr;
    }

    .destinos-filtros {
        flex-wrap: wrap;
    }

    .destinos-grid {
        grid-template-columns: 1fr;
    }

    .faq-question {
        font-size: var(--text-base);
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: var(--space-8);
    }

    .footer-brand {
        grid-column: auto;
    }

    .footer-bottom {
        flex-direction: column;
        gap: var(--space-4);
        text-align: center;
    }
}

/* ================================================== */
/* 21. ANIMATIONS                                     */
/* ================================================== */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ================================================== */
/* 22. UTILITIES                                      */
/* ================================================== */
.text-center {
    text-align: center;
}

.mb-0 {
    margin-bottom: 0;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* ================================================== */
/* 23. WHATSAPP FLUTUANTE                             */
/* ================================================== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    text-decoration: none;
}

.whatsapp-float-content {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    background: #25D366;
    padding: var(--space-3) var(--space-4);
    border-radius: var(--radius-full);
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: all var(--transition-base);
}

.whatsapp-float:hover .whatsapp-float-content {
    transform: scale(1.05);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5);
}

.whatsapp-text {
    color: var(--white);
    font-size: var(--text-sm);
    font-weight: var(--font-semibold);
    white-space: nowrap;
}

.whatsapp-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
}

.whatsapp-icon i {
    font-size: 28px;
    color: var(--white);
}

/* Animação de vibração */
@keyframes vibrate {
    0% { transform: rotate(0deg); }
    10% { transform: rotate(-10deg); }
    20% { transform: rotate(10deg); }
    30% { transform: rotate(-10deg); }
    40% { transform: rotate(10deg); }
    50% { transform: rotate(0deg); }
    100% { transform: rotate(0deg); }
}

.whatsapp-float.vibrate .whatsapp-icon {
    animation: vibrate 0.5s ease-in-out;
}

/* Mobile */
@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
    }

    .whatsapp-text {
        display: none;
    }

    .whatsapp-float-content {
        padding: var(--space-2);
    }

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

    .whatsapp-icon i {
        font-size: 32px;
    }
}
