/* ═══════════════════════════════════════════════════════════
   DATALOG — CSS Principal
   Paleta: Azul Marinho #0D1B2E | Amarelo #F5C000 | Branco #fff | Cinza claro #F4F5F7
   ═══════════════════════════════════════════════════════════ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    --navy:   #0D1B2E;
    --navy2:  #152337;
    --yellow: #F5C000;
    --yellow2:#E0AF00;
    --white:  #ffffff;
    --gray:   #F4F5F7;
    --gray2:  #E8EAED;
    --text:   #1a1a2e;
    --muted:  #5a6370;
    --font:   'Barlow', sans-serif;
    --font-condensed: 'Barlow Condensed', sans-serif;
    --radius: 6px;
    --shadow: 0 4px 24px rgba(0,0,0,0.10);
}

html { scroll-behavior: smooth; }

body {
    font-family: var(--font);
    color: var(--text);
    background: var(--white);
    line-height: 1.6;
    font-size: 15px;
}

.container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 24px;
}

img { max-width: 100%; display: block; }

/* ─── TOPBAR ─────────────────────────────────────────────── */
.topbar {
    background: var(--navy);
    color: rgba(255,255,255,.75);
    font-size: 13px;
    padding: 8px 0;
}

.topbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.topbar-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--white);
    font-family: var(--font-condensed);
    font-size: 18px;
    font-weight: 700;
    letter-spacing: .08em;
}

.topbar-center {
    display: flex;
    align-items: center;
    gap: 6px;
}

.topbar-info {
    display: flex;
    align-items: center;
    gap: 6px;
}

.topbar-info svg { color: var(--yellow); }

.topbar-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.topbar-phone {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--yellow);
    font-weight: 600;
    font-size: 15px;
}

.topbar-phone svg { color: var(--yellow); }

.topbar-social {
    display: flex;
    align-items: center;
    gap: 10px;
}

.topbar-social a {
    color: rgba(255,255,255,.55);
    transition: color .2s;
    display: flex;
    align-items: center;
}

.topbar-social a:hover { color: var(--yellow); }

.topbar-social a img {
    transition: filter 0.3s ease;
}

/* Quando passar o mouse */
.topbar-social a:hover img {
    filter: invert(83%) sepia(50%) saturate(400%) hue-rotate(5deg) brightness(110%) contrast(95%);
}

/* ─── NAVBAR ────────────────────────────────────────────── */
.navbar {
    background: var(--navy2);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 12px rgba(0,0,0,.18);
}

.navbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 58px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2px;
}

.nav-link {
    color: rgba(255,255,255,.75);
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .07em;
    padding: 8px 14px;
    border-radius: var(--radius);
    transition: all .2s;
}

.nav-link:hover,
.nav-link.active {
    color: var(--white);
    background: rgba(255,255,255,.08);
}

.btn-quote {
    background: var(--yellow);
    color: var(--navy);
    border: none;
    padding: 10px 22px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .07em;
    border-radius: var(--radius);
    cursor: pointer;
    font-family: var(--font);
    transition: background .2s, transform .15s;
    white-space: nowrap;
}

.btn-quote:hover {
    background: var(--yellow2);
    transform: translateY(-1px);
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
}

.mobile-menu-btn span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: all .25s;
}

.mobile-menu {
    display: none;
    flex-direction: column;
    background: var(--navy);
    padding: 12px 24px 20px;
    border-top: 1px solid rgba(255,255,255,.1);
}

.mobile-menu a {
    color: rgba(255,255,255,.8);
    text-decoration: none;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,.06);
    font-size: 14px;
    font-weight: 500;
}

.mobile-menu button {
    margin-top: 14px;
    background: var(--yellow);
    color: var(--navy);
    border: none;
    padding: 12px;
    font-weight: 700;
    border-radius: var(--radius);
    cursor: pointer;
    font-family: var(--font);
    font-size: 14px;
}

.mobile-menu.open { display: flex; }

