/* =============================================================
   PAJUÇARA RENT A CAR — Main CSS
   Cores: Azul #1EA5E8 | #0077C8 | Laranja #F8A100
============================================================= */

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    --blue-light:  #1EA5E8;
    --blue-dark:   #0077C8;
    --orange:      #F8A100;
    --orange-dark: #D98F00;
    --white:       #FFFFFF;
    --gray-50:     #F8FAFC;
    --gray-100:    #F1F5F9;
    --gray-200:    #E2E8F0;
    --gray-400:    #94A3B8;
    --gray-600:    #475569;
    --gray-800:    #1E293B;
    --gradient:    linear-gradient(90deg, #1EA5E8, #0077C8, #F8A100);
    --gradient-v:  linear-gradient(135deg, #1EA5E8 0%, #0077C8 60%, #F8A100 100%);
    --shadow-sm:   0 1px 3px rgba(0,0,0,.08);
    --shadow-md:   0 4px 16px rgba(0,0,0,.12);
    --shadow-lg:   0 8px 32px rgba(0,0,0,.16);
    --shadow-xl:   0 20px 60px rgba(0,0,0,.2);
    --radius:      12px;
    --radius-lg:   20px;
    --radius-xl:   28px;
    --transition:  .3s cubic-bezier(.4,0,.2,1);
    --font:        'Inter', system-ui, sans-serif;
}

html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font); color: var(--gray-800); background: var(--white); line-height: 1.6; overflow-x: hidden; }
img  { max-width: 100%; height: auto; display: block; }
a    { text-decoration: none; color: inherit; transition: var(--transition); }
ul   { list-style: none; }
button, input, select, textarea { font-family: var(--font); }

