/* ==========================================================================
   VoeAVA - Sistema de Design Global (CSS Vanilla - Fiel ao site original)
   ========================================================================== */

/* Importar Fontes do Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Montserrat:wght@400;500;600;700;800&family=Playfair+Display:wght@400;500;600;700&display=swap');

:root {
    /* Paleta fiel ao site original voeava.com.br */
    --primary: #0c2340;
    --primary-light: #1d3557;
    --secondary: #0077b6;
    --accent: #d4af37;
    --accent-hover: #b8972e;
    --teal: #006d77;
    --teal-light: #83c5be;
    --green-teal: #2a9d8f;

    /* Textos */
    --text-main: #1e293b;
    --text-muted: #64748b;
    --text-dark: #0f172a;
    --text-dark-muted: #475569;
    --text-light: #f8fafc;

    /* Fundos */
    --bg-dark: #ffffff;
    --bg-light: #f0f8ff;
    --card-bg: #ffffff;

    /* Bordas e Sombras */
    --border-color: #e2e8f0;
    --border-color-light: #cbd5e1;
    --shadow: 0 15px 30px -10px rgba(12, 35, 64, 0.08);
    --shadow-light: 0 4px 6px -1px rgba(12, 35, 64, 0.05);
    --shadow-hover: 0 20px 40px -15px rgba(0, 119, 182, 0.15);

    /* Fontes */
    --font-sans: 'Inter', sans-serif;
    --font-title: 'Montserrat', sans-serif;
    --font-display: 'Playfair Display', serif;

    /* Efeitos */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --radius: 14px;
    --container: 1200px;
}

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

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

body {
    font-family: var(--font-sans);
    background-color: #ffffff;
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

a { color: inherit; text-decoration: none; transition: var(--transition); }
button, input, select, textarea { font-family: inherit; font-size: inherit; outline: none; }
img { max-width: 100%; height: auto; display: block; }

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.section-padding { padding: 90px 0; }
.text-center { text-align: center; }
.flex { display: flex; }
.grid { display: grid; }

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-title);
    font-weight: 500;
    color: var(--text-dark);
    letter-spacing: -0.02em;
    line-height: 1.2;
}

/* ====== BOTÕES ====== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 30px;
    font-weight: 600;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    font-family: var(--font-title);
    font-size: 0.95rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--secondary) 0%, #0096c7 100%);
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(0, 119, 182, 0.25);
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 119, 182, 0.4);
}

.btn-secondary {
    background-color: transparent;
    color: var(--text-light);
    border: 2px solid rgba(255,255,255,0.4);
}
.btn-secondary:hover {
    background-color: rgba(255,255,255,0.1);
    border-color: #ffffff;
    transform: translateY(-2px);
}

.btn-accent-outline {
    background-color: transparent;
    color: var(--secondary);
    border: 2px solid var(--secondary);
}
.btn-accent-outline:hover {
    background-color: var(--secondary);
    color: #ffffff;
    transform: translateY(-2px);
}

.btn-block { display: flex; width: 100%; }

/* ==========================================================================
   CABEÇALHO E NAVEGAÇÃO
   ========================================================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255,255,255,0.3);
    transition: var(--transition);
}

.header-scrolled {
    background-color: rgba(255,255,255,0.98);
    box-shadow: 0 4px 20px rgba(12, 35, 64, 0.1);
}

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

.logo { display: flex; align-items: center; height: 45px; text-decoration: none; }
.logo img { height: 100%; width: auto; object-fit: contain; }
.logo-text {
    font-family: 'Air Millhouse', 'Air Millhouse Italic', var(--font-title), sans-serif; /* Montserrat de fallback */
    font-size: 2.2rem;
    font-weight: 800;
    font-style: italic;
    letter-spacing: -0.02em;
    color: var(--primary);
    line-height: 1;
    display: inline-block;
    user-select: none;
}
.logo-text-white {
    color: #ffffff !important;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
}

.nav-link {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-muted);
    letter-spacing: 0.01em;
}
.nav-link:hover, .nav-link.active { color: var(--secondary); }

.nav-actions { display: flex; align-items: center; gap: 16px; }

