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

:root {
    --primary-dark: #0f172a;
    --primary-black: #000000;
    --primary-white: #ffffff;
    --accent-blue: #1e40af;
    --accent-blue-hover: #1e3a8a;
    --accent-blue-light: #3b82f6;
    --light-gray: #f1f5f9;
    --text-dark: #1e293b;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--primary-dark);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ========================================
   HEADER
   ======================================== */
.header {
    background-color: var(--primary-dark);
    padding: 12px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 16px rgba(15, 23, 42, 0.25);
    border-bottom: 1px solid rgba(59, 130, 246, 0.15);
    transition: transform 0.35s ease;
}

.header.oculto {
    transform: translateY(-100%);
}

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

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

.logo img {
    height: 44px;
    width: auto;
    display: block;
    filter: brightness(0) invert(1);
}

/* Nav — mobile: hidden dropdown, posicionado relativo ao .header (sticky = positioned) */
.nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--primary-dark);
    border-top: 1px solid rgba(59, 130, 246, 0.2);
    padding: 8px 0 16px;
    z-index: 999;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.4);
}

.nav.active {
    display: block;
}

.nav ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.nav a {
    display: block;
    padding: 12px 20px;
    color: #e2e8f0;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
    transition: color 0.3s ease, background 0.2s ease;
}

.nav a:hover {
    color: var(--accent-blue-light);
    background: rgba(59, 130, 246, 0.06);
}

.nav a::after {
    display: none;
}

/* Hamburger toggle */
.nav-toggle {
    display: flex;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    gap: 5px;
    padding: 4px;
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background-color: var(--primary-white);
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
    display: block;
}

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

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

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

/* ========================================
   HERO
   ======================================== */
.hero {
    height: 100vh;
    height: 100svh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    color: var(--primary-white);
    text-align: center;
}

.hero-image {
    position: absolute;
    top: -12%;
    left: 0;
    width: 100%;
    height: 124%;
    object-fit: cover;
    will-change: transform;
}

.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.2);
    pointer-events: none;
}

.hero-overlay {
    display: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 16px;
    animation: fadeInUp 1s ease-out;
}

.hero-content h1 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 16px;
    text-shadow: 0 4px 24px rgba(0,0,0,0.7), 0 2px 6px rgba(0,0,0,0.5);
}

.hero-content p {
    font-size: 1.05rem;
    margin-bottom: 32px;
    text-shadow: 0 2px 12px rgba(0,0,0,0.7), 0 1px 4px rgba(0,0,0,0.5);
    font-weight: 400;
}

.cta-button {
    display: inline-block;
    background-color: var(--accent-blue);
    color: var(--primary-white);
    text-decoration: none;
    padding: 13px 32px;
    font-size: 1rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(30, 64, 175, 0.4);
}

.cta-button:hover {
    background-color: var(--accent-blue-hover);
    box-shadow: 0 6px 20px rgba(30, 64, 175, 0.5);
    transform: translateY(-2px);
}

.cta-button:active {
    transform: translateY(0);
}

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

/* ========================================
   SECTION HEADER SHARED
   ======================================== */
.section-header {
    margin-bottom: 40px;
    max-width: 700px;
}

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

.section-header .eyebrow {
    display: inline-block;
    color: var(--accent-blue);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 14px;
    padding-left: 40px;
    position: relative;
}

.section-header .eyebrow::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 28px;
    height: 2px;
    background-color: var(--accent-blue);
}

.section-header h2 {
    font-size: 1.8rem;
    color: var(--primary-dark);
    margin-bottom: 14px;
    font-weight: 700;
    line-height: 1.2;
}

.section-header p {
    font-size: 1rem;
    color: #64748b;
    line-height: 1.6;
}

/* ========================================
   MISSÃO E VALORES
   ======================================== */
.missao-valores {
    padding: 60px 0;
    background-color: var(--primary-white);
    min-height: 100svh;
    display: flex;
    align-items: center;
}