/* ─── HERO ──────────────────────────────────────────────── */
.hero {
    position: relative;
    background: var(--navy);
    min-height: 520px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

/* Large truck silhouette background via CSS */
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(105deg, rgba(106, 138, 182, 0.65) 35%, rgba(13,27,46,0.35) 80%),
        url('../images/banner-topo.jpg') no-repeat center center;
    background-size: 100% auto; /* largura 100%, altura proporcional */
    background-position: center center;
    background-repeat: no-repeat;
    z-index: 0;
}



.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(13,27,46,1) 40%, transparent 100%);
    z-index: 1;
}

.hero-inner {
    position: relative;
    z-index: 2;
    padding: 80px 24px;
}

.hero-text {
    max-width: 580px;
}

.hero-text h1 {
    font-family: var(--font-condensed);
    font-size: clamp(34px, 5vw, 56px);
    font-weight: 800;
    color: var(--white);
    line-height: 1.1;
    letter-spacing: -.01em;
    margin-bottom: 18px;
}

.hero-text h1 .accent {
    color: var(--yellow);
}

.hero-text p {
    color: rgba(255,255,255,.75);
    font-size: 17px;
    margin-bottom: 32px;
    line-height: 1.65;
}

.hero-btns {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

/* ─── BUTTONS ───────────────────────────────────────────── */
.btn-yellow {
    background: var(--yellow);
    color: var(--navy);
    border: none;
    padding: 14px 28px;
    font-size: 15px;
    font-weight: 700;
    border-radius: var(--radius);
    cursor: pointer;
    font-family: var(--font);
    transition: background .2s, transform .15s;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.btn-yellow:hover {
    background: var(--yellow2);
    transform: translateY(-2px);
}

.btn-dark {
    background: var(--navy);
    color: var(--white);
    border: 2px solid rgba(255,255,255,.25);
    padding: 13px 28px;
    font-size: 15px;
    font-weight: 700;
    border-radius: var(--radius);
    cursor: pointer;
    font-family: var(--font);
    transition: all .2s;
}

.btn-dark:hover {
    border-color: var(--yellow);
    color: var(--yellow);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--navy);
    border: 2px solid var(--navy);
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 600;
    border-radius: var(--radius);
    cursor: pointer;
    font-family: var(--font);
    transition: all .2s;
}

.btn-outline:hover {
    background: var(--navy);
    color: var(--white);
}

/* ─── QUOTE SECTION ─────────────────────────────────────── */
.quote-section {
    background: var(--gray);
    padding: 64px 0;
}

.quote-inner {
    display: grid;
    grid-template-columns: 40% 60%;
    gap: 48px;
    align-items: center;
}

.quote-form-wrap h2 {
    font-size: 26px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 24px;
}

.quote-form {
    background: var(--white);
    border-radius: 10px;
    padding: 28px;
    box-shadow: var(--shadow);
}

.qform-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 18px;
}

.qform-grid input,
.qform-grid select {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid var(--gray2);
    border-radius: var(--radius);
    font-size: 14px;
    font-family: var(--font);
    color: var(--text);
    background: var(--white);
    transition: border-color .2s;
    outline: none;
}

.qform-grid input:focus,
.qform-grid select:focus {
    border-color: var(--yellow);
    box-shadow: 0 0 0 3px rgba(245,192,0,.15);
}

.qform-grid input::placeholder { color: var(--muted); }

.btn-submit {
    padding: 13px 32px;
    font-size: 15px;
}

.qform-msg {
    margin-top: 12px;
    padding: 10px 14px;
    border-radius: var(--radius);
    font-size: 14px;
    font-weight: 500;
}