/* ── Utilities ── */
.container { max-width: 1240px; margin: 0 auto; padding: 0 20px; }
.section { padding: 80px 0; }
.section-sm { padding: 50px 0; }
.text-center { text-align: center; }
.text-gradient { background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.badge { display: inline-block; padding: 4px 12px; border-radius: 50px; font-size: .75rem; font-weight: 600; letter-spacing: .05em; text-transform: uppercase; }
.badge-blue { background: rgba(30,165,232,.1); color: var(--blue-dark); }
.badge-orange { background: rgba(248,161,0,.12); color: var(--orange-dark); }

/* ── Section Titles ── */
.section-header { text-align: center; margin-bottom: 56px; }
.section-header .badge { margin-bottom: 12px; }
.section-header h2 { font-size: clamp(1.8rem, 4vw, 2.6rem); font-weight: 800; line-height: 1.2; color: var(--gray-800); margin-bottom: 16px; }
.section-header p { font-size: 1.05rem; color: var(--gray-600); max-width: 560px; margin: 0 auto; }

/* ── Buttons ── */
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 12px 24px; border-radius: 50px; font-size: .95rem; font-weight: 600; border: none; cursor: pointer; transition: var(--transition); white-space: nowrap; }
.btn-primary { background: var(--gradient); color: var(--white); box-shadow: 0 4px 20px rgba(0,119,200,.35); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(0,119,200,.45); }
.btn-secondary { background: var(--white); color: var(--blue-dark); border: 2px solid var(--blue-dark); }
.btn-secondary:hover { background: var(--blue-dark); color: var(--white); }
.btn-orange { background: var(--orange); color: var(--white); box-shadow: 0 4px 20px rgba(248,161,0,.4); }
.btn-orange:hover { background: var(--orange-dark); transform: translateY(-2px); }
.btn-whatsapp { background: #25D366; color: var(--white); }
.btn-whatsapp:hover { background: #20BA5A; transform: translateY(-2px); }
.btn-outline-white { border: 2px solid rgba(255,255,255,.6); color: var(--white); background: transparent; }
.btn-outline-white:hover { background: rgba(255,255,255,.15); border-color: var(--white); }
.btn-lg { padding: 16px 36px; font-size: 1.05rem; }
.btn-sm { padding: 8px 18px; font-size: .85rem; }

/* ═══════════════════════════════════════════════
   TOPBAR
═══════════════════════════════════════════════ */
.site-topbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    height: 32px;
    z-index: 1010;
    /* Fundo sólido — visível em qualquer página */
    background: linear-gradient(90deg, #0F2744, #0a3060);
    border-bottom: 1px solid rgba(255,255,255,.06);
}
.topbar-wrap {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 28px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.topbar-left,
.topbar-right {
    display: flex;
    align-items: center;
    gap: 2px;
}
.tb-item {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: .7rem;
    font-weight: 500;
    color: rgba(255,255,255,.85);
    padding: 0 6px;
    white-space: nowrap;
}
.tb-item i { font-size: .68rem; opacity: .75; }
.tb-item strong { font-weight: 700; color: #fff; font-size: .72rem; }
.tb-sep {
    color: rgba(255,255,255,.25);
    font-size: .6rem;
    padding: 0 2px;
    user-select: none;
}

/* ═══════════════════════════════════════════════
   NAVBAR
═══════════════════════════════════════════════ */
.site-header {
    position: fixed;
    top: 32px;          /* logo abaixo da topbar */
    left: 0; right: 0;
    z-index: 1000;
    transition: background .3s ease, box-shadow .3s ease, top .3s ease;
}
.site-header.scrolled {
    background: rgba(255,255,255,.97);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 2px 24px rgba(0,0,0,.10);
}

.navbar-wrap {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
    height: 66px;
    display: flex;
    align-items: center;
    gap: 0;
}

/* Logo */
.navbar-logo {
    flex-shrink: 0;
    margin-right: 20px;
    display: flex;
    align-items: center;
}
.navbar-logo img {
    height: 44px;
    width: auto;
    display: block;
}

/* ── MENU DESKTOP ── */
.navbar-nav {
    display: flex;          /* sempre flex em desktop */
    align-items: center;
    flex: 1;
    gap: 0;
    flex-wrap: nowrap;
}
.nav-link {
    display: block;
    padding: 7px 11px;
    border-radius: 8px;
    font-size: .85rem;
    font-weight: 500;
    color: rgba(255,255,255,.92);
    white-space: nowrap;
    text-decoration: none;
    transition: background .2s, color .2s;
    line-height: 1;
}

/* Scrolled OU página sem hero (classe .header-solid) */
.site-header.scrolled .nav-link,
.site-header.header-solid .nav-link {
    color: var(--gray-800);
}
.nav-link:hover,
.nav-link.active {
    background: rgba(255,255,255,.18);
    color: #fff;
}
.site-header.scrolled .nav-link:hover,
.site-header.scrolled .nav-link.active,
.site-header.header-solid .nav-link:hover,
.site-header.header-solid .nav-link.active {
    background: rgba(30,165,232,.1);
    color: var(--blue-light);
}
.site-header.scrolled .nav-link.active,
.site-header.header-solid .nav-link.active {
    font-weight: 700;
    color: var(--blue-dark);
}

/* Hamburguer escuro em páginas sólidas */
.site-header.header-solid .nav-hamburger {
    background: var(--gray-100);
    border-color: var(--gray-200);
}
.site-header.header-solid .nav-hamburger span {
    background: var(--gray-800);
}

/* ── BOTÕES CTA ── */
.navbar-cta {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
    margin-left: 16px;
}
.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 9px 16px;
    border-radius: 50px;
    font-size: .82rem;
    font-weight: 700;
    text-decoration: none;
    white-space: nowrap;
    transition: all .2s ease;
    line-height: 1;
}
.cta-btn i { font-size: .88rem; }

.cta-wa {
    background: #25D366;
    color: #fff;
    box-shadow: 0 2px 10px rgba(37,211,102,.35);
}
.cta-wa:hover {
    background: #1db954;
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(37,211,102,.5);
    color: #fff;
}

.cta-primary {
    background: linear-gradient(90deg, #1EA5E8, #0077C8, #F8A100);
    color: #fff;
    box-shadow: 0 2px 12px rgba(0,119,200,.35);
}
.cta-primary:hover {
    opacity: .9;
    transform: translateY(-1px);
    box-shadow: 0 4px 18px rgba(0,119,200,.5);
    color: #fff;
}

/* ── HAMBURGUER — SOMENTE MOBILE/TABLET ── */
.nav-hamburger {
    display: none;          /* escondido em desktop */
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: rgba(255,255,255,.15);
    border: 1px solid rgba(255,255,255,.3);
    border-radius: 8px;
    cursor: pointer;
    padding: 8px 9px;
    flex-shrink: 0;
    margin-left: 12px;
    transition: .2s;
}
.site-header.scrolled .nav-hamburger {
    background: var(--gray-100);
    border-color: var(--gray-200);
}
.nav-hamburger span {
    width: 20px; height: 2px;
    background: #fff;
    border-radius: 2px;
    display: block;
    transition: .25s;
}
.site-header.scrolled .nav-hamburger span { background: var(--gray-800); }
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.site-header.scrolled {
    background: rgba(255,255,255,.97);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow: 0 2px 20px rgba(0,0,0,.10);
}

.navbar { width: 100%; }

/* Uma única linha — sem container limitado de largura */
.navbar-inner {
    display: flex;
    align-items: center;
    height: 68px;
    padding: 0 24px;
    gap: 0;
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
}

/* Logo */
.navbar-brand { flex-shrink: 0; margin-right: 16px; }
.logo-img { height: 44px; width: auto; display: block; }

/* Menu — ocupa o espaço do meio, nunca quebra linha */
.navbar-menu {
    display: flex;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    flex: 1;
    gap: 0;
    flex-wrap: nowrap;          /* NUNCA quebra */
    white-space: nowrap;
}
.navbar-menu li { flex-shrink: 0; }
.navbar-menu li a {
    display: block;
    padding: 6px 10px;
    border-radius: 8px;
    font-size: .82rem;
    font-weight: 500;
    letter-spacing: .01em;
    color: var(--white);
    white-space: nowrap;
    transition: var(--transition);
    line-height: 1;
}
.site-header.scrolled .navbar-menu li a { color: var(--gray-800); }
.navbar-menu li a:hover {
    background: rgba(255,255,255,.18);
    color: var(--white);
}
.site-header.scrolled .navbar-menu li a:hover {
    background: rgba(30,165,232,.1);
    color: var(--blue-light);
}
.navbar-menu li a.active {
    background: rgba(255,255,255,.2);
    font-weight: 700;
}
.site-header.scrolled .navbar-menu li a.active {
    background: rgba(30,165,232,.12);
    color: var(--blue-dark);
    font-weight: 700;
}

/* Botões de ação — compactos, não quebram */
.navbar-actions {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
    margin-left: 12px;
}

.nav-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    border-radius: 50px;
    font-size: .8rem;
    font-weight: 700;
    text-decoration: none;
    white-space: nowrap;
    transition: var(--transition);
    flex-shrink: 0;
    line-height: 1;
}
.nav-btn i { font-size: .9rem; flex-shrink: 0; }

/* WhatsApp */
.nav-btn--wa {
    background: #25D366;
    color: #fff;
    box-shadow: 0 2px 10px rgba(37,211,102,.35);
}
.nav-btn--wa:hover {
    background: #20BA5A;
    transform: translateY(-1px);
    box-shadow: 0 4px 14px rgba(37,211,102,.45);
    color: #fff;
}

/* Reservar */
.nav-btn--primary {
    background: var(--gradient);
    color: #fff;
    box-shadow: 0 2px 10px rgba(0,119,200,.30);
}
.nav-btn--primary:hover {
    opacity: .92;
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(0,119,200,.40);
    color: #fff;
}

/* Hamburguer — só aparece no mobile */
.navbar-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: rgba(255,255,255,.15);
    border: 1px solid rgba(255,255,255,.3);
    border-radius: 8px;
    cursor: pointer;
    padding: 8px 9px;
    flex-shrink: 0;
    margin-left: 10px;
    transition: var(--transition);
}
.site-header.scrolled .navbar-toggle {
    background: var(--gray-100);
    border-color: var(--gray-200);
}
.navbar-toggle span {
    width: 20px; height: 2px;
    background: #fff;
    border-radius: 2px;
    display: block;
    transition: var(--transition);
}
.site-header.scrolled .navbar-toggle span { background: var(--gray-800); }
.navbar-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.navbar-toggle.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.navbar-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── HERO BANNER ── */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: 98px; /* topbar 32px + navbar 66px */
}
.hero-bg { position: absolute; inset: 0; background: var(--gradient-v); }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; opacity: .35; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(0,0,0,.2) 0%, rgba(0,55,100,.5) 100%); }
.hero-content { position: relative; z-index: 2; color: var(--white); max-width: 720px; padding-top: 72px; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(255,255,255,.18); backdrop-filter: blur(8px); border: 1px solid rgba(255,255,255,.3); border-radius: 50px; padding: 8px 18px; font-size: .85rem; font-weight: 600; margin-bottom: 24px; }
.hero-badge .dot { width: 8px; height: 8px; border-radius: 50%; background: #25D366; animation: pulse-dot 2s infinite; }
.hero h1 { font-size: clamp(2.2rem, 6vw, 4rem); font-weight: 900; line-height: 1.1; margin-bottom: 20px; }
.hero h1 span { color: var(--orange); }
.hero p { font-size: clamp(1rem, 2vw, 1.2rem); opacity: .9; margin-bottom: 36px; max-width: 560px; }
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-stats { display: flex; gap: 40px; margin-top: 56px; flex-wrap: wrap; }
.hero-stat { text-align: center; }
.hero-stat strong { display: block; font-size: 2rem; font-weight: 900; color: var(--orange); line-height: 1; }
.hero-stat span { font-size: .85rem; opacity: .85; }

/* ── BUSCADOR ── */
.search-bar { position: relative; z-index: 3; margin-top: -60px; }
.search-card { background: var(--white); border-radius: var(--radius-xl); box-shadow: var(--shadow-xl); padding: 32px; }
.search-card-title { font-size: 1.1rem; font-weight: 700; color: var(--gray-800); margin-bottom: 20px; display: flex; align-items: center; gap: 10px; }
.search-card-title i { color: var(--blue-light); }
.search-form { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 16px; align-items: end; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: .8rem; font-weight: 600; color: var(--gray-600); text-transform: uppercase; letter-spacing: .04em; }
.form-group select,
.form-group input { padding: 12px 16px; border: 2px solid var(--gray-200); border-radius: var(--radius); font-size: .95rem; color: var(--gray-800); background: var(--gray-50); outline: none; transition: var(--transition); appearance: none; }
.form-group select:focus,
.form-group input:focus { border-color: var(--blue-light); background: var(--white); box-shadow: 0 0 0 4px rgba(30,165,232,.1); }
.search-btn-wrap { display: flex; align-items: flex-end; }
.search-btn-wrap .btn { width: 100%; justify-content: center; padding: 14px 20px; border-radius: var(--radius); }

/* ── BENEFÍCIOS ── */
.benefits { background: var(--gray-50); }
.benefits-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 20px; }
.benefit-card { background: var(--white); border-radius: var(--radius-lg); padding: 28px 24px; text-align: center; transition: var(--transition); border: 1px solid var(--gray-200); }
.benefit-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: var(--blue-light); }
.benefit-icon { width: 60px; height: 60px; border-radius: 16px; background: var(--gradient); display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; font-size: 1.5rem; color: var(--white); }
.benefit-card h4 { font-size: .95rem; font-weight: 700; color: var(--gray-800); margin-bottom: 6px; }
.benefit-card p { font-size: .85rem; color: var(--gray-600); }

