/* ==========================================================================
   MOONSTERS VIAGENS — DESIGN SYSTEM MODULAR & ARQUITETURAL
   Paleta de Cores: Azul Elétrico (#0A6DF2) | Dourado (#d4af37) | Branco (#ffffff)
   Foco: Luz Natural, 100% de Contraste, Leitura Cristalina e Visual Vivo
   ========================================================================== */

/* 1. VARIÁVEIS DO SISTEMA (TOKENS DE DESIGN) */
:root {
    /* Cores Principais */
    --primary-color: #0A6DF2;
    --primary-dark: #0856C5;
    --primary-light: #F0F6FF;
    --primary-transparent: rgba(10, 109, 242, 0.06);
    
    /* Cores de Destaque */
    --accent-color: #d4af37;
    --accent-dark: #b59228;
    --accent-light: #FAF5E6;
    
    /* Cores Neutras e Fundo */
    --white: #ffffff;
    --bg-light: #ffffff;
    --bg-gray: #F8FAFC;
    
    /* Texto & Contraste (Pristine Readability) */
    --text-primary: #0c1a30;     /* Azul Marinho ultra-escuro para contraste perfeito */
    --text-secondary: #475569;   /* Slate/Cinza azulado escuro para descrições */
    --text-muted: #64748B;
    
    /* Bordas & Sombras */
    --border-color: rgba(10, 109, 242, 0.08);
    --border-light: rgba(255, 255, 255, 0.5);
    --shadow-sm: 0 4px 12px rgba(10, 109, 242, 0.04);
    --shadow-md: 0 12px 30px rgba(10, 109, 242, 0.08);
    --shadow-lg: 0 20px 45px rgba(10, 109, 242, 0.12);
    
    /* Transições & Estrutura */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --container-width: 1200px;
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
}

/* 2. BASE & RESETS */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Manrope', sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--white);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Raleway', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-primary);
}

ul {
    list-style: none;
}

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

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

/* 3. LAYOUT & GRID HELPERS */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

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

/* Grid Arquitetural Responsivo */
.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    align-items: center;
}

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

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

/* Títulos das Seções */
.section-title {
    margin-bottom: 50px;
    max-width: 700px;
}

.section-title.text-center {
    margin-left: auto;
    margin-right: auto;
}

.subtitle {
    display: inline-block;
    color: var(--primary-color);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.85rem;
    margin-bottom: 12px;
}

.section-title h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.section-title p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    font-weight: 400;
}

/* Espaçamento das Seções */
section {
    padding: 100px 0;
}

.gray-bg {
    background-color: var(--bg-gray);
}

/* 4. COMPONENTES GLOBAIS DE UI */
/* Botões Premium */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-family: 'Raleway', sans-serif;
    font-size: 0.95rem;
    cursor: pointer;
    border: none;
    transition: var(--transition);
}

.btn-primary {
    background-color: var(--accent-color);
    color: var(--white);
    box-shadow: 0 6px 18px rgba(212, 175, 55, 0.25);
}

.btn-primary:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(10, 109, 242, 0.3);
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(10, 109, 242, 0.25);
}

.btn-submit {
    background-color: var(--primary-color);
    color: var(--white);
    width: 100%;
    padding: 16px;
    box-shadow: 0 6px 18px rgba(10, 109, 242, 0.2);
}

.btn-submit:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(10, 109, 242, 0.3);
}

.btn-assessoria {
    background-color: var(--accent-color);
    color: var(--white);
    width: 100%;
    padding: 12px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.15);
}

.btn-assessoria:hover {
    background-color: var(--primary-color);
    box-shadow: 0 6px 18px rgba(10, 109, 242, 0.2);
}

/* Badges e Elementos de Destaque */
.country-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background-color: var(--white);
    color: var(--primary-color);
    font-weight: 800;
    font-size: 0.75rem;
    padding: 6px 14px;
    border-radius: 40px;
    box-shadow: var(--shadow-sm);
    letter-spacing: 1px;
}

/* ==========================================================================
   5. HEADER & STICKY NAVIGATION
   ========================================================================== */