.missao-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
}

.missao-content .eyebrow {
    display: inline-block;
    color: var(--accent-blue);
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.missao-content h2 {
    color: var(--primary-dark);
    font-size: 1.55rem;
    line-height: 1.25;
    margin-bottom: 16px;
}

.missao-intro {
    color: #64748b;
    font-size: 0.96rem;
    line-height: 1.75;
    margin-bottom: 24px;
}

.missao-checklist {
    list-style: none;
    border-top: 1px solid #e2e8f0;
}

.missao-item {
    padding: 16px 0;
    border-bottom: 1px solid #e2e8f0;
}

.missao-item:last-child {
    border-bottom: none;
}

.missao-item h3 {
    color: var(--primary-dark);
    font-size: 1rem;
    line-height: 1.25;
    margin-bottom: 4px;
}

.missao-item p {
    color: #64748b;
    font-size: 0.9rem;
    line-height: 1.55;
}

.missao-foto {
    border-radius: 6px;
    overflow: hidden;
    aspect-ratio: 4 / 3;
}

.missao-foto img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.missao-assinatura {
    margin-top: 22px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--primary-dark);
}

/* ========================================
   FROTA
   ======================================== */
.frota {
    padding: 60px 0;
    background-color: var(--light-gray);
    position: relative;
    min-height: 100svh;
    display: flex;
    align-items: center;
}

.frota .container,
.servicos .container {
    position: relative;
    z-index: 1;
}

.cards-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.card {
    position: relative;
    border-radius: 6px;
    overflow: hidden;
    background-color: var(--primary-dark);
    box-shadow: 0 4px 18px rgba(15, 23, 42, 0.12);
    transition: box-shadow 0.4s ease, transform 0.4s ease;
    cursor: pointer;
    min-height: 360px;
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 50px -20px rgba(15, 23, 42, 0.45);
}

.card-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.8s ease;
    z-index: 1;
}

.card-image--baixo {
    object-position: center 90%;
}

.card-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 24px 20px;
    color: var(--primary-white);
    background: linear-gradient(to top,
        rgba(15,23,42,0.92) 0%,
        rgba(15,23,42,0.55) 35%,
        rgba(15,23,42,0) 65%);
    transition: background 0.4s ease;
}

.card-reveal {
    margin-top: 12px;
}

.card-overlay h3 {
    font-size: 1.3rem;
    color: var(--primary-white);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 0;
}

.card-reveal p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #cbd5e1;
    margin-bottom: 0;
}

/* ========================================
   DEPOIMENTOS / CONFIANÇA
   ======================================== */
.depoimentos {
    padding: 60px 0;
    background-color: var(--primary-dark);
    color: var(--primary-white);
    position: relative;
    overflow: hidden;
    min-height: 100svh;
    display: flex;
    align-items: center;
}

.depoimentos .container {
    position: relative;
    z-index: 1;
}

.confianca-intro {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 40px;
}

.confianca-intro h2 {
    color: var(--primary-white);
    font-size: 1.9rem;
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: 14px;
}

.confianca-intro p {
    color: #94a3b8;
    font-size: 0.95rem;
    line-height: 1.6;
}