/* ── FROTA ── */
.fleet-filters { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 32px; }
.fleet-filter-btn { padding: 8px 20px; border-radius: 50px; border: 2px solid var(--gray-200); background: var(--white); color: var(--gray-600); font-size: .875rem; font-weight: 600; cursor: pointer; transition: var(--transition); }
.fleet-filter-btn:hover,
.fleet-filter-btn.active { border-color: var(--blue-light); background: var(--blue-light); color: var(--white); }
.fleet-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 24px; }
.car-card { background: var(--white); border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--gray-200); transition: var(--transition); }
.car-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.car-card-img { position: relative; height: 200px; overflow: hidden; background: linear-gradient(135deg, #f0f4f8 0%, #e8edf2 100%); display: flex; align-items: center; justify-content: center; }
.car-card-img img { width: 100%; height: 100%; object-fit: contain; padding: 12px; transition: transform .4s ease; }
.car-card:hover .car-card-img img { transform: scale(1.03); }
.car-card-badge { position: absolute; top: 12px; left: 12px; }
.car-card-body { padding: 20px; }
.car-card-name { font-size: 1.1rem; font-weight: 700; margin-bottom: 4px; }
.car-card-year { font-size: .8rem; color: var(--gray-400); margin-bottom: 14px; }
.car-card-specs { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-bottom: 16px; }
.car-spec { display: flex; align-items: center; gap: 6px; font-size: .82rem; color: var(--gray-600); }
.car-spec i { color: var(--blue-light); width: 14px; }
.car-card-footer { display: flex; align-items: center; justify-content: space-between; padding-top: 16px; border-top: 1px solid var(--gray-100); }
.car-price-label { font-size: .75rem; color: var(--gray-400); }
.car-price { font-size: 1.4rem; font-weight: 800; color: var(--blue-dark); }
.car-price span { font-size: .75rem; color: var(--gray-400); font-weight: 400; }
.car-card-actions { display: flex; gap: 8px; margin-top: 14px; }
.car-card-actions .btn { flex: 1; justify-content: center; font-size: .85rem; }

/* ── COMPARADOR ── */
.comparador { background: var(--gray-50); }
.comparador-wrapper { background: var(--white); border-radius: var(--radius-xl); box-shadow: var(--shadow-md); overflow: hidden; }
.comparador-selects { display: grid; grid-template-columns: 1fr auto 1fr; gap: 24px; align-items: center; padding: 32px; background: var(--gradient); }
.comparador-vs { font-size: 2rem; font-weight: 900; color: var(--white); opacity: .8; }
.comparador-select-box { background: rgba(255,255,255,.15); border-radius: var(--radius-lg); padding: 20px; }
.comparador-select-box label { display: block; font-size: .8rem; font-weight: 600; color: rgba(255,255,255,.85); text-transform: uppercase; letter-spacing: .04em; margin-bottom: 8px; }
.comparador-select-box select { width: 100%; padding: 10px 14px; border-radius: var(--radius); border: 2px solid rgba(255,255,255,.3); background: rgba(255,255,255,.2); color: var(--white); font-size: .95rem; font-weight: 600; outline: none; }
.comparador-select-box select option { color: var(--gray-800); background: var(--white); }
.comparador-table-wrap { overflow-x: auto; }
.comparador-table { width: 100%; border-collapse: collapse; }
.comparador-table th,
.comparador-table td { padding: 16px 24px; border-bottom: 1px solid var(--gray-100); text-align: left; }
.comparador-table thead th { background: var(--gray-50); font-size: .8rem; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; color: var(--gray-600); }
.comparador-table tbody tr:last-child td { border-bottom: none; }
.comparador-table td:first-child { font-weight: 600; color: var(--gray-600); font-size: .9rem; }
.comparador-table td.highlight { color: var(--blue-dark); font-weight: 700; }

/* ── DESTINOS ── */
.destinos-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 24px; }
.destino-card { position: relative; border-radius: var(--radius-lg); overflow: hidden; height: 320px; cursor: pointer; }
.destino-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.destino-card:hover img { transform: scale(1.08); }
.destino-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,.75) 0%, transparent 60%); }
.destino-info { position: absolute; bottom: 0; left: 0; right: 0; padding: 24px; color: var(--white); }
.destino-info h3 { font-size: 1.2rem; font-weight: 700; margin-bottom: 4px; }
.destino-info p { font-size: .85rem; opacity: .85; margin-bottom: 12px; }