/* ==========================================================================
   5. HEADER & STICKY NAVIGATION
   ========================================================================== */
/* Header Transparente Padrão (sobre o Hero Escuro) */
header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 24px 0;
    transition: var(--transition);
    background-color: transparent;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}

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

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

.logo img {
    height: 52px;
    width: auto;
    object-fit: contain;
    border-radius: 6px;
    transition: var(--transition);
}

header.scrolled .logo img {
    height: 44px;
}

/* Toggle das logos baseado no estado do scroll */
header .logo-white {
    display: block !important;
    border-radius: 100%;
}

header .logo-dark {
    display: none !important;
}

header.scrolled .logo-white {
    display: block !important;
}

header.scrolled .logo-dark {
    display: none !important;
}

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

.nav-links a {
    font-weight: 700;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    position: relative;
    padding: 6px 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: var(--white);
    transition: var(--transition);
    transform: translateX(-50%);
}

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

.nav-links a:hover::after {
    width: 100%;
}

/* Botão do WhatsApp no Header */
.btn-whatsapp-header {
    background-color: var(--accent-color); /* Dourado oficial */
    color: var(--white) !important;
    padding: 10px 20px;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    border-radius: 4px;
    font-weight: 700;
    transition: var(--transition);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.25);
    text-transform: uppercase;
}

.btn-whatsapp-header:hover {
    background-color: var(--primary-color); /* Transiciona para Azul Elétrico no hover */
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(10, 109, 242, 0.35);
}

/* Oculta botão de WhatsApp mobile-only por padrão em desktops e notebooks */
.mobile-only-action {
    display: none;
}

/* Menu Mobile Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    z-index: 1100;
}

.mobile-menu-toggle span {
    width: 24px;
    height: 2px;
    background-color: var(--white);
    transition: var(--transition);
    transform-origin: center;
}

/* Estado Scrolled (Fundo Claro / Transição do Design System) */
header.scrolled {
    padding: 12px 0;
    background-color: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid rgba(10, 109, 242, 0.05);
}

header.scrolled .nav-links a {
    color: var(--text-primary);
}

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

header.scrolled .nav-links a::after {
    background-color: var(--primary-color);
}

header.scrolled .mobile-menu-toggle span {
    background-color: var(--text-primary);
}

/* Transição do Hambúrguer para X */
.mobile-menu-toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

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

.mobile-menu-toggle.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}


/* ==========================================================================
   6. HERO SECTION (REPLICADA DE ALTA FIDELIDADE — CENTRALIZADA)
   ========================================================================== */
.hero-premium {
    position: relative;
    height: 95vh;
    min-height: 650px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url('../assets/hero-maldives.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
    color: var(--white);
    text-align: center;
    padding-top: 100px;
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.45) 0%, rgba(0, 0, 0, 0.35) 50%, rgba(0, 0, 0, 0.6) 100%);
    z-index: 2;
}

.hero-content-container {
    position: relative;
    z-index: 4;
    max-width: 850px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0 24px;
    animation: heroContentFade 1.2s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.hero-logo-centered {
    margin-bottom: 24px;
}

.hero-centered-logo-img {
    height: 80px;
    width: 80px; /* Mantém proporção 1:1 perfeita */
    object-fit: cover; /* Recorta suavemente em formato de círculo */
    border-radius: 50%; /* 100% redondo */
    border: none; /* Sem bordas conforme solicitação */
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
    background-color: var(--white);
    padding: 6px;
    animation: pulseGlow 3s ease-in-out infinite;
}

@keyframes pulseGlow {
    0%, 100% { 
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3), 0 0 0 0px rgba(255, 255, 255, 0.1); 
    }
    50% { 
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3), 0 0 0 10px rgba(255, 255, 255, 0.2); 
    }
}

.hero-title {
    font-size: 4.8rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 20px;
    letter-spacing: -2px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    font-family: 'Raleway', sans-serif;
}

.hero-subtitle {
    font-size: 1.25rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 40px;
    max-width: 680px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.35);
    font-weight: 400;
}

.hero-btn-container {
    display: flex;
    justify-content: center;
    width: 100%;
}

