/* ============================================================
   CENTROSUL TURISMO — Design System
   ============================================================ */

:root {
    --primary: #002147;
    --primary-light: #003366;
    --accent: #FF8C00;
    --accent-dark: #e07a00;
    --success: #25D366;
    --bg: #f4f7fa;
    --bg-white: #ffffff;
    --text: #1a2332;
    --text-muted: #64748b;
    --border: #e2e8f0;
    --radius-sm: 10px;
    --radius-md: 18px;
    --radius-lg: 28px;
    --radius-xl: 40px;
    --shadow-sm: 0 2px 12px rgba(0,33,71,.06);
    --shadow-md: 0 8px 28px rgba(0,33,71,.09);
    --shadow-lg: 0 20px 50px rgba(0,33,71,.13);
    --font: 'Nunito', sans-serif;
    --header-h: 100px;
    --max-w: 1200px;
    --transition: .25s cubic-bezier(.4,0,.2,1);
}

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

html { scroll-behavior: smooth; }

body {
    font-family: var(--font);
    font-size: 17px;
    color: var(--text);
    background: var(--bg-white);
    line-height: 1.7;
    overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* ── CONTAINER ── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }

/* ── TYPOGRAPHY ── */
.section-heading {
    text-align: center;
    margin-bottom: 52px;
}
.section-heading .label {
    display: inline-block;
    background: rgba(255,140,0,.12);
    color: var(--accent);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: 14px;
}
.section-heading h2 {
    font-size: clamp(26px, 3.5vw, 40px);
    font-weight: 900;
    color: var(--primary);
    line-height: 1.2;
}
.section-heading h2 span { color: var(--accent); }
.section-heading p {
    margin-top: 12px;
    color: var(--text-muted);
    font-size: 17px;
    max-width: 560px;
    margin-inline: auto;
}

/* ── BUTTONS ── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: 50px;
    font-family: var(--font);
    font-weight: 800;
    font-size: 16px;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: .5px;
}
.btn-primary {
    background: var(--accent);
    color: white;
    box-shadow: 0 8px 24px rgba(255,140,0,.35);
}
.btn-primary:hover { background: var(--accent-dark); transform: translateY(-2px); box-shadow: 0 12px 28px rgba(255,140,0,.4); }

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

.btn-wa {
    background: var(--success);
    color: white;
    box-shadow: 0 8px 24px rgba(37,211,102,.3);
}
.btn-wa:hover { background: #1ebe57; transform: translateY(-2px); }

.btn svg { width: 20px; height: 20px; fill: currentColor; flex-shrink: 0; }

/* ── BADGE ── */
.badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.badge-accent { background: var(--accent); color: white; }
.badge-primary { background: var(--primary); color: white; }
.badge-success { background: var(--success); color: white; }
.badge-muted { background: var(--border); color: var(--text-muted); }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    height: var(--header-h);
    background: rgba(255,255,255,.95);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(0,33,71,.06);
    transition: box-shadow var(--transition);
}
.site-header.scrolled { box-shadow: var(--shadow-md); }

.header-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 24px;
    height: 100%;
    display: flex;
    align-items: center;
    gap: 32px;
}

.header-logo img { height: 78px; width: auto; }

.header-nav {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-left: auto;
}

.nav-link {
    padding: 10px 16px;
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-size: 16px;
    color: var(--text);
    transition: var(--transition);
    background: none;
    border: none;
    cursor: pointer;
    font-family: var(--font);
    display: flex;
    align-items: center;
    gap: 4px;
}
.nav-link svg { width: 18px; fill: currentColor; }
.nav-link:hover, .nav-link.active { color: var(--accent); background: rgba(255,140,0,.08); }

.nav-dropdown { position: relative; }
.nav-dropdown-btn { white-space: nowrap; }
.nav-dropdown-menu {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    background: white;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);
    min-width: 220px;
    padding: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: var(--transition);
    z-index: 100;
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.nav-dropdown-menu a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-size: 14px;
    transition: var(--transition);
}
.nav-dropdown-menu a svg {
    width: 18px;
    height: 18px;
    fill: var(--text-muted);
    flex-shrink: 0;
    transition: fill var(--transition);
}
.nav-dropdown-menu a:hover { background: var(--bg); color: var(--accent); }
.nav-dropdown-menu a:hover svg { fill: var(--accent); }

.btn-wa-header {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--success);
    color: white;
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 14px;
    white-space: nowrap;
    transition: var(--transition);
}
.btn-wa-header svg { width: 18px; fill: white; }
.btn-wa-header:hover { background: #1ebe57; transform: translateY(-1px); }

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}
.menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--primary);
    border-radius: 2px;
    transition: var(--transition);
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
    height: 72vh;
    min-height: 420px;
    position: relative;
    overflow: hidden;
}

/* Carousel slides — stacked, crossfade */
.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.4s ease;
    z-index: 0;
    will-change: opacity;
}
.hero-slide.active { opacity: 1; }


/* Dot indicators */
.hero-dots {
    position: absolute;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    gap: 10px;
    align-items: center;
}
.hero-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,.38);
    border: 2px solid rgba(255,255,255,.55);
    cursor: pointer;
    padding: 0;
    transition: all .3s ease;
}
.hero-dot.active {
    background: white;
    border-color: white;
    transform: scale(1.35);
}
.hero-dot:hover { background: rgba(255,255,255,.7); }
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:.4} }

/* ============================================================
   ROTEIRO CARDS
   ============================================================ */
.roteiros-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 24px;
}

.roteiro-card {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    color: inherit;
    text-decoration: none;
    cursor: pointer;
}
.roteiro-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }

.card-thumb {
    position: relative;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: var(--primary);
}
.card-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform .6s ease;
}
.roteiro-card:hover .card-thumb img { transform: scale(1.08); }

.card-date-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--primary);
    color: white;
    border-radius: var(--radius-sm);
    padding: 6px 12px;
    text-align: center;
    line-height: 1.2;
}
.card-date-badge .day { font-size: 22px; font-weight: 900; display: block; }
.card-date-badge .month { font-size: 11px; font-weight: 700; text-transform: uppercase; opacity: .8; }

.card-destaque-flag {
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--accent);
    color: white;
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 50px;
    letter-spacing: 1px;
}