/* ── AVALIAÇÕES ── */
.reviews { background: var(--gray-50); }
.reviews-header { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 20px; margin-bottom: 40px; }
.reviews-score { display: flex; align-items: center; gap: 20px; }
.reviews-score-num { font-size: 4rem; font-weight: 900; color: var(--blue-dark); line-height: 1; }
.reviews-score-details { }
.stars { color: #FBBF24; font-size: 1.2rem; }
.reviews-score-details p { font-size: .85rem; color: var(--gray-400); margin-top: 4px; }
.reviews-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 20px; }
.review-card { background: var(--white); border-radius: var(--radius-lg); padding: 24px; border: 1px solid var(--gray-200); transition: var(--transition); }
.review-card:hover { box-shadow: var(--shadow-md); }
.review-header { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.review-avatar { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; }
.review-name { font-weight: 600; font-size: .95rem; }
.review-date { font-size: .78rem; color: var(--gray-400); }
.review-text { font-size: .9rem; color: var(--gray-600); line-height: 1.6; }

/* ── BLOG ── */
.blog-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 28px; }
.blog-card { background: var(--white); border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--gray-200); transition: var(--transition); }
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.blog-card-img { height: 200px; overflow: hidden; }
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.blog-card:hover .blog-card-img img { transform: scale(1.05); }
.blog-card-body { padding: 20px; }
.blog-card-cat { font-size: .75rem; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; color: var(--blue-light); margin-bottom: 8px; }
.blog-card-title { font-size: 1rem; font-weight: 700; margin-bottom: 10px; line-height: 1.4; }
.blog-card-excerpt { font-size: .875rem; color: var(--gray-600); margin-bottom: 16px; }
.blog-card-footer { display: flex; align-items: center; justify-content: space-between; font-size: .8rem; color: var(--gray-400); }