.btn-hero-action {
    background-color: var(--accent-color); /* Dourado oficial */
    color: var(--white);
    padding: 16px 36px;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    border-radius: 4px;
    transition: var(--transition);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.25);
    text-transform: uppercase;
}

.btn-hero-action:hover {
    background-color: var(--primary-color); /* Transiciona para Azul Elétrico no hover */
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 10px 28px rgba(10, 109, 242, 0.35);
}

@keyframes heroContentFade {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Responsividade do Hero */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.8rem;
        letter-spacing: -1px;
    }
    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 30px;
    }
    .hero-premium {
        height: 90vh;
    }
}

/* ==========================================================================
   7. POR QUE A MOONSTERS (DIFERENCIAIS PREMIUM)
   ========================================================================== */
.why-choose-us {
    background-color: var(--white);
    position: relative;
    padding: 100px 0;
}

.why-choose-card {
    background-color: var(--text-primary); /* Fundo azul marinho escuro oficial */
    border-radius: var(--radius-lg);
    padding: 60px;
    color: var(--white);
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

/* Micro-linhas sutis de grade no fundo do card para combinar com a identidade premium */
.why-choose-card::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image: 
        linear-gradient(to right, rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 20px 20px;
    z-index: 1;
    pointer-events: none;
}

.why-choose-top,
.why-choose-bottom-grid {
    position: relative;
    z-index: 2;
}

/* Split no Topo */
.why-choose-top {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 50px;
}

.why-choose-image-col {
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25);
    height: 320px;
}

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

.why-choose-img:hover {
    transform: scale(1.03);
}

.why-choose-text-col {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.why-choose-subtitle {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 16px;
    display: inline-block;
}

.why-choose-title {
    color: var(--white);
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.25;
    margin-bottom: 24px;
    letter-spacing: -1px;
    font-family: 'Raleway', sans-serif;
}

.why-choose-description {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1rem;
    line-height: 1.75;
    font-weight: 400;
}

/* Grid de 4 Colunas no rodapé do Card */
.why-choose-bottom-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    padding-top: 40px;
}

.why-choose-feature {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.why-choose-feature h3 {
    color: var(--white);
    font-size: 1.25rem;
    font-weight: 700;
    font-family: 'Raleway', sans-serif;
}

.why-choose-feature p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
}

/* Responsividade do Card Diferenciais */
@media (max-width: 992px) {
    .why-choose-top {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .why-choose-image-col {
        height: 280px;
    }
    
    .why-choose-bottom-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .why-choose-card {
        padding: 40px;
    }
}

@media (max-width: 576px) {
    .why-choose-bottom-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .why-choose-title {
        font-size: 1.85rem;
    }
    
    .why-choose-card {
        padding: 30px 20px;
    }
}

/* ==========================================================================
   8. EXPERIÊNCIAS (INTERACTIVE VISUAL GRID)
   ========================================================================== */
.experiences {
    background-color: var(--bg-gray);
}

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

.experience-card {
    background-color: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.exp-image {
    height: 220px;
    overflow: hidden;
    position: relative;
}

.exp-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.exp-content {
    padding: 24px;
}

.exp-content h3 {
    font-size: 1.25rem;
    margin-bottom: 10px;
}

.exp-content p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Efeitos Hover */
.experience-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.experience-card:hover .exp-image img {
    transform: scale(1.08);
}

/* ==========================================================================
   9. PACOTES (GRID DINÂMICO COM FILTROS DE LUXO)
   ========================================================================== */
.packages {
    background-color: var(--white);
}

/* Filtro Estilo Reserva */
.packages-filter-bar {
    background-color: var(--white);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-md);
    border-radius: var(--radius-md);
    padding: 20px 24px;
    display: grid;
    grid-template-columns: 1.2fr 1.8fr 1fr;
    gap: 20px;
    align-items: center;
    margin-bottom: 40px;
}

.filter-search {
    display: flex;
    align-items: center;
    background-color: var(--bg-gray);
    border-radius: var(--radius-sm);
    padding: 10px 16px;
    border: 1px solid transparent;
    transition: var(--transition);
}

.filter-search:focus-within {
    border-color: var(--primary-color);
    background-color: var(--white);
    box-shadow: 0 0 0 3px rgba(10, 109, 242, 0.1);
}

.search-icon {
    margin-right: 12px;
    font-size: 1.1rem;
    color: var(--text-muted);
}

.filter-search input {
    border: none;
    background: transparent;
    outline: none;
    width: 100%;
    font-family: inherit;
    font-size: 0.95rem;
    color: var(--text-primary);
}

.filter-categories {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: center;
}

.filter-tab {
    background-color: var(--bg-gray);
    color: var(--text-secondary);
    border: none;
    border-radius: 40px;
    padding: 8px 16px;
    font-weight: 700;
    font-size: 0.85rem;
    cursor: pointer;
    transition: var(--transition);
}

.filter-tab:hover {
    background-color: var(--primary-light);
    color: var(--primary-color);
}

.filter-tab.active {
    background-color: var(--primary-color);
    color: var(--white);
    box-shadow: 0 4px 12px rgba(10, 109, 242, 0.2);
}

.filter-sort {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
}

.filter-sort label {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-secondary);
}