.qform-msg.success { background: #d1fae5; color: #065f46; }
.qform-msg.error   { background: #fee2e2; color: #991b1b; }

.quote-illustration {
    display: flex;
    justify-content: center;
    align-items: center;
}

.quote-illustration img {
    width: 400px;
   
}

@media (max-width: 768px) {
    .quote-section {
        flex-direction: column; /* muda de linha para coluna */
    }

    .quote-illustration {
        order: 2; /* garante que a imagem vá para baixo */
        margin-top: 20px;
    }

    .quote-text {
        order: 1; /* texto fica em cima */
    }

    .quote-illustration img {
        width: 100%; /* ocupa toda a largura no celular */
    }
}

@keyframes float {
    0%,100% { transform: translateY(0); }
    50%      { transform: translateY(-12px); }
}

/* ─── ABOUT / QUEM SOMOS ────────────────────────────────── */
.about {
    background: var(--navy);
    padding: 72px 0;
}

.about-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: start;
}

.about-text h2 {
    font-family: var(--font-condensed);
    font-size: 44px;
    font-weight: 800;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 18px;
}

.about-text p {
    color: rgba(255,255,255,.6);
    font-size: 16px;
    line-height: 1.75;
}

.about-cards {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.about-card {
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 10px;
    padding: 20px 24px;
    display: flex;
    align-items: center;
    gap: 18px;
    transition: background .2s;
}

.about-card:hover {
    background: rgba(245,192,0,.08);
    border-color: rgba(245,192,0,.3);
}

.about-card-icon {
    width: 52px;
    height: 52px;
    background: rgba(245,192,0,.12);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.about-card span {
    color: var(--white);
    font-size: 16px;
    font-weight: 600;
}

.about-divider {
    border: none;
    border-top: 1px solid rgba(255,255,255,.4);
    margin: 20px 0;
}

#about-highlight {
    font-size: 16px;
    font-weight: 500;
    color: var(--yellow);
    min-height: 24px; /* reserva espaço */
    transition: opacity .3s ease;
}


/* ─── SERVICES ──────────────────────────────────────────── */
.services {
    background: var(--white);
    padding: 72px 0;
}

.section-hd {
    text-align: center;
    margin-bottom: 44px;
}

.section-hd h2 {
    font-size: 32px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 10px;
}

.section-hd p {
    color: var(--muted);
    font-size: 16px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.service-card {
    background: var(--gray);
    border-radius: 10px;
    padding: 28px 22px;
    text-align: center;
    border: 1px solid var(--gray2);
    transition: all .25s;
}

.service-card:hover {
    background: var(--navy);
    border-color: var(--navy);
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(13,27,46,.2);
}

.service-card:hover h3,
.service-card:hover p { color: var(--white); }

.service-card:hover .sc-icon { background: rgba(245,192,0,.15); }
.service-card:hover .sc-icon svg { stroke: var(--yellow); color: var(--yellow); }

.sc-icon {
    width: 64px;
    height: 64px;
    background: rgba(13,27,46,.08);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    transition: background .25s;
}

.sc-icon svg { color: var(--navy); transition: color .25s; }

.service-card h3 {
    font-size: 17px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 10px;
    transition: color .25s;
}

.service-card p {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.6;
    transition: color .25s;
}

/* ─── CITIES SECTION ────────────────────────────────────── */
.cities-section {
    background: var(--navy);
    padding: 72px 0;
}

.cities-inner {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 56px;
    align-items: start;
}

.cities-left h2 {
    font-size: 30px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 12px;
}

.cities-left > p {
    color: rgba(255,255,255,.55);
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 24px;
    max-width: 480px;
}

.cities-search {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.15);
    border-radius: 40px;
    padding: 0 18px;
    max-width: 380px;
    margin-bottom: 22px;
    transition: border-color .2s;
}

.cities-search:focus-within {
    border-color: var(--yellow);
}

.cities-search svg { color: rgba(255,255,255,.45); flex-shrink: 0; }

.cities-search input {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    color: var(--white);
    font-size: 14px;
    padding: 12px 0;
    font-family: var(--font);
}

.cities-search input::placeholder { color: rgba(255,255,255,.35); }

.cities-tabs {
    display: flex;
    gap: 8px;
    margin-bottom: 22px;
}

.ctab {
    background: rgba(255,255,255,.07);
    border: 1px solid rgba(255,255,255,.15);
    color: rgba(255,255,255,.6);
    padding: 7px 18px;
    border-radius: 40px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    font-family: var(--font);
    transition: all .2s;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.ctab span {
    font-size: 11px;
    background: rgba(255,255,255,.15);
    padding: 1px 6px;
    border-radius: 20px;
}

.ctab:hover { border-color: var(--yellow); color: rgba(255,255,255,.9); }

.ctab.active {
    background: var(--yellow);
    border-color: var(--yellow);
    color: var(--navy);
}

.ctab.active span { background: rgba(0,0,0,.15); }

.cpane { display: none; }
.cpane.active { display: block; }

.city-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 16px;
}

.city-pill {
    background: var(--yellow);
    color: var(--navy);
    border: none;
    padding: 7px 14px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 700;
    cursor: default;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: background .15s;
    font-family: var(--font);
}

.city-pill .pill-dot {
    width: 6px;
    height: 6px;
    background: var(--navy);
    border-radius: 50%;
    opacity: .5;
    flex-shrink: 0;
}

.city-pill.hidden { display: none; }

.cities-more {
    background: transparent;
    border: 1px solid rgba(255,255,255,.2);
    color: rgba(255,255,255,.7);
    padding: 9px 22px;
    border-radius: 40px;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    font-family: var(--font);
    margin-top: 6px;
    transition: all .2s;
}

.cities-more:hover {
    border-color: var(--yellow);
    color: var(--yellow);
}

.cities-right {
    display: flex;
    justify-content: center;
    align-items: center;
}

.cities-right img {
    width: 300px;
    filter: drop-shadow(0 8px 32px rgba(0,0,0,.3));
    animation: float 4s ease-in-out infinite;
}

/* ─── FOOTER ────────────────────────────────────────────── */
.footer {
    background: var(--navy);
    border-top: 1px solid rgba(255,255,255,.08);
    padding: 56px 0 0;
}

.footer-inner {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 48px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
    font-family: var(--font-condensed);
    font-size: 20px;
    font-weight: 700;
    color: var(--white);
    letter-spacing: .06em;
}

.footer-col p {
    color: rgba(255,255,255,.5);
    font-size: 14px;
    line-height: 1.7;
}

.footer-col p svg { vertical-align: middle; margin-right: 6px; }

.footer-col h4 {
    color: var(--white);
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 16px;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 8px;
}

.footer-col ul a {
    color: rgba(255,255,255,.5);
    text-decoration: none;
    font-size: 14px;
    transition: color .2s;
}

.footer-col ul a:hover { color: var(--yellow); }

.footer-social {
    display: flex;
    gap: 10px;
    margin-top: 6px;
}

.fsoc {
    width: 38px;
    height: 38px;
    background: rgba(255,255,255,.08);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,.6);
    text-decoration: none;
    transition: all .2s;
}

.fsoc:hover {
    background: var(--yellow);
    color: var(--navy);
}

.fsoc:hover img,
.fsoc:hover svg {
    filter: invert(1); /* inverte as cores: branco vira preto */
}

.footer-bottom {
    background: rgba(0,0,0,.25);
    border-top: 1px solid rgba(255,255,255,.07);
    padding: 14px 0;
}

.footer-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 13px;
    color: rgba(255,255,255,.45);
}