.card-vagas-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: rgba(255,255,255,.3);
}
.card-vagas-bar-fill {
    height: 100%;
    background: var(--success);
    transition: width .5s;
}
.card-vagas-bar-fill.critico { background: #ef4444; }
.card-vagas-bar-fill.baixo { background: #f59e0b; }

.card-body {
    padding: 22px;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.card-cat {
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--accent);
    margin-bottom: 8px;
}
.card-title {
    font-size: 17px;
    font-weight: 800;
    color: var(--primary);
    line-height: 1.3;
    margin-bottom: 10px;
    flex: 1;
}
.card-desc {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 16px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Datas saída/retorno destacadas */
.card-dates {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(0,33,71,.05);
    border-radius: 10px;
    padding: 10px 14px;
    margin-bottom: 14px;
    flex-wrap: wrap;
}
.cd-item { display: flex; flex-direction: column; gap: 2px; }
.cd-label {
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .8px;
    color: var(--accent);
}
.cd-val {
    font-size: 13px;
    font-weight: 800;
    color: var(--primary);
    white-space: nowrap;
}
.cd-sep { font-size: 16px; font-weight: 700; color: var(--text-muted); }

.card-urgency {
    font-size: 12px;
    font-weight: 800;
    color: #ef4444;
    margin-bottom: 12px;
}

.card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 16px;
    border-top: 1px solid var(--border);
    margin-top: auto;
}
.card-price-label { font-size: 11px; font-weight: 600; color: var(--text-muted); }
.card-price { font-size: 20px; font-weight: 900; color: var(--primary); line-height: 1; }
.card-price-de { font-size: 12px; color: var(--text-muted); text-decoration: line-through; }

.card-link-arrow {
    background: var(--primary);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    flex-shrink: 0;
}
.card-link-arrow svg { width: 18px; fill: white; }
.roteiro-card:hover .card-link-arrow { background: var(--accent); transform: scale(1.1); }

.card-esgotado { opacity: .7; }
.card-esgotado .card-link-arrow { background: #94a3b8; }
.esgotado-tag {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,.5);
    color: white;
    font-weight: 900;
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* ============================================================
   ROTEIRO INDIVIDUAL
   ============================================================ */
.roteiro-page { padding-top: var(--header-h); }

.roteiro-hero {
    position: relative;
    height: 520px;
    overflow: hidden;
    background: var(--primary);
}
.roteiro-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: .7;
}
.roteiro-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,33,71,.95) 0%, rgba(0,33,71,.3) 60%, transparent 100%);
    display: flex;
    align-items: flex-end;
    padding: 48px;
}
.roteiro-hero-content { color: white; max-width: 800px; }
.roteiro-hero-content .badge { margin-bottom: 12px; }
.roteiro-hero-content h1 {
    font-size: clamp(28px, 4vw, 48px);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 12px;
}
.roteiro-hero-content p { font-size: 18px; opacity: .9; }

/* Photo Gallery Thumbs */
.gallery-thumbs {
    display: flex;
    gap: 8px;
    padding: 12px 48px;
    background: var(--primary);
    overflow-x: auto;
    scrollbar-width: none;
}
.gallery-thumbs::-webkit-scrollbar { display: none; }
.gallery-thumb {
    width: 80px;
    height: 56px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
    cursor: pointer;
    opacity: .6;
    transition: var(--transition);
    border: 2px solid transparent;
}
.gallery-thumb.active, .gallery-thumb:hover { opacity: 1; border-color: var(--accent); }
.gallery-thumb img { width: 100%; height: 100%; object-fit: cover; }

/* Roteiro container padding */
.roteiro-container {
    padding-top: calc(var(--header-h) + 20px);
    padding-bottom: 0;
}

/* Prevent rich HTML content in tabs from overflowing */
.tab-content {
    word-break: break-word;
    overflow-wrap: break-word;
    min-width: 0;
    max-width: 100%;
}
.tab-content img  { max-width: 100%; height: auto; display: block; }
.tab-content table { max-width: 100%; overflow-x: auto; display: block; border-collapse: collapse; }
.tab-content pre, .tab-content code { overflow-x: auto; max-width: 100%; white-space: pre-wrap; }
.tab-content h3, .tab-content p, .tab-content li { max-width: 100%; }

/* Roteiro layout */
.roteiro-layout {
    display: grid;
    grid-template-columns: 1fr 340px;
    grid-template-areas: "main sidebar";
    gap: 32px;
    padding: 32px 0 48px;
    align-items: start;
}
.roteiro-main-col { grid-area: main; min-width: 0; overflow: hidden; }
.roteiro-sidebar  { grid-area: sidebar; min-width: 0; }

/* Breadcrumb */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-muted);
    margin-bottom: 28px;
    flex-wrap: wrap;
}
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb-sep { opacity: .4; }

/* Tabs */
.tabs-nav {
    display: flex;
    gap: 4px;
    border-bottom: 2px solid var(--border);
    margin-bottom: 32px;
    overflow-x: auto;
    scrollbar-width: none;
}
.tabs-nav::-webkit-scrollbar { display: none; }
.tab-btn {
    padding: 12px 22px;
    font-family: var(--font);
    font-weight: 800;
    font-size: 15px;
    color: var(--text-muted);
    background: none;
    border: none;
    border-bottom: 3px solid transparent;
    margin-bottom: -2px;
    cursor: pointer;
    white-space: nowrap;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: .5px;
}
.tab-btn:hover { color: var(--primary); }
.tab-btn.active { color: var(--accent); border-bottom-color: var(--accent); }

.tab-panel { display: none; }
.tab-panel.active { display: block; animation: tabFade .3s ease; }
@keyframes tabFade { from{opacity:0;transform:translateY(6px)} to{opacity:1;transform:none} }

.tab-content h3 {
    font-size: 20px;
    font-weight: 800;
    color: var(--primary);
    margin: 28px 0 12px;
}
.tab-content h3:first-child { margin-top: 0; }
.tab-content p { font-size: 17px; line-height: 1.8; color: var(--text-muted); margin-bottom: 16px; }
.tab-content ul, .tab-content ol { padding-left: 20px; margin-bottom: 16px; }
.tab-content li { font-size: 17px; line-height: 1.75; color: var(--text-muted); }
.tab-content strong { color: var(--text); }