.confianca-linha {
    text-align: center;
    max-width: 640px;
    margin: 0 auto;
    padding-top: 32px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.confianca-linha h3 {
    color: var(--primary-white);
    font-size: 1.15rem;
    font-weight: 700;
    line-height: 1.35;
    margin-bottom: 10px;
}

.confianca-linha p {
    color: #94a3b8;
    font-size: 0.92rem;
    line-height: 1.6;
}

.confianca-stats {
    display: grid;
    grid-template-columns: 1fr;
    gap: 28px;
    margin-top: 32px;
    padding-top: 32px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.stat {
    text-align: center;
}

.stat-num {
    display: block;
    font-family: 'Poppins', sans-serif;
    color: var(--primary-white);
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 6px;
}

.stat-label {
    display: block;
    color: #94a3b8;
    font-size: 0.85rem;
    line-height: 1.4;
}

/* ========================================
   SERVIÇOS
   ======================================== */
.servicos {
    padding: 110px 0 60px;
    background-color: var(--primary-white);
    position: relative;
    overflow: hidden;
    min-height: 100svh;
    display: flex;
    align-items: center;
}

.section-divider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 90px;
    display: block;
    z-index: 0;
    pointer-events: none;
}

.servicos-banner {
    max-width: 1080px;
    margin: 0 auto 40px;
    border-radius: 6px;
    overflow: hidden;
    aspect-ratio: 4 / 3;
}

.servicos-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.servicos-lista {
    list-style: none;
    max-width: 1080px;
    margin: 0 auto;
    border-top: 1px solid #e2e8f0;
}

.servico-item {
    padding: 24px 0;
    border-bottom: 1px solid #e2e8f0;
}

.servico-item:last-child {
    border-bottom: none;
}

.servico-item h3 {
    font-size: 1.25rem;
    color: var(--primary-dark);
    font-weight: 700;
    margin-bottom: 8px;
    line-height: 1.2;
}

.servico-item p {
    color: #64748b;
    font-size: 0.96rem;
    line-height: 1.7;
    margin-bottom: 14px;
}

.servico-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--accent-blue);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.86rem;
    padding-bottom: 3px;
    border-bottom: 2px solid transparent;
    transition: gap 0.3s ease, border-color 0.3s ease;
}

.servico-cta:hover {
    gap: 12px;
    border-bottom-color: var(--accent-blue);
}

.servico-cta i {
    font-size: 0.78rem;
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
    background-color: var(--primary-dark);
    color: #cbd5e1;
    padding: 50px 0 20px;
    border-top: 3px solid var(--accent-blue);
}

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

.footer-logo {
    height: 50px;
    width: auto;
    margin-bottom: 18px;
    display: block;
    filter: brightness(0) invert(1);
}

.footer-brand p {
    color: #94a3b8;
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 22px;
}

.footer-social {
    display: flex;
    gap: 10px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.12);
    color: #cbd5e1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    text-decoration: none;
    transition: background-color 0.25s ease, border-color 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.footer-social a:hover {
    background-color: var(--accent-blue);
    border-color: var(--accent-blue);
    color: var(--primary-white);
    transform: translateY(-2px);
}

.footer-col h4 {
    color: var(--primary-white);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    position: relative;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 32px;
    height: 2px;
    background-color: var(--accent-blue);
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    padding: 7px 0;
    color: #cbd5e1;
    font-size: 0.88rem;
    display: flex;
    align-items: center;
    gap: 12px;
    line-height: 1.5;
}

.footer-col ul li i {
    color: var(--accent-blue-light);
    font-size: 0.95rem;
    width: 16px;
    flex-shrink: 0;
}

.footer-col ul li a,
.footer-col ul li span {
    color: #cbd5e1;
    text-decoration: none;
    transition: color 0.25s ease;
}

.footer-col ul li a:hover {
    color: var(--accent-blue-light);
}

.footer-links li {
    padding: 6px 0;
}

.footer-links li::before {
    content: '›';
    color: var(--accent-blue);
    font-size: 1rem;
    width: 16px;
    flex-shrink: 0;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
}

.footer-bottom p {
    color: #64748b;
    font-size: 0.83rem;
    margin: 0;
}

.footer-domain {
    color: var(--accent-blue-light);
    font-weight: 600;
    font-size: 0.88rem;
    text-decoration: none;
    transition: color 0.25s ease;
}

.footer-domain:hover {
    color: var(--primary-white);
}

/* ========================================
   NAVBAR LATERAL
   ======================================== */