.footer-links {
    display: flex;
    gap: 20px;
}

.footer-links a {
    color: var(--yellow);
    text-decoration: none;
    font-size: 13px;
    transition: opacity .2s;
}

.footer-links a:hover { opacity: .75; }

.footer-social-sm {
    display: flex;
    gap: 12px;
}

.footer-social-sm a {
    color: rgba(255,255,255,.5);
    display: flex;
    align-items: center;
    transition: color .2s;
}

.footer-social-sm a:hover { color: var(--yellow); }

.footer-social-sm a img {
    transition: filter 0.3s ease;
}

.footer-social-sm a:hover img {
    filter: brightness(0) invert(1); /* transforma em branco */
}

/* ─── MODAL ─────────────────────────────────────────────── */
.modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(13,27,46,.7);
    backdrop-filter: blur(4px);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal.active { display: flex; }

.modal-content {
    background: var(--white);
    border-radius: 14px;
    width: 100%;
    max-width: 480px;
    box-shadow: 0 24px 80px rgba(0,0,0,.25);
    overflow: hidden;
    animation: modalIn .3s cubic-bezier(0.34,1.56,0.64,1);
}

@keyframes modalIn {
    from { opacity: 0; transform: scale(.9) translateY(20px); }
    to   { opacity: 1; transform: scale(1) translateY(0); }
}