/* Incluso/não incluso */
.incluso-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}
.incluso-box {
    background: var(--bg);
    border-radius: var(--radius-md);
    padding: 24px;
}
.incluso-box h4 {
    font-size: 15px;
    font-weight: 900;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.incluso-box.sim h4 { color: var(--success); }
.incluso-box.nao h4 { color: #ef4444; }
.incluso-box ul { list-style: none; padding: 0; }
.incluso-box li {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    font-size: 14px;
    font-weight: 600;
    padding: 7px 0;
    border-bottom: 1px solid var(--border);
    color: var(--text);
}
.incluso-box li:last-child { border: none; }
.incluso-box li::before {
    content: '';
    width: 18px;
    height: 18px;
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 1px;
}
.incluso-box.sim li::before { background: var(--success) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='white' d='M9 16.2L4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/%3E%3C/svg%3E") center/12px no-repeat; }
.incluso-box.nao li::before { background: #ef4444 url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='white' d='M19 6.41L17.59 5 12 10.59 6.41 5 5 6.41 10.59 12 5 17.59 6.41 19 12 13.41 17.59 19 19 17.59 13.41 12z'/%3E%3C/svg%3E") center/10px no-repeat; }

/* Roteiro Sidebar */
.roteiro-sidebar { position: sticky; top: calc(var(--header-h) + 24px); }

.sidebar-card {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border);
    overflow: hidden;
}
.sidebar-header {
    background: var(--primary);
    color: white;
    padding: 24px;
}
.sidebar-header .price-label { font-size: 12px; font-weight: 700; opacity: .7; text-transform: uppercase; letter-spacing: 1px; }
.sidebar-header .price { font-size: 36px; font-weight: 900; color: var(--accent); line-height: 1.1; }
.sidebar-header .price-de { font-size: 14px; opacity: .6; text-decoration: line-through; margin-bottom: 4px; }

.sidebar-info { padding: 24px; }
.sidebar-row {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
}
.sidebar-row:last-child { border: none; }
.sidebar-row-icon {
    width: 36px;
    height: 36px;
    background: rgba(255,140,0,.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.sidebar-row-icon svg { width: 18px; fill: var(--accent); }
.sidebar-row-label { font-size: 12px; font-weight: 700; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; }
.sidebar-row-value { font-size: 16px; font-weight: 800; color: var(--primary); }

.sidebar-vagas {
    padding: 16px 24px;
    background: var(--bg);
    border-top: 1px solid var(--border);
}
.vagas-label { font-size: 12px; font-weight: 700; color: var(--text-muted); margin-bottom: 6px; display: flex; justify-content: space-between; }
.vagas-bar-bg { height: 6px; background: var(--border); border-radius: 3px; overflow: hidden; }
.vagas-bar-fill { height: 100%; border-radius: 3px; background: var(--success); transition: width .5s; }
.vagas-bar-fill.critico { background: #ef4444; }
.vagas-bar-fill.baixo { background: #f59e0b; }

.sidebar-cta { padding: 24px; display: flex; flex-direction: column; gap: 12px; }
.sidebar-cta .btn { width: 100%; justify-content: center; }

/* ── Galeria do roteiro ── */
.roteiro-photo-wrapper {
    display: grid;
    grid-template-columns: 1fr 108px;
    gap: 6px;
    margin-bottom: 32px;
}

.roteiro-photo-hero {
    aspect-ratio: 4 / 3;
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-lg);
    background: var(--primary);
    min-width: 0;
}
.roteiro-photo-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: opacity .25s ease;
}
.photo-fullscreen-btn {
    position: absolute;
    bottom: 12px;
    right: 12px;
    background: rgba(0,0,0,.55);
    color: white;
    border: none;
    border-radius: 8px;
    padding: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    backdrop-filter: blur(4px);
    line-height: 0;
    z-index: 1;
}
.photo-fullscreen-btn:hover { background: rgba(0,0,0,.82); }
.photo-fullscreen-btn svg { width: 20px; fill: white; }

.roteiro-photo-strip {
    display: flex;
    flex-direction: column;
    gap: 4px;
    overflow: hidden;
    padding: 4px;
    align-self: stretch;
}

.strip-thumb {
    flex: 1 1 0;
    min-height: 0;
    width: 100%;
    border-radius: 4px;
    overflow: hidden;
    cursor: pointer;
    opacity: .5;
    border: 2px solid transparent;
    transition: var(--transition);
}
.strip-thumb:hover { opacity: .85; }
.strip-thumb.active { opacity: 1; border-color: var(--accent); }
.strip-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ── Sobre o lugar ── */
.roteiro-sobre {
    background: var(--bg);
    border-radius: var(--radius-md);
    padding: 24px 28px;
    margin-bottom: 28px;
    border-left: 4px solid var(--accent);
}
.roteiro-sobre h3 {
    font-size: 14px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--accent);
    margin-bottom: 10px;
}
.roteiro-sobre p {
    font-size: 17px;
    line-height: 1.75;
    color: var(--text-muted);
    margin: 0;
}

/* ── Sidebar: new layout ── */
.sidebar-top {
    padding: 24px 24px 20px;
    border-bottom: 1px solid var(--border);
}
.sidebar-title {
    font-size: 20px;
    font-weight: 900;
    color: var(--primary);
    line-height: 1.25;
    margin-bottom: 6px;
}
.sidebar-desc {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.55;
    margin: 0;
}

.sidebar-dates-row {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 0;
    border-top: 1px solid var(--border);
    flex-wrap: wrap;
}
.sidebar-date-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 700;
    color: var(--primary);
}
.sidebar-date-item svg { width: 15px; fill: var(--accent); flex-shrink: 0; }
.sidebar-date-sep { font-size: 15px; font-weight: 700; color: var(--text-muted); }

/* ── Price block ── */
.sidebar-price-block {
    padding: 20px 24px;
    background: linear-gradient(135deg, var(--primary) 0%, #003a6e 100%);
    color: white;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}
.sidebar-price-block .price-de {
    font-size: 13px;
    font-weight: 600;
    text-decoration: line-through;
    opacity: .6;
    margin-bottom: 2px;
}
.sidebar-price-block .price-label {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: .7;
}
.sidebar-price-block .price-value {
    font-size: 32px;
    font-weight: 900;
    color: var(--accent);
    line-height: 1.1;
    margin: 2px 0 4px;
}
.sidebar-price-block .price-obs {
    font-size: 12px;
    opacity: .75;
    margin-top: 4px;
}

/* ── CTA button modifiers ── */
.sidebar-btn-duvidas {
    background: var(--bg) !important;
    color: var(--text) !important;
    border: 2px solid var(--border) !important;
    box-shadow: none !important;
}
.sidebar-btn-duvidas:hover {
    border-color: var(--success) !important;
    color: var(--success) !important;
    background: rgba(37,211,102,.07) !important;
    transform: none !important;
}
.sidebar-btn-duvidas svg { fill: var(--success) !important; }
.sidebar-btn-comprar { width: 100%; justify-content: center; }

/* ── Gallery Modal ── */
.gallery-modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.92);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 16px;
}
.gallery-modal.open { display: flex; }
.gallery-modal-img {
    max-width: 90vw;
    max-height: 75vh;
    border-radius: var(--radius-md);
    object-fit: contain;
}
.gallery-modal-close {
    position: absolute;
    top: 20px; right: 24px;
    background: none;
    border: none;
    color: white;
    font-size: 36px;
    cursor: pointer;
    line-height: 1;
    opacity: .7;
}
.gallery-modal-close:hover { opacity: 1; }
.gallery-modal-thumbs {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    max-width: 90vw;
    padding: 4px 0;
    scrollbar-width: none;
}
.gallery-modal-thumbs::-webkit-scrollbar { display: none; }
.gallery-modal-thumb {
    width: 72px;
    height: 50px;
    border-radius: 6px;
    overflow: hidden;
    flex-shrink: 0;
    cursor: pointer;
    opacity: .5;
    border: 2px solid transparent;
    transition: var(--transition);
}
.gallery-modal-thumb.active, .gallery-modal-thumb:hover { opacity: 1; border-color: var(--accent); }
.gallery-modal-thumb img { width: 100%; height: 100%; object-fit: cover; }

/* ============================================================
   ROTEIROS LIST PAGE
   ============================================================ */
.page-hero {
    background: linear-gradient(135deg, var(--primary) 0%, #003d7a 100%);
    color: white;
    padding: calc(var(--header-h) + 12px) 0 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
    clip-path: polygon(0 0, 100% 0, 100% 84%, 0 100%);
    margin-bottom: -40px;
}
.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(255,255,255,.07) 1px, transparent 1px);
    background-size: 30px 30px;
    pointer-events: none;
}
.page-hero > * { position: relative; z-index: 1; }
.page-hero h1 {
    font-size: clamp(32px, 5vw, 56px);
    font-weight: 900;
    margin-bottom: 14px;
    letter-spacing: -1px;
}
.page-hero h1 span { color: var(--accent); }
.page-hero p { font-size: 18px; opacity: .82; max-width: 520px; margin: 0 auto; line-height: 1.6; }

.filters-bar {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    padding: 52px 0 28px;
    align-items: center;
    position: relative;
    z-index: 2;
}
.filter-chip {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 10px 20px;
    border-radius: 50px;
    font-family: var(--font);
    font-size: 13px;
    font-weight: 700;
    border: 2px solid var(--border);
    background: white;
    color: var(--text-muted);
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
}
.filter-chip svg { width: 16px; fill: currentColor; flex-shrink: 0; }
.filter-chip:hover { border-color: var(--primary); color: var(--primary); }
.filter-chip.active { background: var(--primary); border-color: var(--primary); color: white; }

.sort-select {
    margin-left: auto;
    padding: 9px 16px;
    border-radius: 50px;
    border: 2px solid var(--border);
    font-family: var(--font);
    font-weight: 700;
    font-size: 13px;
    color: var(--text);
    background: white;
    cursor: pointer;
    outline: none;
}
.sort-select:focus { border-color: var(--primary); }

/* ============================================================
   SECTION: BENEFITS / WHY US
   ============================================================ */
.benefits-section {
    background: var(--primary);
    padding: 96px 0;
    color: white;
}
.benefits-editorial {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 72px;
    align-items: center;
}
.benefits-headline h2 {
    font-size: clamp(28px, 3.5vw, 44px);
    font-weight: 900;
    color: white;
    line-height: 1.12;
    margin: 16px 0 20px;
}
.benefits-headline h2 span { color: var(--accent); }
.benefits-headline p { font-size: 15px; color: rgba(255,255,255,.6); line-height: 1.75; margin-bottom: 36px; }
.benefits-stats {
    display: flex;
    gap: 0;
    margin-top: 36px;
    border-top: 1px solid rgba(255,255,255,.12);
    padding-top: 32px;
}
.benefits-stat {
    flex: 1;
    padding-right: 24px;
    border-right: 1px solid rgba(255,255,255,.12);
}
.benefits-stat:last-child { border-right: none; padding-right: 0; padding-left: 24px; }
.benefits-stat strong { display: block; font-size: 36px; font-weight: 900; color: var(--accent); line-height: 1; margin-bottom: 4px; }
.benefits-stat span { font-size: 12px; color: rgba(255,255,255,.55); font-weight: 700; text-transform: uppercase; letter-spacing: 1px; }

.benefits-list { display: flex; flex-direction: column; }
.benefit-item {
    display: grid;
    grid-template-columns: 52px 1fr;
    gap: 20px;
    padding: 24px 0;
    border-bottom: 1px solid rgba(255,255,255,.08);
    align-items: flex-start;
    transition: background .2s;
}
.benefit-item:first-child { border-top: 1px solid rgba(255,255,255,.08); }
.benefit-icon-wrap {
    width: 44px;
    height: 44px;
    background: rgba(255,140,0,.15);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background .2s;
}
.benefit-item:hover .benefit-icon-wrap { background: rgba(255,140,0,.28); }
.benefit-icon-wrap svg { width: 22px; fill: var(--accent); }
.benefit-item h3 { font-size: 16px; font-weight: 800; color: white; margin-bottom: 5px; }
.benefit-item p { font-size: 13px; color: rgba(255,255,255,.58); line-height: 1.65; }

/* ============================================================
   SECTION: CTA BANNER
   ============================================================ */
.cta-section {
    padding: 80px 0;
    background: var(--bg);
}
.cta-card {
    background: var(--primary);
    border-radius: var(--radius-xl);
    padding: 64px 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}
.cta-card h2 {
    font-size: clamp(26px, 3.5vw, 38px);
    font-weight: 900;
    color: white;
    line-height: 1.2;
}
.cta-card h2 span { color: var(--accent); }
.cta-card p { font-size: 16px; color: rgba(255,255,255,.75); margin-top: 8px; max-width: 440px; }
.cta-actions { display: flex; flex-direction: column; gap: 12px; flex-shrink: 0; }

/* ============================================================
   SOBRE PAGE
   ============================================================ */
.about-section { padding: 80px 0; }

.about-grid {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 48px;
    align-items: center;
    margin-bottom: 64px;
}
.about-text h2 {
    font-size: clamp(28px, 3.5vw, 40px);
    font-weight: 900;
    color: var(--primary);
    line-height: 1.2;
    margin-bottom: 20px;
}
.about-text h2 span { color: var(--accent); }
.about-text p { font-size: 16px; line-height: 1.8; color: var(--text-muted); margin-bottom: 16px; }
.about-stat-card {
    background: var(--primary);
    border-radius: var(--radius-xl);
    padding: 48px;
    text-align: center;
    color: white;
}
.about-stat-card .number { font-size: 80px; font-weight: 900; color: var(--accent); line-height: 1; }
.about-stat-card p { font-size: 16px; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; opacity: .8; margin-top: 12px; }

.mvv-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.mvv-card {
    border-radius: var(--radius-lg);
    padding: 44px 36px;
    position: relative;
    overflow: hidden;
    transition: transform .3s ease;
}
.mvv-card:hover { transform: translateY(-5px); }
.mvv-card:nth-child(1) { background: var(--primary); color: white; }
.mvv-card:nth-child(2) { background: var(--accent); color: white; }
.mvv-card:nth-child(3) { background: #003d7a; color: white; }
.mvv-card-letter {
    position: absolute;
    right: -8px;
    top: -16px;
    font-size: 110px;
    font-weight: 900;
    color: rgba(255,255,255,.07);
    line-height: 1;
    pointer-events: none;
    user-select: none;
    font-family: inherit;
}
.mvv-card h3 {
    font-size: 22px;
    font-weight: 900;
    margin-bottom: 16px;
    position: relative;
}
.mvv-card p { font-size: 14px; line-height: 1.75; opacity: .82; position: relative; }

/* ── Founder photo ── */
.about-founder-photo {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}
.about-founder-photo img {
    width: 100%;
    display: block;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    object-position: top center;
}
.about-founder-badge {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    background: linear-gradient(to top, rgba(0,21,56,.92) 0%, transparent 100%);
    padding: 48px 28px 28px;
    color: white;
}
.about-founder-badge strong {
    display: block;
    font-size: 20px;
    font-weight: 900;
    margin-bottom: 4px;
}
.about-founder-badge span {
    font-size: 12px;
    color: var(--accent);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.2px;
}

/* ── About stats row ── */
.about-stats-row {
    display: flex;
    gap: 16px;
    margin-top: 28px;
    flex-wrap: wrap;
}
.about-stat-pill {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 14px 24px;
    text-align: center;
    flex: 1;
    min-width: 80px;
}
.about-stat-pill strong {
    display: block;
    font-size: 26px;
    font-weight: 900;
    color: var(--accent);
    line-height: 1;
}
.about-stat-pill span {
    font-size: 11px;
    font-weight: 800;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 4px;
    display: block;
}

/* ── Evolution block ── */
.about-evolution {
    background: var(--bg);
    border-radius: var(--radius-xl);
    padding: 56px 64px;
    margin: 72px 0 72px;
}
.about-evolution-text h2 {
    font-size: clamp(26px, 3vw, 36px);
    font-weight: 900;
    color: var(--primary);
    line-height: 1.2;
    margin-bottom: 20px;
}
.about-evolution-text h2 span { color: var(--accent); }
.about-evolution-text p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-muted);
    margin-bottom: 12px;
    max-width: 720px;
}