/* Mobile Toggle */
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}
.mobile-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--text-main);
    border-radius: 2px;
    transition: var(--transition);
}

/* ==========================================================================
   HERO PRINCIPAL - Fiel ao site voeava.com.br original
   ========================================================================== */
.hero-main {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: url('/img/bg-hero.png') no-repeat center center / cover;
    overflow: hidden;
    padding-top: 75px;
}

.hero-main-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(5, 30, 55, 0.45) 0%,
        rgba(0, 80, 120, 0.30) 50%,
        rgba(5, 30, 55, 0.55) 100%
    );
    z-index: 1;
}

.hero-main-content {
    position: relative;
    z-index: 2;
    max-width: 780px;
    padding: 40px 50px;
    animation: fadeInUp 1s ease-out;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.hero-main-title {
    font-family: var(--font-title);
    font-size: 3.8rem;
    font-weight: 600;
    color: #ffffff;
    line-height: 1.1;
    margin-bottom: 16px;
    text-shadow: 0 2px 20px rgba(0,0,0,0.3);
    letter-spacing: -0.02em;
}

.hero-main-title span {
    background: linear-gradient(135deg, #7dd3fc 0%, #38bdf8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-main-sub {
    font-size: 1.15rem;
    color: rgba(255,255,255,0.88);
    margin-bottom: 36px;
    font-weight: 400;
}

/* Botão WhatsApp do Hero */
.btn-hero-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: #25d366;
    color: #ffffff;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    font-family: var(--font-title);
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: var(--transition);
}
.btn-hero-whatsapp:hover {
    background-color: #1ebe5d;
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.5);
}

/* ==========================================================================
   SEARCH / ROTA SECTION
   ========================================================================== */
.search-section {
    background-color: #f8fbff;
    border-bottom: 1px solid var(--border-color);
    padding: 28px 0;
}

.search-container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
}

.search-label-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.search-icon-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: 500;
}

.search-rota-card {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 20px 28px;
    box-shadow: var(--shadow-light);
}

.search-rota-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
}

.search-rota-title {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: 0.04em;
}

.search-rota-select-wrap {
    min-width: 280px;
}

.search-rota-select {
    width: 100%;
    padding: 12px 18px;
    border: 1px solid var(--border-color-light);
    border-radius: 8px;
    background: #f8fbff;
    color: var(--text-dark);
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--transition);
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%2364748b' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 40px;
}
.search-rota-select:focus {
    border-color: var(--secondary);
    box-shadow: 0 0 0 3px rgba(0,119,182,0.12);
    outline: none;
}

/* ==========================================================================
   BANNERS DE DESTAQUE
   ========================================================================== */
.banners-section {
    display: flex;
    flex-direction: column;
}

.banner-item {
    position: relative;
    height: 260px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.banner-majestade {
    background: url('../images/litoranea.png') no-repeat center 60% / cover;
}

.banner-fenero {
    background: url('../images/classe_especial.png') no-repeat center center / cover;
}

.banner-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.banner-overlay-dark {
    background: linear-gradient(
        90deg,
        rgba(0, 30, 60, 0.72) 0%,
        rgba(0, 30, 60, 0.40) 60%,
        rgba(0, 30, 60, 0.10) 100%
    );
}

.banner-overlay-dark2 {
    background: linear-gradient(
        90deg,
        rgba(0, 20, 40, 0.80) 0%,
        rgba(0, 20, 40, 0.50) 60%,
        rgba(0, 20, 40, 0.15) 100%
    );
}

.banner-content {
    position: relative;
    z-index: 2;
    padding: 0 60px;
    max-width: 700px;
}

.banner-title {
    font-size: 1.55rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.25;
    margin-bottom: 20px;
    letter-spacing: 0.01em;
    text-shadow: 0 1px 8px rgba(0,0,0,0.3);
}

.btn-banner-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 28px;
    border: 2px solid #ffffff;
    border-radius: 6px;
    color: #ffffff;
    font-weight: 600;
    font-size: 0.9rem;
    font-family: var(--font-title);
    transition: var(--transition);
    letter-spacing: 0.03em;
}
.btn-banner-outline:hover {
    background-color: #ffffff;
    color: var(--primary);
}