.rota-lateral {
    position: fixed;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 490;
    display: none;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.rota-lateral.visivel {
    opacity: 1;
}

.rota-trilha {
    position: relative;
}

.rota-linha-bg,
.rota-linha-prog {
    position: absolute;
    width: 2px;
    border-radius: 1px;
    pointer-events: none;
}

.rota-linha-bg {
    background: rgba(148, 163, 184, 0.2);
    z-index: 0;
}

.rota-linha-prog {
    background: var(--accent-blue-light);
    z-index: 1;
    height: 0;
    transition: height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.rota-onibus {
    position: absolute;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--accent-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 4;
    pointer-events: none;
    transition: top 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: top;
    animation: onibus-pulse 2.4s ease-out infinite;
}

@keyframes onibus-pulse {
    0%   { box-shadow: 0 0 0 0 rgba(59, 130, 246, 0.55); }
    60%  { box-shadow: 0 0 0 10px rgba(59, 130, 246, 0); }
    100% { box-shadow: 0 0 0 0 rgba(59, 130, 246, 0); }
}

.rota-onibus i {
    font-size: 0.6rem;
    color: #fff;
}

.rota-paradas {
    list-style: none;
    position: relative;
    z-index: 2;
}

.rota-parada {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 16px 0;
    cursor: pointer;
    position: relative;
}

.rota-parada::before {
    content: attr(data-label);
    position: absolute;
    right: 22px;
    background: var(--primary-dark);
    color: #e2e8f0;
    font-family: 'Inter', sans-serif;
    font-size: 0.72rem;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 4px;
    white-space: nowrap;
    opacity: 0;
    transform: translateX(4px);
    transition: opacity 0.2s ease, transform 0.2s ease;
    pointer-events: none;
}

.rota-parada:hover::before,
.rota-parada.ativa::before {
    opacity: 1;
    transform: translateX(0);
}

.rota-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(148, 163, 184, 0.3);
    border: 2px solid rgba(148, 163, 184, 0.4);
    flex-shrink: 0;
    position: relative;
    z-index: 3;
    transition: background 0.3s, border-color 0.3s, transform 0.3s;
    pointer-events: none;
}

.rota-parada.ativa .rota-dot {
    background: var(--accent-blue-light);
    border-color: var(--accent-blue-light);
    transform: scale(1.4);
}

.rota-parada.visitada .rota-dot {
    background: var(--accent-blue);
    border-color: var(--accent-blue);
}

/* ========================================
   PROGRESS BAR
   ======================================== */
.progress-viagem {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 2px;
    width: 0%;
    background: var(--accent-blue-light);
    z-index: 1;
    transition: width 0.08s linear;
}

/* ========================================
   WHATSAPP FLUTUANTE
   ======================================== */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 20px;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: #25d366;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.55rem;
    z-index: 800;
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.45);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 22px rgba(37, 211, 102, 0.6);
}

@media (min-width: 1280px) {
    .whatsapp-float {
        display: none;
    }
}

/* ========================================
   TELA PEQUENA  (máx 390px)
   ======================================== */
@media (max-width: 390px) {
    .logo img {
        height: 36px;
    }

    .hero-content h1 {
        font-size: 1.7rem;
    }

    .hero-content p {
        font-size: 0.95rem;
        margin-bottom: 24px;
    }

    .cta-button {
        padding: 11px 24px;
        font-size: 0.9rem;
    }

    .frota {
        padding: 48px 0;
    }

    .section-header h2 {
        font-size: 1.55rem;
    }

    .section-header p {
        font-size: 0.92rem;
    }

    .depoimentos {
        padding: 48px 0;
    }

    .confianca-intro h2 {
        font-size: 1.6rem;
    }

    .confianca-linha h3 {
        font-size: 1.05rem;
    }

    .servicos {
        padding: 90px 0 48px;
    }

    .footer {
        padding: 40px 0 16px;
    }

    .whatsapp-float {
        width: 46px;
        height: 46px;
        font-size: 1.35rem;
        bottom: 18px;
        right: 14px;
    }
}

/* ========================================
   DESKTOP  (768px+)
   ======================================== */