/* ── Pillars ── */
.pillar-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 80px;
}
.pillar-card {
    background: white;
    border: 1px solid var(--border);
    border-top: 3px solid var(--accent);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    box-shadow: var(--shadow-sm);
    transition: transform .25s ease, box-shadow .25s ease;
}
.pillar-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.pillar-icon {
    width: 48px;
    height: 48px;
    background: rgba(255,140,0,.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}
.pillar-icon svg { width: 24px; fill: var(--accent); }
.pillar-card h3 { font-size: 17px; font-weight: 900; color: var(--primary); margin-bottom: 10px; }
.pillar-card p { font-size: 14px; color: var(--text-muted); line-height: 1.7; }

/* ── Team section ── */
.about-team-section { padding: 0 0 80px; }
.about-team-photo {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    max-height: 420px;
}
.about-team-photo img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    object-position: center center;
    display: block;
}

/* ============================================================
   CONTATO
   ============================================================ */
.contato-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    padding: 60px 0;
}
.contato-info-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 40px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
}
.contato-info-card h2 {
    font-size: 28px;
    font-weight: 900;
    color: var(--primary);
    margin-bottom: 8px;
}
.contato-info-card h2 span { color: var(--accent); }
.contato-info-card > p { font-size: 15px; color: var(--text-muted); margin-bottom: 32px; }
.contato-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    margin-bottom: 20px;
}
.ci-icon {
    width: 48px;
    height: 48px;
    background: rgba(255,140,0,.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.ci-icon svg { width: 22px; fill: var(--accent); }
.ci-icon.wa { background: rgba(37,211,102,.1); }
.ci-icon.wa svg { fill: var(--success); }
.ci-label { font-size: 12px; font-weight: 700; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; }
.ci-value { font-size: 16px; font-weight: 800; color: var(--primary); }
.ci-value a { color: var(--primary); transition: var(--transition); }
.ci-value a:hover { color: var(--accent); }
.ci-value-row { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }

.wa-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: rgba(37,211,102,.13);
    color: #1a9c4e;
    font-size: 11px;
    font-weight: 800;
    padding: 3px 9px;
    border-radius: 50px;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: .4px;
    border: 1px solid rgba(37,211,102,.25);
    transition: background .2s;
    white-space: nowrap;
}
.wa-badge:hover { background: rgba(37,211,102,.22); }
.wa-badge svg { width: 11px; height: 11px; fill: #1a9c4e; flex-shrink: 0; }

/* footer phone wa badge (dark bg version) */
.footer-wa-badge {
    display: inline-flex;
    align-items: center;
    gap: 3px;
    background: rgba(37,211,102,.15);
    color: var(--success);
    font-size: 10px;
    font-weight: 800;
    padding: 2px 7px;
    border-radius: 50px;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: .4px;
    border: 1px solid rgba(37,211,102,.3);
    transition: background .2s;
    white-space: nowrap;
}
.footer-wa-badge:hover { background: rgba(37,211,102,.28); }
.footer-wa-badge svg { width: 10px; height: 10px; fill: var(--success); flex-shrink: 0; }

.map-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    min-height: 400px;
}
.map-card iframe { width: 100%; height: 100%; min-height: 400px; border: none; display: block; }

/* ============================================================
   FROTA PAGE
   ============================================================ */
.frota-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 32px;
    padding: 60px 0;
    align-items: start;
}
.frota-nav {
    background: white;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    overflow: hidden;
    position: sticky;
    top: calc(var(--header-h) + 20px);
}
.frota-nav-btn {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    border-bottom: 1px solid var(--border);
    padding: 16px 20px;
    font-family: var(--font);
    cursor: pointer;
    transition: var(--transition);
    border-left: 3px solid transparent;
}
.frota-nav-btn:last-child { border-bottom: none; }
.frota-nav-btn strong { display: block; font-size: 14px; color: var(--primary); font-weight: 800; }
.frota-nav-btn span { font-size: 12px; color: var(--text-muted); }
.frota-nav-btn:hover { background: var(--bg); }
.frota-nav-btn.active { border-left-color: var(--accent); background: rgba(255,140,0,.05); }
.frota-nav-btn.active strong { color: var(--accent); }