/* ==========================================================================
   SEÇÃO "CONFIRA" — Glassmorphism sobre imagem aérea dos Lençóis
   ========================================================================== */
.confira-section {
    position: relative;
    padding: 80px 24px;
    overflow: hidden;
    background: url('/img/AdobeStock_477388908.avif') no-repeat center center / cover;
}

.confira-bg {
    position: absolute;
    inset: 0;
    background: rgba(0, 70, 80, 0.55);
    z-index: 1;
}

.confira-inner {
    position: relative;
    z-index: 2;
    max-width: var(--container);
    margin: 0 auto;
}

.confira-title {
    text-align: center;
    font-family: var(--font-display);
    font-size: 2.4rem;
    font-weight: 400;
    color: rgba(255,255,255,0.85);
    margin-bottom: 48px;
    letter-spacing: 0.02em;
}

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

.confira-card {
    background: rgba(255, 255, 255, 0.10);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 16px;
    padding: 40px 32px;
    text-align: center;
    transition: var(--transition);
}

.confira-card:hover {
    background: rgba(255, 255, 255, 0.16);
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.confira-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    opacity: 0.9;
}

.confira-card-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 12px;
    font-family: var(--font-title);
}

.confira-card-desc {
    font-size: 0.92rem;
    color: rgba(255,255,255,0.78);
    line-height: 1.6;
    margin-bottom: 28px;
}

.btn-confira-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 9px 28px;
    border: 1.5px solid rgba(255,255,255,0.7);
    border-radius: 6px;
    color: rgba(255,255,255,0.9);
    font-weight: 600;
    font-size: 0.88rem;
    font-family: var(--font-title);
    transition: var(--transition);
}
.btn-confira-outline:hover {
    background-color: rgba(255,255,255,0.15);
    border-color: #ffffff;
    color: #ffffff;
}

/* ==========================================================================
   SEÇÃO AVA SOBREVOO — Texto sobre a empresa
   ========================================================================== */
.ava-section {
    position: relative;
    overflow: hidden;
}

.ava-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 520px;
}

.ava-text-col {
    background: linear-gradient(
        135deg,
        rgba(5, 20, 50, 0.95) 0%,
        rgba(0, 60, 100, 0.90) 100%
    );
    padding: 80px 60px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.ava-title {
    font-size: 3rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 10px;
    font-family: var(--font-title);
}

.ava-subtitle {
    font-size: 1.05rem;
    font-weight: 400;
    color: rgba(255,255,255,0.75);
    margin-bottom: 24px;
    letter-spacing: 0.01em;
}

.ava-desc {
    font-size: 0.97rem;
    font-weight: 300;
    color: rgba(255,255,255,0.80);
    line-height: 1.75;
    max-width: 420px;
}

/* Coluna direita usa a imagem como <img> para não distorcer */
.ava-image-col {
    position: relative;
    overflow: hidden;
    background: #0c2340;
}

.ava-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
}

/* Nossa História — fundo fixo com a imagem grande (sem distorção) */
.nossa-historia-block {
    position: relative;
    padding: 90px 24px;
    background:
        linear-gradient(rgba(5, 25, 55, 0.72), rgba(0, 60, 90, 0.72)),
        url('/img/AdobeStock_569745098.jpeg.png') no-repeat center 30% / cover;
    background-attachment: fixed;
}

.nossa-historia-inner {
    max-width: 750px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.nossa-historia-title {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 400;
    color: rgba(255,255,255,0.90);
    margin-bottom: 28px;
    letter-spacing: 0.02em;
}

.nossa-historia-text {
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.9;
    color: rgba(200, 235, 245, 0.92);
}

/* ==========================================================================
   SEÇÃO DE ROTAS / SOBREVOOS
   ========================================================================== */
.rotas-section {
    background-color: #f8fbff;
}

.section-title {
    font-size: 2.4rem;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.section-subtitle {
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 60px;
}

.flights-grid {
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.flight-card {
    background-color: #ffffff;
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}
.flight-card:hover {
    transform: translateY(-8px);
    border-color: rgba(0, 119, 182, 0.2);
    box-shadow: var(--shadow-hover);
}

.flight-image-wrapper {
    position: relative;
    height: 220px;
    overflow: hidden;
}
.flight-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}
.flight-card:hover .flight-image { transform: scale(1.04); }

.flight-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background-color: var(--secondary);
    color: #ffffff;
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
}

.flight-info {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.flight-duration {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--secondary);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.flight-title {
    font-size: 1.35rem;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.flight-desc {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 20px;
    flex-grow: 1;
}

.flight-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
}

.flight-price-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
}

.flight-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary);
    font-family: var(--font-title);
}