/* ── FAQ ── */
.faq-list { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item { background: var(--white); border-radius: var(--radius); border: 1px solid var(--gray-200); overflow: hidden; transition: var(--transition); }
.faq-item.active { border-color: var(--blue-light); box-shadow: 0 0 0 3px rgba(30,165,232,.1); }
.faq-question { width: 100%; display: flex; align-items: center; justify-content: space-between; padding: 20px 24px; background: none; border: none; cursor: pointer; font-size: .95rem; font-weight: 600; color: var(--gray-800); text-align: left; gap: 12px; }
.faq-question i { color: var(--blue-light); transition: transform var(--transition); flex-shrink: 0; }
.faq-item.active .faq-question i { transform: rotate(180deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .35s ease, padding .35s ease; }
.faq-answer p { padding: 0 24px 20px; color: var(--gray-600); font-size: .9rem; line-height: 1.7; }

/* ── CONTATO ── */
.contato-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 48px; align-items: start; }
.contato-info h3 { font-size: 1.4rem; font-weight: 800; margin-bottom: 16px; }
.contato-info p { color: var(--gray-600); margin-bottom: 24px; }
.contato-items { display: flex; flex-direction: column; gap: 16px; margin-bottom: 28px; }
.contato-item { display: flex; align-items: center; gap: 14px; }
.contato-item-icon { width: 44px; height: 44px; border-radius: 12px; background: var(--gradient); display: flex; align-items: center; justify-content: center; color: var(--white); flex-shrink: 0; }
.contato-item-text strong { display: block; font-size: .85rem; color: var(--gray-400); font-weight: 500; }
.contato-item-text span { font-weight: 600; color: var(--gray-800); }
.contato-form { background: var(--white); border-radius: var(--radius-xl); padding: 36px; box-shadow: var(--shadow-md); }
.contato-form h3 { font-size: 1.2rem; font-weight: 700; margin-bottom: 24px; }
.contato-form .form-group { margin-bottom: 16px; }
.contato-form textarea { resize: vertical; min-height: 120px; }
.contato-form .form-group input,
.contato-form .form-group select,
.contato-form .form-group textarea { width: 100%; padding: 12px 16px; border: 2px solid var(--gray-200); border-radius: var(--radius); font-size: .95rem; outline: none; transition: var(--transition); }
.contato-form .form-group input:focus,
.contato-form .form-group textarea:focus { border-color: var(--blue-light); box-shadow: 0 0 0 4px rgba(30,165,232,.1); }

/* ── FOOTER ── */
.site-footer { background: var(--gray-800); color: rgba(255,255,255,.85); }
.footer-top { padding: 64px 0 40px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 40px; }
.footer-logo { height: 44px; margin-bottom: 16px; }
.footer-brand p { font-size: .875rem; color: rgba(255,255,255,.65); line-height: 1.7; margin-bottom: 20px; }
.footer-social { display: flex; gap: 12px; }
.footer-social a { width: 38px; height: 38px; border-radius: 10px; background: rgba(255,255,255,.08); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,.7); transition: var(--transition); font-size: .9rem; }
.footer-social a:hover { background: var(--blue-light); color: var(--white); transform: translateY(-2px); }
.footer-col h4 { font-size: .85rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: var(--white); margin-bottom: 16px; }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a { font-size: .875rem; color: rgba(255,255,255,.65); transition: var(--transition); }
.footer-col ul li a:hover { color: var(--orange); padding-left: 4px; }
.footer-contact p { font-size: .875rem; color: rgba(255,255,255,.65); display: flex; align-items: flex-start; gap: 10px; margin-bottom: 10px; }
.footer-contact p i { color: var(--blue-light); margin-top: 3px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding: 20px 0; }
.footer-bottom-inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 10px; font-size: .8rem; color: rgba(255,255,255,.5); }