.frota-tab { display: none; }
.frota-tab.active { display: block; animation: tabFade .3s ease; }

.frota-carousel {
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
    height: 420px;
    margin-bottom: 24px;
    background: var(--primary);
}
.frota-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity .5s;
}
.frota-slide.active { opacity: 1; }
.frota-carousel-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,33,71,.9) 0%, transparent 60%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 32px;
    pointer-events: none;
}
.frota-carousel-overlay h2 { color: white; font-size: 26px; font-weight: 900; }
.frota-carousel-overlay p { color: var(--accent); font-weight: 700; font-size: 16px; }
.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    background: rgba(0,0,0,.4);
    color: white;
    border: none;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    backdrop-filter: blur(6px);
    transition: var(--transition);
    font-size: 18px;
}
.carousel-arrow:hover { background: var(--accent); }
.carousel-arrow.prev { left: 16px; }
.carousel-arrow.next { right: 16px; }

.frota-features {
    background: white;
    border-radius: var(--radius-lg);
    padding: 28px;
    border: 1px solid var(--border);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}
.frota-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 700;
    color: var(--text);
}
.frota-feature::before {
    content: '';
    width: 20px;
    height: 20px;
    border-radius: 50%;
    flex-shrink: 0;
    background: var(--success) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='white' d='M9 16.2L4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/%3E%3C/svg%3E") center/11px no-repeat;
}

/* ============================================================
   LOJISTAS PAGE
   ============================================================ */
.lojistas-bento {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 56px;
}
.bento-card {
    background: var(--primary);
    color: white;
    border-radius: var(--radius-lg);
    padding: 40px 36px;
    position: relative;
    overflow: hidden;
    transition: transform .25s ease;
}
.bento-card:hover { transform: translateY(-5px); }
.bento-card::before {
    content: counter(bento-counter, decimal-leading-zero);
    counter-increment: bento-counter;
    position: absolute;
    top: -12px;
    right: 20px;
    font-size: 100px;
    font-weight: 900;
    color: rgba(255,255,255,.06);
    line-height: 1;
    pointer-events: none;
}
.lojistas-bento { counter-reset: bento-counter; }
.bento-card h3 { font-size: 19px; font-weight: 900; margin-bottom: 14px; }
.bento-card p { font-size: 14px; opacity: .72; line-height: 1.7; }