.filter-select {
    background-color: var(--bg-gray);
    border: 1px solid transparent;
    border-radius: var(--radius-sm);
    padding: 8px 14px;
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--text-primary);
    outline: none;
    cursor: pointer;
    transition: var(--transition);
}

.filter-select:focus {
    border-color: var(--primary-color);
    background-color: var(--white);
}

/* Mensagem de Vazio */
.no-packages-msg {
    padding: 60px 0;
    text-align: center;
}

.no-packages-content {
    max-width: 400px;
    margin: 0 auto;
}

.no-packages-emoji {
    font-size: 3rem;
    display: block;
    margin-bottom: 20px;
}

.no-packages-content h3 {
    margin-bottom: 8px;
    font-size: 1.3rem;
}

.no-packages-content p {
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.btn-sm {
    padding: 10px 20px;
    font-size: 0.85rem;
}

/* Grid de Pacotes */
.packages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* Card de Pacote */
.package-card {
    background-color: var(--white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
}

.package-image {
    height: 240px;
    position: relative;
    overflow: hidden;
}

.package-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.package-image .tag {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: var(--primary-color);
    color: var(--white);
    font-weight: 800;
    font-size: 0.7rem;
    padding: 4px 12px;
    border-radius: 40px;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 10px rgba(10, 109, 242, 0.2);
}

.package-image .date-tag {
    position: absolute;
    bottom: 15px;
    left: 15px;
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(4px);
    color: var(--text-primary);
    font-weight: 700;
    font-size: 0.75rem;
    padding: 4px 12px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-light);
}

.package-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.3) 0%, transparent 40%);
}

.package-content {
    padding: 28px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.package-content h3 {
    font-size: 1.35rem;
    font-weight: 800;
    margin-bottom: 4px;
}

.package-subtitle {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.package-content ul {
    margin-bottom: 24px;
    flex-grow: 1;
}

.package-content ul li {
    font-size: 0.88rem;
    color: var(--text-secondary);
    margin-bottom: 10px;
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.package-content ul li::before {
    content: '✓';
    color: var(--primary-color);
    font-weight: 900;
    font-size: 0.95rem;
}

.package-footer {
    border-top: 1px solid var(--border-color);
    padding-top: 20px;
    margin-bottom: 20px;
}

.price-container {
    display: flex;
    flex-direction: column;
}

.price-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.price {
    font-size: 1.65rem;
    font-weight: 800;
    color: var(--primary-color);
}

.card-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.card-actions button {
    padding: 12px;
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-size: 0.85rem;
    font-family: inherit;
    cursor: pointer;
    transition: var(--transition);
}

.btn-details {
    background-color: transparent;
    color: var(--text-secondary);
    border: 1px solid var(--border-color);
}

.btn-details:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    background-color: var(--primary-light);
}

.btn-booking {
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
}

.btn-booking:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(10, 109, 242, 0.2);
}

/* Gaveta Expansível de Detalhes */
.package-details-drawer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background-color: var(--primary-light);
    border-top: 0 solid var(--border-color);
}