/* ==========================================================================
   SEÇÃO DE PARCEIROS
   ========================================================================== */
.parceiros-section {
    background-color: #f8fbff;
    padding: 60px 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.parceiros-label {
    text-align: center;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 40px;
}

.parceiros-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 50px;
    row-gap: 30px;
}

.parceiro-item {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.60;
    transition: var(--transition);
    filter: grayscale(40%);
}
.parceiro-item:hover {
    opacity: 1;
    filter: grayscale(0%);
    transform: scale(1.05);
}

/* Logo real — mantém proporções originais, sem distorção */
.parceiro-logo {
    height: 50px;
    width: auto;
    max-width: 160px;
    object-fit: contain;
    object-position: center;
    display: block;
}

/* ==========================================================================
   SEÇÃO WHATSAPP - Cadastre-se
   ========================================================================== */
.whatsapp-section {
    position: relative;
    padding: 80px 24px;
    background: url('/img/AdobeStock_453371020.jpeg') no-repeat center center / cover;
    overflow: hidden;
}

.whatsapp-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(5, 25, 55, 0.75) 0%,
        rgba(0, 80, 100, 0.65) 100%
    );
    z-index: 1;
}

.whatsapp-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.whatsapp-title {
    font-size: 2.4rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 14px;
    font-family: var(--font-title);
}

.whatsapp-desc {
    font-size: 1rem;
    color: rgba(255,255,255,0.80);
    margin-bottom: 36px;
    line-height: 1.6;
}

.whatsapp-form-row {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
}

.wpp-input {
    flex: 1;
    min-width: 200px;
    padding: 14px 20px;
    border: none;
    border-radius: 8px;
    background: rgba(255,255,255,0.95);
    color: var(--text-dark);
    font-size: 0.95rem;
    font-family: var(--font-sans);
    transition: var(--transition);
}
.wpp-input:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(37, 211, 102, 0.35);
    background: #ffffff;
}
.wpp-input::placeholder { color: #94a3b8; }

.btn-wpp-submit {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background-color: #25d366;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    font-family: var(--font-title);
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.35);
}
.btn-wpp-submit:hover {
    background-color: #1ebe5d;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
}

/* ==========================================================================
   RODAPÉ
   ========================================================================== */
.footer {
    background-color: var(--primary);
    border-top: 1px solid var(--primary-light);
    padding: 80px 0 30px;
    color: rgba(255,255,255,0.8);
}

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

.footer-brand { max-width: 320px; }
.footer-brand .logo { margin-bottom: 20px; height: 50px; }
.footer-brand p { color: rgba(255,255,255,0.6); font-size: 0.95rem; margin-bottom: 24px; }

.footer-title {
    font-size: 1rem;
    color: #ffffff;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 0.07em;
}

.footer-links { list-style: none; }
.footer-links li { margin-bottom: 12px; }
.footer-links a { color: rgba(255,255,255,0.6); font-size: 0.92rem; }
.footer-links a:hover { color: var(--accent); padding-left: 4px; }

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 30px;
    color: rgba(255,255,255,0.4);
    font-size: 0.85rem;
}

/* ==========================================================================
   PÁGINAS INTERNAS (Reserva, Checkout, Login)
   ========================================================================== */
.booking-page { padding-top: 130px; background-color: var(--bg-dark); }

.booking-wrapper {
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 40px;
}

.booking-main-img {
    height: 400px;
    border-radius: var(--radius);
    overflow: hidden;
    margin-bottom: 30px;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow);
}
.booking-main-img img { width: 100%; height: 100%; object-fit: cover; }