.destinos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
    margin-bottom: 56px;
}
.destino-card {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
}
.destino-header {
    background: linear-gradient(135deg, var(--primary), #003d7a);
    color: white;
    padding: 20px 24px;
    font-weight: 800;
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.destino-header svg { width: 18px; fill: var(--accent); flex-shrink: 0; }
.destino-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding: 20px 24px;
}
.destino-tag {
    background: rgba(0,33,71,.07);
    color: var(--primary);
    font-size: 13px;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 50px;
    border: 1px solid rgba(0,33,71,.1);
}

/* ============================================================
   FRETAMENTOS PAGE
   ============================================================ */
.frota-types-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 56px;
}
.frota-type-card {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    background: white;
    border-radius: var(--radius-md);
    padding: 24px 28px;
    border: 1px solid var(--border);
    border-left: 4px solid var(--accent);
    transition: box-shadow .2s, transform .2s;
}
.frota-type-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.frota-type-icon {
    width: 44px;
    height: 44px;
    background: rgba(0,33,71,.06);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.frota-type-icon svg { width: 22px; fill: var(--primary); }
.frota-type-card h3 { font-size: 15px; font-weight: 800; color: var(--primary); margin-bottom: 6px; }
.frota-type-card p { font-size: 13px; color: var(--text-muted); line-height: 1.65; }

/* ============================================================
   SERVICES GRID (homepage categories)
   ============================================================ */
.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}
.service-card {
    position: relative;
    background: var(--primary) center/cover no-repeat;
    border-radius: var(--radius-lg);
    padding: 44px 40px;
    color: white;
    text-decoration: none;
    overflow: hidden;
    display: block;
    transition: transform .3s ease, box-shadow .3s ease;
}
.service-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0,21,56,.88) 0%, rgba(0,45,90,.78) 100%);
    transition: opacity .4s ease;
    z-index: 0;
}
.service-card:hover::before { opacity: .72; }
.service-card > * { position: relative; z-index: 1; }
.service-card::after {
    content: attr(data-num);
    position: absolute;
    top: -16px;
    right: 20px;
    font-size: 108px;
    font-weight: 900;
    color: rgba(255,255,255,.05);
    line-height: 1;
    pointer-events: none;
    user-select: none;
}
.service-card:hover { transform: translateY(-6px); box-shadow: 0 24px 48px rgba(0,33,71,.28); }
.service-card-icon {
    width: 52px;
    height: 52px;
    background: rgba(255,140,0,.18);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}
.service-card-icon svg { width: 28px; fill: var(--accent); }
.service-card h3 { font-size: 22px; font-weight: 900; margin-bottom: 10px; }
.service-card p { font-size: 14px; opacity: .72; line-height: 1.65; margin-bottom: 28px; }
.service-card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 800;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: .8px;
}
.service-card-link svg { width: 16px; fill: var(--accent); transition: transform .2s; }
.service-card:hover .service-card-link svg { transform: translateX(4px); }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
    background: var(--primary);
    color: white;
    border-top: 4px solid var(--accent);
}
.footer-top { padding: 64px 0 48px; }
.footer-grid {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1.4fr 1fr 1.2fr;
    gap: 48px;
}
.footer-brand img { height: 48px; width: auto; margin-bottom: 16px; }
.footer-brand p { font-size: 14px; opacity: .7; line-height: 1.7; max-width: 300px; }
.footer-social { display: flex; gap: 12px; margin-top: 20px; }
.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,.08);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}
.footer-social a svg { width: 18px; height: 18px; fill: white; flex-shrink: 0; }
.footer-social a:hover { background: var(--accent); }

.footer-col h4 {
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent);
    margin-bottom: 20px;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; }
.footer-col ul a {
    font-size: 14px;
    opacity: .75;
    transition: var(--transition);
    display: block;
}
.footer-col ul a:hover { opacity: 1; color: var(--accent); }

.footer-contacts { list-style: none; }
.footer-contacts li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 14px;
    font-size: 14px;
    opacity: .8;
}
.footer-contacts li svg { width: 16px; fill: var(--accent); flex-shrink: 0; margin-top: 2px; }
.footer-contacts a { color: white; opacity: 1; }
.footer-contacts a:hover { color: var(--accent); }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.1);
    padding: 20px 24px;
    max-width: var(--max-w);
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    opacity: .6;
    gap: 16px;
    flex-wrap: wrap;
}
.footer-bottom a { color: var(--accent); opacity: 1; }

/* ============================================================
   WHATSAPP FLOAT BUTTON
   ============================================================ */
.wa-float {
    position: fixed;
    bottom: 32px;
    right: 32px;
    z-index: 999;
    width: 56px;
    height: 56px;
    background: var(--success);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(37,211,102,.5);
    transition: var(--transition);
}
.wa-float svg { width: 28px; fill: white; }
.wa-float:hover { transform: scale(1.12); box-shadow: 0 12px 30px rgba(37,211,102,.6); }

/* ============================================================
   UTILITIES
   ============================================================ */
.section-pad { padding: 80px 0; }
.section-pad-sm { padding: 56px 0; }
.bg-gray { background: var(--bg); }
.bg-primary { background: var(--primary); color: white; }
.text-center { text-align: center; }
.mt-0 { margin-top: 0 !important; }

.page-body { padding-top: var(--header-h); }

/* ============================================================
   SECTION: GALERIA DE VIAGENS
   ============================================================ */
.galeria-section {
    padding: 96px 0;
    background: var(--bg);
}
.galeria-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}
.galeria-item {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 4 / 3;
}
.galeria-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .5s cubic-bezier(.4,0,.2,1);
}
.galeria-item:hover img { transform: scale(1.06); }
.galeria-item-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,21,56,.85) 0%, transparent 55%);
    opacity: 0;
    transition: opacity .35s ease;
    display: flex;
    align-items: flex-end;
    padding: 18px;
}
.galeria-item:hover .galeria-item-overlay { opacity: 1; }
.galeria-item-caption {
    color: white;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.4;
}
.galeria-cta {
    text-align: center;
    margin-top: 48px;
}