/* ── WHATSAPP FLOAT (Esquerda) ── */
.whatsapp-float { position: fixed; bottom: 24px; left: 24px; z-index: 9998; }
.whatsapp-float-btn { display: flex; align-items: center; gap: 10px; background: #25D366; color: var(--white); border-radius: 50px; padding: 10px 16px 10px 10px; text-decoration: none; box-shadow: 0 4px 20px rgba(37,211,102,.5); animation: pulseWA 2.5s infinite; }
.whatsapp-float-btn:hover { background: #20BA5A; transform: scale(1.04); animation: none; }
.wf-badge { position: absolute; top: -8px; left: 8px; background: var(--white); color: #25D366; border-radius: 50px; padding: 2px 10px; font-size: .7rem; font-weight: 700; display: flex; align-items: center; gap: 4px; white-space: nowrap; box-shadow: 0 2px 8px rgba(0,0,0,.12); }
.wf-dot { width: 6px; height: 6px; background: #25D366; border-radius: 50%; animation: blink 1.5s infinite; }
.wf-icon { width: 44px; height: 44px; background: rgba(255,255,255,.2); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.4rem; flex-shrink: 0; }
.wf-label { display: flex; flex-direction: column; }
.wf-title { font-size: .8rem; font-weight: 700; line-height: 1; }
.wf-number { font-size: .75rem; opacity: .85; }

@keyframes pulseWA {
    0%   { box-shadow: 0 0 0 0 rgba(37,211,102,.6); }
    70%  { box-shadow: 0 0 0 18px rgba(37,211,102,0); }
    100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}
@keyframes blink {
    0%,100% { opacity: 1; }
    50%      { opacity: .3; }
}
@keyframes pulse-dot {
    0%   { transform: scale(1); opacity: 1; }
    50%  { transform: scale(1.4); opacity: .7; }
    100% { transform: scale(1); opacity: 1; }
}

/* ── AGENTE IA FLOAT (Direita) ── */
.agent-float { position: fixed; bottom: 24px; right: 24px; z-index: 9998; display: flex; flex-direction: column; align-items: flex-end; gap: 12px; }
.agent-toggle-btn { position: relative; width: 64px; height: 64px; border-radius: 50%; border: none; cursor: pointer; background: var(--gradient); padding: 0; box-shadow: 0 4px 24px rgba(0,119,200,.5); animation: floatAgent 3s ease-in-out infinite; }
.agent-toggle-btn:hover { animation: none; transform: scale(1.08); }
.agent-avatar { width: 100%; height: 100%; border-radius: 50%; object-fit: cover; }
.agent-status-dot { position: absolute; bottom: 2px; right: 2px; width: 14px; height: 14px; background: #25D366; border-radius: 50%; border: 2px solid var(--white); }
.agent-attention-ring { position: absolute; inset: -6px; border-radius: 50%; border: 3px solid rgba(30,165,232,.5); animation: attentionRing 2s ease-in-out infinite; }

@keyframes floatAgent {
    0%,100% { transform: translateY(0); }
    50%      { transform: translateY(-10px); }
}
@keyframes attentionRing {
    0%   { transform: scale(1); opacity: 1; }
    100% { transform: scale(1.5); opacity: 0; }
}

.agent-bubble { position: relative; max-width: 280px; background: var(--white); border-radius: 16px 16px 4px 16px; padding: 16px; box-shadow: var(--shadow-lg); border: 1px solid var(--gray-200); animation: bubbleIn .4s ease; }
.agent-bubble::after { content: ''; position: absolute; bottom: -8px; right: 24px; width: 0; height: 0; border-left: 8px solid transparent; border-right: 0px solid transparent; border-top: 8px solid var(--white); }
.agent-bubble p { font-size: .9rem; color: var(--gray-700, #374151); margin-bottom: 12px; line-height: 1.5; }
.agent-bubble-actions { display: flex; gap: 8px; flex-wrap: wrap; }
.agent-bubble-btn { padding: 6px 14px; border-radius: 50px; font-size: .78rem; font-weight: 600; border: 2px solid var(--blue-light); color: var(--blue-light); background: transparent; cursor: pointer; transition: var(--transition); }
.agent-bubble-btn--primary { background: var(--gradient); color: var(--white); border-color: transparent; }
.agent-bubble-btn:hover { background: var(--blue-light); color: var(--white); }
.agent-bubble-close { position: absolute; top: 8px; right: 10px; background: none; border: none; font-size: 1.2rem; color: var(--gray-400); cursor: pointer; line-height: 1; }
@keyframes bubbleIn { from { opacity:0; transform:translateY(12px) scale(.9); } to { opacity:1; transform:none; } }

/* Chat Panel */
.agent-chat-panel { width: 320px; background: var(--white); border-radius: var(--radius-lg); box-shadow: var(--shadow-xl); overflow: hidden; display: none; flex-direction: column; border: 1px solid var(--gray-200); max-height: 480px; }
.agent-chat-panel.open { display: flex; animation: bubbleIn .35s ease; }
.agent-chat-header { background: var(--gradient); padding: 14px 16px; display: flex; align-items: center; gap: 10px; color: var(--white); }
.agent-chat-header img { width: 38px; height: 38px; border-radius: 50%; object-fit: cover; border: 2px solid rgba(255,255,255,.4); }
.agent-chat-header strong { display: block; font-size: .9rem; }
.agent-chat-header span { font-size: .75rem; opacity: .8; }
.agent-chat-close { margin-left: auto; background: none; border: none; color: rgba(255,255,255,.8); font-size: 1.3rem; cursor: pointer; }
.agent-chat-messages { flex: 1; overflow-y: auto; padding: 16px; display: flex; flex-direction: column; gap: 12px; }
.agent-msg { max-width: 85%; }
.agent-msg--bot { align-self: flex-start; }
.agent-msg--user { align-self: flex-end; }
.agent-msg p { padding: 10px 14px; border-radius: 16px; font-size: .875rem; line-height: 1.5; }
.agent-msg--bot p { background: var(--gray-100); color: var(--gray-800); border-radius: 4px 16px 16px 16px; }
.agent-msg--user p { background: var(--gradient); color: var(--white); border-radius: 16px 4px 16px 16px; }
.agent-chat-input { display: flex; padding: 12px; border-top: 1px solid var(--gray-200); gap: 8px; }
.agent-chat-input input { flex: 1; padding: 10px 14px; border: 2px solid var(--gray-200); border-radius: 50px; font-size: .875rem; outline: none; transition: var(--transition); }
.agent-chat-input input:focus { border-color: var(--blue-light); }
.agent-chat-input button { width: 40px; height: 40px; border-radius: 50%; background: var(--gradient); color: var(--white); border: none; cursor: pointer; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }

/* ── SCROLL TO TOP ── */
.scroll-top { position: fixed; bottom: 100px; right: 24px; z-index: 9997; width: 44px; height: 44px; border-radius: 12px; background: var(--gradient); color: var(--white); border: none; cursor: pointer; display: none; align-items: center; justify-content: center; box-shadow: var(--shadow-md); transition: var(--transition); }
.scroll-top.visible { display: flex; }
.scroll-top:hover { transform: translateY(-3px); }

/* ── INSTAGRAM GRID ── */
.instagram-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 8px; }
.instagram-item { position: relative; aspect-ratio: 1; overflow: hidden; border-radius: var(--radius); cursor: pointer; }
.instagram-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.instagram-item:hover img { transform: scale(1.1); }
.instagram-item-overlay { position: absolute; inset: 0; background: rgba(0,119,200,.6); display: flex; align-items: center; justify-content: center; opacity: 0; transition: var(--transition); color: var(--white); font-size: 1.5rem; }
.instagram-item:hover .instagram-item-overlay { opacity: 1; }

/* ── RESERVAR ── */
.reservar-layout { display: grid; grid-template-columns: 1.4fr 1fr; gap: 40px; align-items: start; }
.reservar-steps { display: flex; gap: 0; margin-bottom: 32px; }
.step-item { flex: 1; text-align: center; position: relative; }
.step-item::after { content: ''; position: absolute; top: 20px; left: 50%; width: 100%; height: 2px; background: var(--gray-200); z-index: 0; }
.step-item:last-child::after { display: none; }
.step-item.active .step-num { background: var(--gradient); color: var(--white); }
.step-item.done .step-num { background: #22C55E; color: var(--white); }
.step-num { width: 40px; height: 40px; border-radius: 50%; background: var(--gray-200); color: var(--gray-400); display: flex; align-items: center; justify-content: center; font-weight: 700; margin: 0 auto 6px; position: relative; z-index: 1; }
.step-label { font-size: .75rem; font-weight: 600; color: var(--gray-400); }
.step-item.active .step-label { color: var(--blue-dark); }

/* ── PAINEL / ADMIN ── */
.admin-sidebar { position: fixed; top: 0; left: 0; bottom: 0; width: 260px; background: #0F1C2E; z-index: 100; display: flex; flex-direction: column; transition: var(--transition); overflow-y: auto; }
.admin-sidebar-logo { padding: 20px 24px; border-bottom: 1px solid rgba(255,255,255,.07); }
.admin-sidebar-logo img { height: 40px; }
.admin-nav { padding: 12px 0; flex: 1; }
.admin-nav-group { padding: 20px 24px 8px; font-size: .7rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: rgba(255,255,255,.3); }
.admin-nav a { display: flex; align-items: center; gap: 12px; padding: 11px 24px; font-size: .875rem; font-weight: 500; color: rgba(255,255,255,.65); transition: var(--transition); border-left: 3px solid transparent; }
.admin-nav a:hover,
.admin-nav a.active { color: var(--white); background: rgba(255,255,255,.06); border-left-color: var(--blue-light); }
.admin-nav a.active { background: rgba(30,165,232,.12); }
.admin-nav a i { width: 18px; text-align: center; font-size: .9rem; }
.admin-main { margin-left: 260px; min-height: 100vh; background: var(--gray-50); }
.admin-topbar { background: var(--white); border-bottom: 1px solid var(--gray-200); padding: 0 24px; height: 64px; display: flex; align-items: center; justify-content: space-between; position: sticky; top: 0; z-index: 99; box-shadow: var(--shadow-sm); }
.admin-topbar-title { font-size: 1.1rem; font-weight: 700; color: var(--gray-800); }
.admin-content { padding: 28px 24px; }
.admin-stat-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 20px; margin-bottom: 28px; }
.admin-stat-card { background: var(--white); border-radius: var(--radius-lg); padding: 20px 24px; display: flex; align-items: center; gap: 16px; box-shadow: var(--shadow-sm); border: 1px solid var(--gray-100); }
.admin-stat-icon { width: 52px; height: 52px; border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 1.3rem; flex-shrink: 0; }
.admin-stat-icon.blue   { background: rgba(30,165,232,.12); color: var(--blue-light); }
.admin-stat-icon.orange { background: rgba(248,161,0,.12);  color: var(--orange); }
.admin-stat-icon.green  { background: rgba(34,197,94,.12);  color: #22C55E; }
.admin-stat-icon.red    { background: rgba(239,68,68,.12);   color: #EF4444; }
.admin-stat-info strong { display: block; font-size: 1.6rem; font-weight: 800; line-height: 1; color: var(--gray-800); }
.admin-stat-info span   { font-size: .8rem; color: var(--gray-400); }
.admin-table-card { background: var(--white); border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); border: 1px solid var(--gray-100); overflow: hidden; }
.admin-table-head { display: flex; align-items: center; justify-content: space-between; padding: 18px 20px; border-bottom: 1px solid var(--gray-100); }
.admin-table-head h3 { font-size: 1rem; font-weight: 700; }
.admin-table { width: 100%; border-collapse: collapse; }
.admin-table th { background: var(--gray-50); padding: 12px 16px; text-align: left; font-size: .78rem; font-weight: 700; text-transform: uppercase; letter-spacing: .04em; color: var(--gray-400); }
.admin-table td { padding: 14px 16px; border-bottom: 1px solid var(--gray-100); font-size: .875rem; color: var(--gray-600); vertical-align: middle; }
.admin-table tbody tr:last-child td { border-bottom: none; }
.admin-table tbody tr:hover { background: var(--gray-50); }
.status-badge { padding: 4px 12px; border-radius: 50px; font-size: .72rem; font-weight: 700; }
.status-disponivel { background: rgba(34,197,94,.1); color: #15803D; }
.status-reservado  { background: rgba(30,165,232,.1); color: var(--blue-dark); }
.status-manutencao { background: rgba(239,68,68,.1);  color: #DC2626; }
.status-confirmada { background: rgba(34,197,94,.1); color: #15803D; }
.status-nova       { background: rgba(248,161,0,.12);  color: var(--orange-dark); }
.status-andamento  { background: rgba(30,165,232,.1); color: var(--blue-dark); }
.status-finalizada { background: rgba(100,116,139,.1); color: var(--gray-600); }
.status-cancelada  { background: rgba(239,68,68,.1);  color: #DC2626; }

/* ── ALERTS / MESSAGES ── */
.alert { padding: 14px 18px; border-radius: var(--radius); font-size: .9rem; margin-bottom: 16px; display: flex; align-items: center; gap: 10px; }
.alert-success { background: rgba(34,197,94,.1); color: #15803D; border: 1px solid rgba(34,197,94,.2); }
.alert-error { background: rgba(239,68,68,.1); color: #DC2626; border: 1px solid rgba(239,68,68,.2); }
.alert-info { background: rgba(30,165,232,.1); color: var(--blue-dark); border: 1px solid rgba(30,165,232,.2); }

/* ── PAGINAÇÃO ── */
.pagination { display: flex; gap: 6px; justify-content: center; margin-top: 32px; }
.pagination a, .pagination span { width: 38px; height: 38px; border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: .875rem; font-weight: 600; border: 2px solid var(--gray-200); color: var(--gray-600); transition: var(--transition); }
.pagination a:hover { border-color: var(--blue-light); color: var(--blue-light); }
.pagination .current { background: var(--gradient); color: var(--white); border-color: transparent; }

/* ── LOADER ── */
.page-loader { position: fixed; inset: 0; background: var(--white); z-index: 99999; display: flex; align-items: center; justify-content: center; transition: opacity .5s; }
.page-loader.hidden { opacity: 0; pointer-events: none; }
.loader-spinner { width: 48px; height: 48px; border: 4px solid var(--gray-200); border-top-color: var(--blue-light); border-radius: 50%; animation: spin .8s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

/* ── RESPONSIVE ── */
@media (max-width: 1280px) {
    /* Reduz padding dos itens do menu em telas intermediárias */
    .navbar-menu li a { padding: 6px 8px; font-size: .78rem; }
    .nav-btn { padding: 7px 12px; font-size: .78rem; }
}

@media (max-width: 1100px) {
    .navbar-menu li a { padding: 5px 7px; font-size: .75rem; }
    .nav-btn-text { display: none; }  /* só ícones */
    .nav-btn { padding: 8px 11px; }
}

@media (max-width: 1024px) {
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .contato-grid { grid-template-columns: 1fr; }
    .reservar-layout { grid-template-columns: 1fr; }
    .comparador-selects { grid-template-columns: 1fr auto 1fr; gap: 16px; }
    .admin-main { margin-left: 0; }
    .admin-sidebar { transform: translateX(-100%); }
    .admin-sidebar.open { transform: none; }
}

/* ═══════════════════════════════════════════════
   RESPONSIVO
═══════════════════════════════════════════════ */

/* Tablet grande: comprime links */
@media (max-width: 1100px) {
    .nav-link { padding: 6px 8px; font-size: .79rem; }
    .cta-btn  { padding: 8px 12px; font-size: .79rem; }
}

/* Mobile / tablet ≤ 900px — hamburger ativo */
@media (max-width: 900px) {
    /* Remove topbar, header vai pro topo */
    .site-topbar { display: none !important; }
    .site-header { top: 0 !important; }

    /* Mostra hamburger */
    .nav-hamburger { display: flex !important; }

    /* Esconde nav (abre via JS) */
    .navbar-nav {
        display: none !important;
        position: fixed;
        top: 66px; left: 0; right: 0;
        background: rgba(255,255,255,.98);
        backdrop-filter: blur(16px);
        -webkit-backdrop-filter: blur(16px);
        flex-direction: column !important;
        align-items: stretch;
        padding: 12px 16px 20px;
        box-shadow: 0 8px 28px rgba(0,0,0,.14);
        border-top: 1px solid var(--gray-200);
        gap: 3px !important;
        z-index: 999;
    }
    .navbar-nav.open { display: flex !important; }
    .nav-link {
        color: var(--gray-800) !important;
        padding: 13px 14px !important;
        border-radius: 10px;
        font-size: .95rem !important;
        white-space: normal !important;
    }
    .nav-link:hover, .nav-link.active {
        background: rgba(30,165,232,.09) !important;
        color: var(--blue-dark) !important;
    }

    /* CTA: só ícone */
    .cta-btn span { display: none; }
    .cta-btn { padding: 9px 11px; }
    .navbar-cta { margin-left: 8px; gap: 6px; }

    .section { padding: 56px 0; }
    .footer-grid { grid-template-columns: 1fr; gap: 28px; }
    .hero-stats { gap: 24px; }
    .comparador-selects { grid-template-columns: 1fr; }
    .comparador-vs { display: none; }
    .whatsapp-float { bottom: 16px; left: 16px; }
    .agent-float { bottom: 16px; right: 16px; }
    .wf-label { display: none; }
    .whatsapp-float-btn { padding: 10px; border-radius: 50%; }
    .wf-badge { display: none; }
    .wf-icon { width: 52px; height: 52px; font-size: 1.6rem; }
    .search-form { grid-template-columns: 1fr; }
    .destinos-grid { grid-template-columns: 1fr; }
    .reservar-layout { grid-template-columns: 1fr; }
    .contato-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
    .hero h1 { font-size: 2rem; }
    .fleet-grid { grid-template-columns: 1fr; }
    .reviews-grid { grid-template-columns: 1fr; }
    .blog-grid { grid-template-columns: 1fr; }
    .agent-chat-panel { width: calc(100vw - 32px); right: 16px; }
}