.booking-title { font-size: 2.4rem; margin-bottom: 16px; color: var(--text-dark); }
.booking-meta { display: flex; gap: 24px; margin-bottom: 24px; font-size: 0.95rem; color: var(--secondary); font-weight: 600; }
.booking-description { color: var(--text-muted); margin-bottom: 32px; font-size: 1.05rem; }

.highlights-list { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; list-style: none; margin-bottom: 40px; }
.highlights-list li { display: flex; align-items: center; gap: 10px; color: var(--text-main); font-weight: 500; }
.highlights-list li::before { content: "✓"; color: var(--secondary); font-weight: bold; }

.booking-sidebar-card {
    background-color: var(--bg-light);
    border-radius: var(--radius);
    border: 1px solid var(--border-color);
    padding: 32px;
    box-shadow: var(--shadow-light);
    height: fit-content;
    position: sticky;
    top: 110px;
}

.sidebar-title { font-size: 1.5rem; margin-bottom: 24px; border-bottom: 1px solid var(--border-color); padding-bottom: 16px; color: var(--text-dark); }
.passenger-selector { margin-bottom: 32px; }
.selector-label { display: block; margin-bottom: 12px; font-weight: 600; color: var(--text-dark); }

.counter-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 50px;
    padding: 8px 16px;
}

.counter-btn {
    background: none;
    border: none;
    color: var(--text-dark);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}
.counter-btn:hover:not(:disabled) { background-color: var(--bg-light); color: var(--secondary); }
.counter-btn:disabled { opacity: 0.3; cursor: not-allowed; }
.counter-value { font-size: 1.2rem; font-weight: 700; width: 40px; text-align: center; color: var(--text-dark); }

.price-breakdown { border-top: 1px solid var(--border-color); padding-top: 20px; margin-bottom: 32px; }
.price-row { display: flex; justify-content: space-between; margin-bottom: 12px; color: var(--text-muted); }
.price-row.total { color: var(--text-dark); font-size: 1.3rem; font-weight: 700; border-top: 1px dashed var(--border-color); padding-top: 16px; margin-top: 16px; }
.price-row.total span { color: var(--secondary); }