/* Gallery lightbox */
.galeria-lightbox {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.94);
    z-index: 3000;
    align-items: center;
    justify-content: center;
}
.galeria-lightbox.open { display: flex; }
.galeria-lightbox-img {
    max-width: 90vw;
    max-height: 85vh;
    border-radius: var(--radius-md);
    object-fit: contain;
    display: block;
}
.galeria-lightbox-close {
    position: absolute;
    top: 20px; right: 24px;
    background: none; border: none;
    color: white; font-size: 38px;
    cursor: pointer; line-height: 1; opacity: .7;
}
.galeria-lightbox-close:hover { opacity: 1; }
.galeria-lightbox-caption {
    position: absolute;
    bottom: 28px;
    left: 50%; transform: translateX(-50%);
    color: rgba(255,255,255,.75);
    font-size: 14px; font-weight: 700;
    text-align: center; white-space: nowrap;
    max-width: 80vw; overflow: hidden; text-overflow: ellipsis;
}
.galeria-lightbox-nav {
    position: absolute;
    top: 50%; transform: translateY(-50%);
    background: rgba(255,255,255,.12);
    border: none; color: white; font-size: 28px;
    width: 52px; height: 52px;
    border-radius: 50%; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    backdrop-filter: blur(6px);
    transition: background .2s;
}
.galeria-lightbox-nav:hover { background: var(--accent); }
.galeria-lightbox-nav.prev { left: 20px; }
.galeria-lightbox-nav.next { right: 20px; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
    .roteiro-layout { grid-template-columns: 1fr; grid-template-areas: "sidebar" "main"; }
    .roteiro-sidebar { position: static; }
    .roteiro-photo-wrapper { grid-template-columns: 1fr 88px; }
    .incluso-grid { grid-template-columns: 1fr; }
    .frota-layout { grid-template-columns: 1fr; }
    .frota-nav { position: static; display: flex; overflow-x: auto; }
    .frota-nav-btn { flex-shrink: 0; border-bottom: none; border-left: none; border-bottom: 3px solid transparent; }
    .frota-nav-btn.active { border-bottom-color: var(--accent); border-left: none; background: none; }
    .about-grid { grid-template-columns: 1fr; }
    .mvv-grid { grid-template-columns: 1fr; }
    .contato-grid { grid-template-columns: 1fr; }
    .lojistas-bento { grid-template-columns: 1fr; }
    .services-grid { grid-template-columns: 1fr; }
    .benefits-editorial { grid-template-columns: 1fr; gap: 40px; }
    .galeria-grid { grid-template-columns: repeat(3, 1fr); }
    .pillar-grid { grid-template-columns: 1fr; }
    .about-evolution { padding: 40px 32px; margin: 48px 0; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .cta-card { flex-direction: column; text-align: center; }
    .cta-actions { align-self: stretch; }
    .cta-actions .btn { justify-content: center; }
    .mvv-card { padding: 32px 28px; }
    .bento-card { padding: 32px 28px; }
    .service-card { padding: 36px 32px; }
}

@media (max-width: 768px) {
    :root { --header-h: 72px; }

    /* ── Header ── */
    .header-logo img { height: 48px; }
    .header-nav, .btn-wa-header { display: none; }
    .menu-toggle { display: flex; margin-left: auto; }

    .header-nav.open {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: var(--header-h);
        left: 0;
        right: 0;
        background: white;
        border-top: 1px solid var(--border);
        padding: 16px;
        box-shadow: var(--shadow-lg);
        gap: 4px;
        z-index: 999;
        max-height: calc(100vh - var(--header-h));
        overflow-y: auto;
    }
    .nav-dropdown-menu { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; border: none; background: var(--bg); padding: 4px 8px; }

    /* ── Spacing ── */
    .section-pad { padding: 48px 0; }
    .section-pad-sm { padding: 32px 0; }
    .section-heading { margin-bottom: 32px; }
    .galeria-section { padding: 56px 0; }
    .benefits-section { padding: 56px 0; }
    .reviews-section { padding: 48px 0; }
    .about-section { padding: 48px 0; }
    .footer-top { padding: 48px 0 32px; }
    .filters-bar { padding: 32px 0 20px; }

    /* ── Hero ── */
    .hero { height: 58vw; min-height: 260px; }
    .page-hero { padding-bottom: 48px; margin-bottom: 0; clip-path: none; }
    .filters-bar { padding-top: 24px; }

    /* ── Cards ── */
    .service-card { padding: 32px 24px; }
    .service-card h3 { font-size: 18px; }
    .mvv-card { padding: 28px 24px; }
    .bento-card { padding: 28px 24px; }
    .cta-card { padding: 36px 24px; border-radius: var(--radius-lg); }

    /* ── Benefits stats ── */
    .benefits-stats { flex-wrap: wrap; gap: 20px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.12); }
    .benefits-stat { flex: 1; min-width: 100px; border-right: none !important; padding: 0 !important; }

    /* ── About ── */
    .about-stat-card { padding: 36px 28px; }
    .about-stat-card .number { font-size: 64px; }
    .about-evolution { padding: 36px 24px; margin: 40px 0; }
    .about-team-photo img { height: 260px; }
    .about-stats-row { gap: 10px; }

    /* ── Roteiro individual ── */
    .roteiro-container { padding-top: calc(var(--header-h) + 8px); overflow-x: hidden; }
    .roteiros-grid { grid-template-columns: 1fr; }
    .roteiro-hero { height: 280px; }
    .roteiro-hero-overlay { padding: 24px; }
    .gallery-thumbs { padding: 10px 16px; }
    .roteiro-photo-wrapper { grid-template-columns: 1fr; margin-bottom: 16px; }
    .roteiro-photo-hero { aspect-ratio: 16 / 10; border-radius: var(--radius-md); }
    .roteiro-photo-strip { flex-direction: row; overflow-x: auto; overflow-y: hidden; height: 68px; padding: 4px; width: 100%; scrollbar-width: none; }
    .roteiro-photo-strip::-webkit-scrollbar { display: none; }
    .strip-thumb { flex: 0 0 96px; height: 100%; width: auto; }
    .roteiro-hero-content h1 { font-size: clamp(22px, 5vw, 36px); }
    .roteiro-sobre { padding: 20px; }
    .breadcrumb { margin-bottom: 14px; font-size: 12px; }

    /* Layout coluna única — DOM order: sidebar primeiro, depois conteúdo */
    .roteiro-layout {
        display: flex;
        flex-direction: column;
        padding: 0 0 40px;
        gap: 20px;
        width: 100%;
        overflow-x: hidden;
    }
    .roteiro-sidebar { position: static; width: 100%; min-width: 0; max-width: 100%; }
    .roteiro-main-col { width: 100%; min-width: 0; max-width: 100%; overflow-x: hidden; }

    /* Sidebar compacta em mobile */
    .sidebar-price-block { padding: 16px 20px; }
    .sidebar-price-block .price-value { font-size: 28px; }
    .sidebar-top { padding: 16px 20px 14px; }
    .sidebar-info { padding: 0 20px 4px; }
    .sidebar-row { padding: 10px 0; }
    .sidebar-cta { padding: 16px 20px; }

    /* Tab content sem overflow */
    .tab-content { overflow-x: hidden; word-break: break-word; overflow-wrap: anywhere; max-width: 100%; }
    .tabs-nav { flex-wrap: wrap; overflow-x: visible; white-space: normal; gap: 4px; }
    .tab-btn { white-space: normal; }

    /* ── Frota ── */
    .frota-features { grid-template-columns: 1fr; }
    .frota-types-grid { grid-template-columns: 1fr; }
    .frota-carousel { height: 280px; }

    /* ── Footer ── */
    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .footer-bottom { flex-direction: column; text-align: center; }

    /* ── Misc ── */
    .filters-bar { gap: 8px; }
    .sort-select { margin-left: 0; width: 100%; }
    .wa-float { bottom: 20px; right: 20px; width: 48px; height: 48px; }
    .wa-float svg { width: 24px; }
    .tab-btn { padding: 10px 14px; font-size: 12px; flex: 1 1 auto; text-align: center; }
    .galeria-grid { grid-template-columns: repeat(2, 1fr); }
    .incluso-grid { grid-template-columns: 1fr; }
    .pillar-grid { grid-template-columns: 1fr; }

    /* ── Forms ── */
    .contato-form-card { padding: 28px 20px; border-radius: var(--radius-lg); }
    .fret-orcamento-grid { margin-top: 32px; }
    .cf-submit { width: 100%; justify-content: center; }
}