.modal-header {
    background: var(--navy);
    padding: 20px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.modal-header h2 {
    color: var(--white);
    font-size: 18px;
    font-weight: 700;
}

.modal-close {
    background: rgba(255,255,255,.1);
    border: none;
    color: var(--white);
    width: 32px;
    height: 32px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .2s;
}

.modal-close:hover { background: rgba(255,255,255,.2); }

.modal-body {
    padding: 24px;
}

.step { display: none; }
.step.active { display: block; }

.step h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 18px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--yellow);
}

.form-group {
    margin-bottom: 14px;
}

.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 5px;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 11px 14px;
    border: 1.5px solid var(--gray2);
    border-radius: var(--radius);
    font-size: 14px;
    font-family: var(--font);
    color: var(--text);
    background: var(--white);
    outline: none;
    transition: border-color .2s;
}

.form-group input:focus,
.form-group select:focus {
    border-color: var(--yellow);
    box-shadow: 0 0 0 3px rgba(245,192,0,.15);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.btn-group {
    display: flex;
    gap: 10px;
    margin-top: 16px;
}

.summary-box {
    background: var(--gray);
    border-radius: 8px;
    padding: 16px;
    margin-bottom: 18px;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 7px 0;
    border-bottom: 1px solid var(--gray2);
    font-size: 14px;
}

.summary-row:last-child { border-bottom: none; }
.summary-row span { color: var(--muted); }
.summary-row strong { color: var(--navy); font-weight: 700; }
.accent-value { color: var(--yellow2) !important; font-size: 16px !important; }

.modal-progress {
    margin-top: 18px;
    height: 4px;
    background: var(--gray2);
    border-radius: 4px;
    overflow: hidden;
}

.modal-progress-bar {
    height: 100%;
    background: var(--yellow);
    border-radius: 4px;
    width: 25%;
    transition: width .4s ease;
}

/* ─── TOAST ─────────────────────────────────────────────── */
.toast {
    position: fixed;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%) translateY(80px);
    background: var(--navy);
    color: var(--white);
    padding: 14px 28px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    z-index: 99999;
    opacity: 0;
    transition: all .35s cubic-bezier(0.34,1.56,0.64,1);
    border-left: 4px solid var(--yellow);
    max-width: 90vw;
    text-align: center;
    white-space: nowrap;
}

.toast.show {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
}

/* ─── RESPONSIVE ────────────────────────────────────────── */
@media (max-width: 900px) {
    .topbar-center { display: none; }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .about-inner,
    .quote-inner,
    .cities-inner { grid-template-columns: 1fr; }
    .quote-illustration,
    .cities-right { display: none; }
    .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
    .nav-links,
    .btn-quote { display: none; }
    .mobile-menu-btn { display: flex; }
    .qform-grid { grid-template-columns: 1fr; }
    .footer-inner { grid-template-columns: 1fr; }
    .footer-bottom-inner { flex-direction: column; text-align: center; }
    .hero-text h1 { font-size: 32px; }
    .services-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .topbar-right { gap: 12px; }
    .topbar-phone { font-size: 13px; }
}

/* ═══════════════════════════════════════════════════════════
   AJUSTES v5.1
   ═══════════════════════════════════════════════════════════ */

/* 1b — btn-quote visível em tablets */
@media (max-width: 900px) {
    .btn-quote { display: inline-flex !important; font-size: 12px; padding: 9px 14px; }
    .nav-links  { display: none; }
}

/* btn-quote como link */
a.btn-quote {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}

/* ─── AUTOCOMPLETE ──────────────────────────────────────── */
.autocomplete-wrap {
    position: relative;
}