.package-details-drawer.active {
    max-height: 1000px;
    border-top: 1px solid var(--border-color);
}

.drawer-inner {
    padding: 24px;
}

.drawer-section {
    margin-bottom: 16px;
    padding-bottom: 14px;
    border-bottom: 1px dashed rgba(10, 109, 242, 0.1);
}

.drawer-section:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.drawer-section h4 {
    font-size: 0.85rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--primary-color);
    margin-bottom: 6px;
}

.drawer-section p {
    font-size: 0.88rem;
    line-height: 1.5;
    color: var(--text-primary);
}

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

.package-card:hover .package-image img {
    transform: scale(1.04);
}

/* ==========================================================================
   10. ASSESSORIA INTERNACIONAL (ESTILO EDITORIAL / POST CARD)
   ========================================================================== */
.assessoria {
    background-color: var(--bg-gray);
}

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

.assessoria-card {
    background-color: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.assessoria-img {
    height: 250px;
    overflow: hidden;
    position: relative;
}

.assessoria-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.assessoria-content {
    padding: 32px;
}

.assessoria-content h3 {
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}

.assessoria-content p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.assessoria-bullet-list {
    margin-bottom: 24px;
    padding-top: 16px;
    border-top: 1px solid var(--border-color);
}

.assessoria-bullet-list li {
    font-size: 0.85rem;
    color: var(--text-primary);
    margin-bottom: 10px;
    font-weight: 600;
}

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

.assessoria-card:hover .assessoria-img img {
    transform: scale(1.06);
}

/* ==========================================================================
   11. TIMELINE DA JORNADA (COMO FUNCIONA)
   ========================================================================== */
.how-it-works {
    background-color: var(--white);
}

.timeline {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    position: relative;
    margin-top: 30px;
}

.timeline::after {
    content: '';
    position: absolute;
    top: 35px;
    left: 10%;
    width: 80%;
    height: 2px;
    background: linear-gradient(to right, var(--primary-light), var(--accent-color), var(--primary-light));
    z-index: 1;
}

.timeline-step {
    text-align: center;
    position: relative;
    z-index: 2;
}

.step-num {
    height: 70px;
    width: 70px;
    background-color: var(--white);
    border: 3px solid var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--primary-color);
    margin: 0 auto 24px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.timeline-step:hover .step-num {
    background-color: var(--primary-color);
    color: var(--white);
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(10, 109, 242, 0.4);
}

.timeline-step h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
}

.timeline-step p {
    color: var(--text-secondary);
    font-size: 0.92rem;
    max-width: 280px;
    margin: 0 auto;
}

/* ==========================================================================
   12. PROVA SOCIAL (TESTEMUNHOS)
   ========================================================================== */
.testimonials {
    background-color: var(--bg-gray);
}

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

.testimonial-card {
    background-color: var(--white);
    border-radius: var(--radius-md);
    padding: 36px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    transition: var(--transition);
}

.testimonial-stars {
    color: var(--accent-color);
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.testimonial-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-secondary);
    font-style: italic;
    margin-bottom: 24px;
    flex-grow: 1;
}

.client-info {
    border-top: 1px solid var(--border-color);
    padding-top: 16px;
}

.client-info strong {
    display: block;
    font-size: 0.98rem;
    color: var(--text-primary);
}

.client-info span {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 600;
}

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

/* ==========================================================================
   13. FAQ (ACORDEONS DE CONTRASTE IMPECÁVEL)
   ========================================================================== */
.faq {
    background-color: var(--white);
}

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

.faq-item {
    background-color: var(--white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    margin-bottom: 16px;
    overflow: hidden;
    transition: var(--transition);
}

.faq-question {
    padding: 20px 24px;
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--text-primary);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
    user-select: none;
}

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

.faq-icon {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-color);
    transition: var(--transition);
}

.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background-color: var(--white);
}