@media (max-width: 480px) {
    .container { padding: 0 16px; }

    /* ── Galeria ── */
    .galeria-grid { grid-template-columns: 1fr; }

    /* ── Spacing ── */
    .section-pad { padding: 40px 0; }
    .section-heading { margin-bottom: 24px; }
    .cta-card { padding: 28px 16px; }
    .about-evolution { padding: 28px 16px; }
    .mvv-card { padding: 24px 20px; }
    .bento-card { padding: 24px 20px; }
    .service-card { padding: 24px 20px; }

    /* ── Benefits stats: 2 columns on very small ── */
    .benefits-stat { flex-basis: calc(50% - 10px); min-width: 0; }
    .benefits-stat strong { font-size: 28px; }

    /* ── Roteiro individual ── */
    .roteiro-container { padding-top: calc(var(--header-h) + 4px); }
    .roteiro-hero { height: 220px; }
    .roteiro-photo-hero { aspect-ratio: 4 / 3; }
    .strip-thumb { flex: 0 0 76px; }
    .roteiro-photo-strip { height: 60px; }
    .tab-btn { padding: 8px 10px; font-size: 11px; }
    .sidebar-cta { padding: 16px; }
    .sidebar-info { padding: 16px; }
    .sidebar-top { padding: 16px; }
    .sidebar-price-block { padding: 16px; }
    .incluso-box { padding: 18px 16px; }

    /* ── Page hero ── */
    .page-hero h1 { font-size: clamp(22px, 7vw, 36px); letter-spacing: 0; }
    .page-hero p { font-size: 14px; }

    /* ── Footer ── */
    .footer-brand img { height: 38px; }

    /* ── About ── */
    .about-stat-card .number { font-size: 52px; }
    .about-stat-card { padding: 28px 20px; }

    /* ── Reviews ── */
    .review-cta-count { font-size: 40px; }

    /* ── Frota ── */
    .frota-carousel { height: 240px; }
}

/* ────────────────────────────────────────────────────────────
   REVIEWS / DEPOIMENTOS GOOGLE
   ──────────────────────────────────────────────────────────── */
.reviews-section { padding: 80px 0; background: white; }

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.review-card {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.review-header { display: flex; align-items: center; gap: 12px; }

.review-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.review-avatar-placeholder {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 18px;
    flex-shrink: 0;
}

.review-name { font-weight: 700; font-size: 15px; color: var(--text); }
.review-time { font-size: 12px; color: var(--text-muted); margin-top: 2px; }

.review-stars { display: flex; gap: 2px; }
.review-stars svg { width: 16px; height: 16px; fill: #f59e0b; }

.review-text {
    font-size: 14px;
    line-height: 1.65;
    color: var(--text);
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.review-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: var(--text-muted);
    text-decoration: none;
    margin-top: auto;
    padding-top: 14px;
    border-top: 1px solid var(--border);
}

.review-badge svg { width: 14px; height: 14px; flex-shrink: 0; }
.review-badge:hover { color: var(--primary); }

@media (max-width: 768px) {
    .reviews-grid { grid-template-columns: 1fr; }
}

/* Review card CTA (ver mais no Google) */
.review-card-cta {
    background: var(--primary);
    border-color: var(--primary);
    align-items: center;
    justify-content: center;
    text-align: center;
    text-decoration: none;
    transition: transform .2s, box-shadow .2s;
    cursor: pointer;
}
.review-card-cta:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,33,71,.25); }

.review-cta-glogo { width: 36px; height: 36px; }

.review-cta-count {
    font-size: 52px;
    font-weight: 900;
    color: white;
    line-height: 1;
    margin-top: 4px;
}

.review-cta-stars {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2px;
    margin: 8px 0 4px;
}
.review-cta-stars svg { width: 18px; height: 18px; fill: #f59e0b; }
.review-cta-stars span { color: white; font-weight: 700; font-size: 15px; margin-left: 4px; }

.review-cta-label { color: rgba(255,255,255,.75); font-size: 14px; }

.review-cta-btn {
    margin-top: 20px;
    background: var(--accent);
    color: white;
    padding: 10px 22px;
    border-radius: var(--radius-md);
    font-weight: 700;
    font-size: 14px;
    display: inline-block;
}
.review-card-cta:hover .review-cta-btn { background: var(--accent-dark); }

/* ────────────────────────────────────────────────────────────
   FORMULÁRIO DE CONTATO
   ──────────────────────────────────────────────────────────── */
.contato-form-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 40px;
    box-shadow: var(--shadow-sm);
}
.contato-form-card h2 { margin-bottom: 4px; }

.contato-form { display: flex; flex-direction: column; gap: 18px; }
.cf-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.cf-group { display: flex; flex-direction: column; gap: 6px; }
.cf-group label { font-size: 13px; font-weight: 700; color: var(--text); }
.cf-req { color: #ef4444; }

.cf-group input,
.cf-group select,
.cf-group textarea {
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 11px 14px;
    font-family: inherit;
    font-size: 14px;
    color: var(--text);
    background: var(--bg);
    transition: border-color .2s, box-shadow .2s;
    width: 100%;
}
.cf-group input:focus,
.cf-group select:focus,
.cf-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(0,33,71,.08);
    background: white;
}
.cf-group textarea { resize: vertical; min-height: 130px; }

.cf-submit {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    align-self: flex-start;
    padding: 13px 28px;
}
.cf-submit svg { width: 18px; fill: white; }

.form-success {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    background: rgba(37,211,102,.1);
    border: 1.5px solid rgba(37,211,102,.3);
    border-radius: var(--radius-md);
    padding: 16px 20px;
    margin-bottom: 24px;
}
.form-success svg { width: 28px; fill: #1a9c4e; flex-shrink: 0; margin-top: 2px; }
.form-success strong { display: block; font-size: 15px; color: #1a9c4e; }
.form-success p { font-size: 13px; color: var(--text-muted); margin-top: 2px; }

@media (max-width: 600px) {
    .cf-row { grid-template-columns: 1fr; }
    .contato-form-card { padding: 24px 20px; }
}

/* ============================================================
   FRETAMENTOS — ORÇAMENTO GRID
   ──────────────────────────────────────────────────────────── */
.fret-orcamento-grid {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 32px;
    align-items: start;
    margin-top: 48px;
}
.fret-orcamento-info {
    background: var(--primary);
    color: white;
    border-radius: var(--radius-md);
    padding: 36px 28px;
}
.fret-orcamento-info h2 { color: white; margin-bottom: 8px; }
.fret-orcamento-info h2 span { color: var(--accent); }
.fret-orcamento-info > p { color: rgba(255,255,255,.75); margin-bottom: 28px; font-size: 15px; }

.fret-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 20px;
}
.fret-ci-icon {
    width: 40px; height: 40px;
    background: rgba(255,255,255,.12);
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.fret-ci-icon svg { width: 20px; fill: white; }
.fret-ci-icon.wa { background: rgba(37,211,102,.25); }
.fret-ci-label { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .5px; color: rgba(255,255,255,.55); margin-bottom: 2px; }
.fret-ci-value { font-size: 14px; font-weight: 700; color: white; text-decoration: none; }
.fret-ci-value:hover { color: var(--accent); }

@media (max-width: 900px) {
    .fret-orcamento-grid { grid-template-columns: 1fr; }
    .fret-orcamento-info { padding: 28px 24px; }
}