.autocomplete-wrap input[type="text"] {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid var(--gray2);
    border-radius: var(--radius);
    font-size: 14px;
    font-family: var(--font);
    color: var(--text);
    background: var(--white);
    transition: border-color .2s;
    outline: none;
}

.autocomplete-wrap input[type="text"]:focus {
    border-color: var(--yellow);
    box-shadow: 0 0 0 3px rgba(245,192,0,.15);
}

.ac-list {
    position: absolute;
    top: calc(100% + 4px);
    left: 0; right: 0;
    background: var(--white);
    border: 1px solid var(--gray2);
    border-radius: var(--radius);
    box-shadow: 0 8px 24px rgba(0,0,0,.12);
    max-height: 220px;
    overflow-y: auto;
    z-index: 500;
    list-style: none;
    padding: 4px 0;
    display: none;
}

.ac-list.open { display: block; }

.ac-list li {
    padding: 9px 14px;
    font-size: 13px;
    cursor: pointer;
    color: var(--text);
    transition: background .15s;
    display: flex;
    align-items: center;
    gap: 8px;
}

.ac-list li:hover,
.ac-list li.ac-active {
    background: rgba(245,192,0,.12);
    color: var(--navy);
    font-weight: 500;
}

.ac-list li .ac-state {
    font-size: 10px;
    background: var(--navy);
    color: var(--white);
    padding: 1px 6px;
    border-radius: 10px;
    margin-left: auto;
    flex-shrink: 0;
}

.ac-empty {
    padding: 12px 14px;
    font-size: 13px;
    color: var(--muted);
    text-align: center;
}

/* ─── FORM GRID com 3 novos campos ──────────────────────── */
/* Grade agora tem 2 colunas, campos de dimensão em linha */
.qform-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

/* Os 3 campos de dimensão ficam lado a lado em 3 colunas */
.qform-grid #q-altura,
.qform-grid #q-largura,
.qform-grid #q-comprimento {
    /* nada especial — ficam na grade 2 cols normal */
}

/* row de dimensões: 3 colunas na mesma row, span full então separate row */
.qform-dims {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

/* ─── CITIES — FULL WIDTH (sem imagem lateral) ──────────── */
.cities-inner.cities-full {
    display: block; /* remove grid, ocupa 100% */
}

.cities-inner.cities-full .cities-left {
    max-width: 100%;
}

/* pills maiores, mais espaço */
.cities-inner.cities-full .city-pills {
    gap: 10px;
}

.cities-inner.cities-full .city-pill {
    font-size: 13px;
    padding: 8px 16px;
}

/* ─── ONDE ESTAMOS (MODERNO) ─────────────────────────────── */
.where-we-are {
    background: var(--yellow);
    min-height: 200px;
    padding: 40px 0;
    display: flex;
    align-items: center;
}

.where-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    width: 100%;
}

.where-title {
    flex-shrink: 0;
}

.where-title h2 {
    font-family: var(--font-condensed);
    font-size: 32px;
    font-weight: 800;
    color: var(--navy);
    text-transform: uppercase;
    line-height: 1;
    margin: 0;
}

.where-line {
    width: 50px;
    height: 4px;
    background: var(--navy);
    margin-top: 8px;
}

.where-grid {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.where-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.where-icon {
    width: 48px;
    height: 48px;
    background: var(--navy);
    color: var(--yellow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.where-item:hover .where-icon {
    transform: scale(1.1);
}

.where-info h3 {
    font-family: var(--font-condensed);
    font-size: 18px;
    font-weight: 700;
    color: var(--navy);
    margin: 0;
    letter-spacing: 0.02em;
}

.where-info p {
    font-size: 15px;
    font-weight: 600;
    color: rgba(13, 27, 46, 0.8);
    margin: 2px 0 0 0;
}

@media (max-width: 992px) {
    .where-wrapper {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }
    .where-line {
        margin: 8px auto 0;
    }
    .where-grid {
        width: 100%;
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .where-grid {
        grid-template-columns: 1fr;
    }
    .where-item {
        justify-content: center;
    }
}