@media (min-width: 768px) {

    .logo img {
        height: 52px;
    }

    /* Header nav — show inline */
    .nav {
        display: flex !important;
        position: static;
        background: none;
        border-top: none;
        padding: 0;
        align-items: center;
    }

    .nav ul {
        flex-direction: row;
        gap: clamp(16px, 3vw, 40px);
    }

    .nav a {
        display: inline;
        padding: 0;
    }

    .nav a::after {
        display: block;
        content: '';
        position: absolute;
        bottom: -6px;
        left: 0;
        width: 0;
        height: 2px;
        background-color: var(--accent-blue-light);
        transition: width 0.3s ease;
    }

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

    .nav a:hover {
        background: none;
    }

    .nav-toggle {
        display: none;
    }

    /* Hero */
    .hero-content h1 {
        font-size: 3.2rem;
    }

    .hero-content p {
        font-size: 1.35rem;
    }

    /* Section headers */
    .section-header h2 {
        font-size: 2.4rem;
    }

    .section-header {
        margin-bottom: 52px;
    }

    /* Missão e valores */
    .missao-valores {
        padding: clamp(48px, 8vh, 100px) 0;
    }

    .missao-layout {
        grid-template-columns: 1.2fr 0.8fr;
        align-items: stretch;
        gap: 56px;
    }

    .missao-content h2 {
        font-size: 2.1rem;
    }

    .missao-item {
        padding: 18px 0;
    }

    .missao-foto {
        aspect-ratio: auto;
        height: 100%;
        min-height: 480px;
    }

    /* Frota */
    .frota {
        padding: clamp(48px, 8vh, 100px) 0;
    }

    .cards-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: minmax(420px, 60vh);
        gap: 24px;
    }

    .cards-grid .card {
        min-height: unset;
    }

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

    .card-overlay {
        opacity: 0;
        transition: opacity 0.4s ease;
    }

    .card:hover .card-overlay {
        opacity: 1;
    }

    /* Depoimentos */
    .depoimentos {
        padding: clamp(48px, 8vh, 90px) 0;
    }

    .confianca-intro h2 {
        font-size: 2.75rem;
    }

    .confianca-intro p {
        font-size: 1.1rem;
    }

    .confianca-linha {
        max-width: 760px;
    }

    .confianca-linha h3 {
        font-size: 1.55rem;
    }

    .confianca-linha p {
        font-size: 1rem;
    }

    .confianca-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 0;
        max-width: 640px;
        margin-left: auto;
        margin-right: auto;
    }

    .stat {
        padding: 0 20px;
        border-left: 1px solid rgba(255,255,255,0.1);
    }

    .stat:first-child {
        border-left: none;
        padding-left: 0;
    }

    .stat-num {
        font-size: 1.8rem;
    }

    /* Serviços */
    .servicos {
        padding: clamp(140px, 20vh, 180px) 0 clamp(48px, 8vh, 110px);
    }

    .section-divider {
        height: 130px;
    }

    .servicos-banner {
        max-width: 760px;
        margin: 0 auto 56px;
    }

    .servicos-lista {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        border-top: none;
    }

    .servico-item {
        padding: 0 32px;
        border-bottom: none;
        border-left: 1px solid #e2e8f0;
    }

    .servico-item:first-child {
        padding-left: 0;
        border-left: none;
    }

    .servico-item:last-child {
        padding-right: 0;
    }

    /* Footer */
    .footer {
        padding: 70px 0 24px;
    }

    .footer-grid {
        grid-template-columns: 1.6fr 1fr 1fr;
        gap: 50px;
        margin-bottom: 50px;
    }

    .footer-brand p {
        max-width: 380px;
    }

    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
}

/* ========================================
   LARGE DESKTOP  (1280px+)
   ======================================== */
@media (min-width: 1280px) {
    .rota-lateral {
        display: block;
    }

    .hero-content h1 {
        font-size: 4rem;
    }

    .hero-content p {
        font-size: 1.5rem;
    }
}