/* Checkout */
.checkout-page { padding-top: 130px; background-color: var(--bg-light); }
.checkout-grid { display: grid; grid-template-columns: 1.3fr 1fr; gap: 40px; align-items: start; }
.checkout-form-container { background-color: #ffffff; border-radius: var(--radius); border: 1px solid var(--border-color); padding: 40px; box-shadow: var(--shadow-light); }
.checkout-section-title { font-size: 1.35rem; margin-bottom: 24px; display: flex; align-items: center; gap: 12px; border-bottom: 1px solid var(--border-color); padding-bottom: 12px; color: var(--text-dark); }
.checkout-section-title span { background-color: var(--secondary); color: #ffffff; width: 28px; height: 28px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; font-size: 0.9rem; font-weight: 700; }
.form-group-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 24px; }
.form-group { display: flex; flex-direction: column; gap: 8px; margin-bottom: 20px; }
.form-group.full-width { grid-column: span 2; }
label { font-size: 0.85rem; font-weight: 600; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.05em; }
.form-control { background-color: #ffffff; border: 1px solid var(--border-color-light); color: var(--text-dark); padding: 14px 18px; border-radius: 8px; font-size: 0.95rem; transition: var(--transition); }
.form-control:focus { border-color: var(--secondary); box-shadow: 0 0 0 2px rgba(0, 119, 182, 0.15); }
.form-control::placeholder { color: #94a3b8; }
.companions-section { margin-top: 40px; }
.companion-card { background-color: var(--bg-light); border: 1px dashed var(--border-color-light); border-radius: 8px; padding: 24px; margin-bottom: 20px; }
.companion-card-title { font-size: 1rem; margin-bottom: 16px; color: var(--secondary); font-weight: 600; }
.checkout-summary-card { background-color: #ffffff; border-radius: var(--radius); border: 1px solid var(--border-color); padding: 32px; box-shadow: var(--shadow); position: sticky; top: 110px; }
.summary-flight-info { display: flex; gap: 16px; margin-bottom: 24px; padding-bottom: 20px; border-bottom: 1px solid var(--border-color); }
.summary-flight-thumb { width: 80px; height: 80px; border-radius: 8px; overflow: hidden; }
.summary-flight-thumb img { width: 100%; height: 100%; object-fit: cover; }
.summary-flight-name { font-size: 1.2rem; margin-bottom: 4px; color: var(--text-dark); }
.summary-flight-details { color: var(--text-muted); font-size: 0.85rem; }
.datetime-picker { background-color: var(--bg-light); border-radius: 8px; padding: 20px; margin-bottom: 24px; border: 1px solid var(--border-color); }
.stripe-container { background-color: var(--bg-light); border: 1px solid var(--border-color); border-radius: 8px; padding: 20px; margin-bottom: 24px; }
.stripe-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 16px; font-size: 0.85rem; color: var(--text-muted); }
.stripe-element-mock { background-color: #ffffff; border: 1px solid var(--border-color-light); padding: 14px; border-radius: 6px; font-size: 0.95rem; display: flex; align-items: center; justify-content: space-between; }

/* Login */
.login-page { height: 100vh; display: flex; align-items: center; justify-content: center; background: linear-gradient(135deg, var(--bg-light) 0%, #e0f2fe 100%); padding: 24px; }
.login-card { background-color: #ffffff; border: 1px solid var(--border-color); border-radius: var(--radius); padding: 48px; width: 100%; max-width: 450px; box-shadow: 0 20px 40px -15px rgba(12, 35, 64, 0.1); text-align: center; animation: fadeInUp 0.8s ease-out; }
.login-logo { font-family: var(--font-title); font-size: 2.2rem; font-weight: 800; margin-bottom: 8px; color: var(--primary); }
.login-logo span { color: var(--secondary); }
.login-subtitle { color: var(--text-muted); margin-bottom: 32px; font-size: 0.95rem; }
.login-card form { text-align: left; }
.login-footer-links { margin-top: 24px; font-size: 0.9rem; color: var(--text-muted); }
.login-footer-links a { color: var(--secondary); }
.login-footer-links a:hover { text-decoration: underline; }

/* Success Checkout */
.success-screen { text-align: center; padding: 60px 40px; }
.success-icon { font-size: 4rem; color: #10b981; margin-bottom: 24px; animation: scaleUp 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275); }

/* ==========================================================================
   ANIMAÇÕES
   ========================================================================== */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(24px); }
    to   { opacity: 1; transform: translateY(0); }
}

@keyframes scaleUp {
    from { opacity: 0; transform: scale(0.8); }
    to   { opacity: 1; transform: scale(1); }
}

/* ==========================================================================
   RESPONSIVIDADE
   ========================================================================== */
@media (max-width: 1024px) {
    .hero-main-title { font-size: 2.8rem; }
    .ava-grid { grid-template-columns: 1fr; }
    .ava-image-col { height: 300px; }
    .confira-grid { grid-template-columns: 1fr 1fr; }
    .booking-wrapper, .checkout-grid { grid-template-columns: 1fr; }
    .booking-sidebar-card, .checkout-summary-card { position: static; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .nav-menu, .nav-actions .btn { display: none; }
    .mobile-toggle { display: flex; }
    .hero-main-title { font-size: 2.2rem; }
    .hero-main-sub { font-size: 1rem; }
    .banner-title { font-size: 1.15rem; }
    .banner-content { padding: 0 28px; }
    .banner-item { height: 200px; }
    .confira-grid { grid-template-columns: 1fr; }
    .ava-text-col { padding: 50px 28px 40px; }
    .ava-title { font-size: 2.2rem; }
    .search-rota-header { flex-direction: column; align-items: flex-start; }
    .search-rota-select-wrap { width: 100%; }
    .whatsapp-form-row { flex-direction: column; }
    .wpp-input { min-width: unset; width: 100%; }
    .btn-wpp-submit { width: 100%; justify-content: center; }
    .section-title { font-size: 2rem; }
    .form-group-grid { grid-template-columns: 1fr; }
    .form-group.full-width { grid-column: span 1; }
}

@media (max-width: 480px) {
    .hero-main-title { font-size: 1.9rem; }
    .footer-grid { grid-template-columns: 1fr; }
    .confira-title { font-size: 1.8rem; }
    .whatsapp-title { font-size: 1.8rem; }
}