.faq-content p {
    padding: 0 24px 20px;
    font-size: 0.92rem;
    line-height: 1.6;
    color: var(--text-secondary);
}

/* Item Ativo */
.faq-item.active {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-md);
}

.faq-item.active .faq-question {
    color: var(--primary-color);
    background-color: var(--primary-light);
}

.faq-item.active .faq-content {
    max-height: 250px;
}

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

/* ==========================================================================
   14. AUTORIDADE (SOBRE A AGÊNCIA COM CONTADORES)
   ========================================================================== */
.about-agency {
    background-color: var(--bg-gray);
}

.about-split {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
}

.about-text h2 {
    font-size: 2.3rem;
    margin-bottom: 20px;
}

.about-text p {
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.about-text p:last-child {
    margin-bottom: 0;
}

.about-stats-card {
    background-color: var(--white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-md);
    text-align: center;
}

.about-stats-card h3 {
    font-size: 1.4rem;
    margin-bottom: 8px;
}

.about-stats-card p {
    font-size: 0.88rem;
    color: var(--text-secondary);
    margin-bottom: 30px;
    font-weight: 600;
}

.stats-counters {
    display: flex;
    justify-content: space-around;
    gap: 10px;
}

.stat-counter .num {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-counter .lbl {
    display: block;
    font-size: 0.72rem;
    color: var(--text-secondary);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ==========================================================================
   15. CONTATO (FORMULÁRIO DE EXCELÊNCIA)
   ========================================================================== */
.contact {
    background-color: var(--white);
}

.contact-split {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 50px;
    align-items: center;
}

.contact-info h2 {
    font-size: 2.3rem;
    margin-bottom: 20px;
}

.contact-info p {
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 35px;
}

.contact-channels {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.channel-item {
    display: flex;
    align-items: center;
    gap: 16px;
}

.channel-icon {
    font-size: 1.8rem;
    height: 52px;
    width: 52px;
    background-color: var(--primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.channel-item h3 {
    font-size: 0.98rem;
    font-weight: 700;
    color: var(--text-primary);
}

.channel-item p {
    font-size: 0.92rem;
    color: var(--text-secondary);
    margin-bottom: 0;
}

/* Caixa do Formulário */
.contact-form-box {
    background-color: var(--white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-md);
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

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

.form-group label {
    display: block;
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--text-secondary);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid var(--border-color);
    border-radius: var(--radius-sm);
    font-family: inherit;
    font-size: 0.95rem;
    color: var(--text-primary);
    outline: none;
    transition: var(--transition);
    background-color: var(--bg-gray);
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--primary-color);
    background-color: var(--white);
    box-shadow: 0 0 0 3px rgba(10, 109, 242, 0.1);
}

/* ==========================================================================
   16. FOOTER (LUXO GROUNDING)
   ========================================================================== */
.footer {
    background-color: var(--text-primary);
    color: rgba(255, 255, 255, 0.8);
    padding: 80px 0 30px;
    border-top: 3px solid var(--accent-color);
}

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

.footer-brand .footer-logo {
    height: 55px;
    width: auto;
    border-radius: 6px;
    margin-bottom: 20px;
}

.footer-brand p {
    font-size: 0.88rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.footer-socials {
    display: flex;
    gap: 16px;
}

.footer-socials a {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--accent-color);
}

.footer-socials a:hover {
    color: var(--white);
}

.footer-links h4,
.footer-contact h4,
.footer-about-info h4 {
    color: var(--white);
    font-size: 1.1rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 8px;
}

.footer-links h4::after,
.footer-contact h4::after,
.footer-about-info h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: var(--accent-color);
}

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

.footer-links ul li a {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.7);
}

.footer-links ul li a:hover {
    color: var(--accent-color);
    padding-left: 4px;
}

.footer-contact ul li {
    margin-bottom: 12px;
    font-size: 0.88rem;
}

.footer-about-info p {
    font-size: 0.85rem;
    line-height: 1.6;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
}

/* ==========================================================================
   17. MEDIA QUERIES (DISPOSITIVOS RESPONSIVOS)
   ========================================================================== */
@media (max-width: 1024px) {
    .hero-split-container {
        gap: 30px;
    }
    
    .hero-split-text h1 {
        font-size: 3rem;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .experiences-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .packages-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .assessoria-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 768px) {
    section {
        padding: 60px 0;
    }
    
    .grid-2 {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .about-split {
        grid-template-columns: 1fr;
        gap: 45px;
    }
    
    .contact-split {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    /* Toggle Mobile */
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--white);
        padding: 24px;
        box-shadow: 0 10px 20px rgba(0,0,0,0.08);
        border-bottom: 1.5px solid var(--border-color);
        gap: 20px;
        align-items: stretch; /* Estica os links para preencher a largura no mobile */
    }
    
    .nav-links.active {
        display: flex;
    }
    
    /* Garante contraste perfeito dos links no menu hambúrguer expandido (evita branco no branco) */
    .nav-links a {
        color: var(--text-primary) !important;
        font-weight: 700;
        width: 100%;
        display: block;
        padding: 4px 0;
    }
    
    .nav-links a:hover {
        color: var(--primary-color) !important;
    }
    
    .nav-links a::after {
        background-color: var(--primary-color) !important;
    }

    /* Oculta botão do WhatsApp do topo no mobile para não quebrar a barra */
    .header-action {
        display: none !important;
    }
    
    /* Exibe o botão de WhatsApp dentro da gaveta do menu hambúrguer */
    .mobile-only-action {
        display: block !important;
        margin-top: 10px;
        width: 100%;
    }
    
    .btn-whatsapp-mobile {
        background-color: var(--accent-color);
        color: var(--white) !important;
        text-align: center;
        width: 100%;
        display: block;
        padding: 12px;
        border-radius: 4px;
        font-weight: 700;
        text-transform: uppercase;
        font-size: 0.85rem;
        box-shadow: 0 4px 12px rgba(212, 175, 55, 0.2);
        font-family: 'Raleway', sans-serif;
    }
    
    .btn-whatsapp-mobile:hover {
        background-color: var(--primary-color);
        box-shadow: 0 6px 16px rgba(10, 109, 242, 0.3);
    }
    
    /* Hero split em Mobile */
    .hero-split-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-split-text {
        order: 1;
    }
    
    .hero-split-image {
        order: 2;
        max-width: 450px;
        margin: 0 auto;
    }
    
    .hero-split-text h1 {
        font-size: 2.5rem;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .badge-reviews {
        left: -5%;
    }
    
    .badge-support {
        right: -5%;
    }
    
    .packages-filter-bar {
        grid-template-columns: 1fr;
    }
    
    .filter-sort {
        justify-content: center;
    }
    
    .timeline {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .timeline::after {
        display: none;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .experiences-grid {
        grid-template-columns: 1fr;
    }
    
    .packages-grid {
        grid-template-columns: 1fr;
    }
    
    .assessoria-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .contact-form-box {
        padding: 24px;
    }
    
    .hero-actions .btn {
        width: 100%;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-counters {
        flex-direction: column;
        gap: 20px;
    }
}

/* ==========================================================================
   Nova Seção: Sobre a Moonster Breve
   ========================================================================== */
.about-brief {
    background-color: var(--white);
    padding: 100px 0;
    border-bottom: 1px solid var(--border-light);
}

.brief-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: center;
}

.brief-logo-col {
    display: flex;
    justify-content: center;
    align-items: center;
}

.brief-logo-img {
    max-width: 320px;
    width: 100%;
    border-radius: 50%;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
    border: 8px solid rgba(10, 109, 242, 0.03);
    transition: transform 0.5s ease;
}

.brief-logo-img:hover {
    transform: scale(1.03) rotate(2deg);
}

.brief-text-col {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.brief-text-col .lead-text {
    font-size: 1.35rem;
    color: var(--primary-color);
    font-weight: 700;
    line-height: 1.5;
    margin-bottom: 20px;
}

.brief-text-col p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 0;
}

@media (max-width: 992px) {
    .brief-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    .brief-logo-img {
        max-width: 240px;
    }
    .brief-text-col {
        align-items: center;
    }
}
