* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --azul: #13095a;
    --azul-2: #1b136f;
    --roxo-botao: #4338ca;
    --laranja: #ff7b57;
    --cinza-bg: #f3f3f3;
    --cinza-card: #f1efec;
    --texto: #1e1e1e;
    --texto-suave: #5a5a5a;
    --branco: #ffffff;
    --preto: #000000;
    --sombra: 0 8px 24px rgba(0, 0, 0, .16);
    --sombra-card: 0 16px 34px rgba(0, 0, 0, .10);
    --container: 1280px;
    --radius: 16px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    color: var(--texto);
    background: #fff;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    width: min(100%, var(--container));
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
}

.section-kicker {
    color: var(--laranja);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.section-kicker-light {
    color: #ffb29d;
}

/* topbar */

.topbar {
    position: relative;
    width: 100%;
    height: 93px;
    background: #ececec;
    border-top: 1px solid #d9d9d9;
    z-index: 20;
}

.topbar-inner {
    position: relative;
    width: 100%;
    max-width: 1400px;
    height: 100%;
    margin: 0 auto;
}

.brand-area {
    position: absolute;
    left: 30%;
    top: 26px;
    transform: translateX(-50%);
    display: flex;
    align-items: flex-start;
    gap: 10px;
    z-index: 50;
}

.brand-logo {
    width: 118px;
    height: auto;
    margin-bottom: -60px;
    object-fit: contain;
}

.brand-name {
    display: flex;
    align-items: baseline;
    white-space: nowrap;
    line-height: 1;
    margin-top: 8px;
}

.brand-red {
    color: #ef0d0d;
    font-size: 37px;
    font-weight: 700;
}

.brand-blue {
    color: #23324d;
    font-size: 37px;
    font-weight: 700;
}

.topbar-phone {
    position: absolute;
    right: 250px;
    top: 43px;
    color: #23324d;
    font-size: 17px;
    font-weight: 700;
    white-space: nowrap;
    transition: .2s ease;
}

.topbar-phone:hover {
    color: var(--azul);
}

/* hero */

.hero {
    position: relative;
    background: url('./assets/carrobanner.jpg') center/cover no-repeat;
    min-height: 560px;
    display: flex;
    align-items: center;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(0, 0, 0, .66) 0%, rgba(0, 0, 0, .38) 40%, rgba(0, 0, 0, .18) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 680px;
    margin-left: 80px;
    color: #fff;
}

.hero-kicker {
    display: inline-block;
    margin-bottom: 18px;
    padding: 8px 14px;
    background: rgba(255, 255, 255, .10);
    border: 1px solid rgba(255, 255, 255, .18);
    backdrop-filter: blur(4px);
    border-radius: 999px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.hero h1 {
    font-size: 74px;
    font-weight: 300;
    line-height: .92;
    margin-bottom: 22px;
}

.hero h1 span {
    display: block;
    font-size: 60px;
}

.hero-text {
    font-size: 20px;
    line-height: 1.55;
    margin-bottom: 28px;
    max-width: 540px;
    color: rgba(255, 255, 255, .94);
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
}

.hero-btn {
    display: inline-block;
    background: var(--roxo-botao);
    color: #fff;
    padding: 15px 28px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 17px;
    box-shadow: 0 14px 30px rgba(67, 56, 202, .32);
    transition: .2s ease;
}

.hero-btn:hover {
    transform: translateY(-2px);
    filter: brightness(1.05);
}

.hero-link {
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    border-bottom: 1px solid rgba(255, 255, 255, .4);
    padding-bottom: 2px;
    transition: .2s ease;
}

.hero-link:hover {
    border-bottom-color: #fff;
}

/* strip */

.hero-strip {
    width: 100%;
    background: #f3f3f3;
    border-top: 1px solid #cfcfcf;
    border-bottom: 3px solid #13095a;
}

.hero-strip-inner {
    max-width: 1100px;
    margin: 0 auto;
    min-height: 66px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 54px;
    padding: 0 20px;
}

.strip-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #1a2154;
    font-size: 18px;
    line-height: 1.1;
    white-space: nowrap;
}

.strip-item strong {
    font-weight: 700;
}

.strip-icon {
    width: 30px;
    height: 30px;
    color: #1a2154;
    flex-shrink: 0;
}

.strip-icon svg {
    width: 100%;
    height: 100%;
    display: block;
}

/* about */

.about {
    background: #fff;
    padding: 88px 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1.35fr .85fr;
    gap: 34px;
    align-items: stretch;
}

.about-copy h2 {
    color: #13095a;
    font-size: 44px;
    line-height: 1.12;
    margin-bottom: 20px;
    font-weight: 300;
}

.about-copy p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 16px;
    color: #2f2f2f;
    max-width: 720px;
}

.about-card {
    background: linear-gradient(180deg, #f7f5f3 0%, #f1eeeb 100%);
    border-radius: var(--radius);
    padding: 30px;
    box-shadow: var(--sombra-card);
    border: 1px solid rgba(19, 9, 90, .06);
}

.about-card h3 {
    color: #13095a;
    font-size: 24px;
    margin-bottom: 18px;
}

.about-card ul {
    list-style: none;
}

.about-card li {
    position: relative;
    padding-left: 22px;
    margin-bottom: 14px;
    line-height: 1.55;
    color: #2b2b2b;
}

.about-card li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 10px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--laranja);
}

/* services */

.services {
    position: relative;
    padding: 88px 0;
    background:
        linear-gradient(rgba(19, 9, 90, .82), rgba(19, 9, 90, .82)),
        url("./assets/fundoServicos.png") center center / cover no-repeat;
}

.services .container {
    max-width: 1180px;
}

.services .section-kicker {
    color: #ffb29d;
}

.services h2 {
    color: #fff;
    font-size: 46px;
    line-height: 1.15;
    font-weight: 300;
    margin-bottom: 38px;
    max-width: 760px;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
    align-items: stretch;
}

.service-card {
    min-height: 260px;
    background: #f1efec;
    border-radius: 16px;
    padding: 24px 22px 22px;
    box-shadow: var(--sombra-card);
    transition: .25s ease;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 36px rgba(0, 0, 0, .14);
}

.service-arrow {
    color: var(--laranja);
    font-size: 42px;
    line-height: 1;
    margin-bottom: 10px;
    font-weight: 300;
}

.service-card h3 {
    color: #13095a;
    font-size: 24px;
    line-height: 1.1;
    margin-bottom: 14px;
    font-weight: 400;
}

.service-card h3 strong {
    font-weight: 700;
}

.service-card p {
    color: #2f2f2f;
    font-size: 16px;
    line-height: 1.65;
}

/* benefits */

.benefits {
    background: #fafafa;
    padding: 88px 0;
}

.benefits .container {
    max-width: 1180px;
}

.benefits .section-kicker {
    text-align: center;
}

.benefits h2 {
    text-align: center;
    color: #13095a;
    font-size: 46px;
    line-height: 1.15;
    font-weight: 300;
    margin-bottom: 38px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.benefit-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
    align-items: stretch;
}

.benefit-item {
    background: #fff;
    border-radius: 16px;
    padding: 30px 24px;
    box-shadow: 0 12px 28px rgba(0, 0, 0, .08);
    border-top: 4px solid var(--azul);
    transition: .25s ease;
    min-height: 220px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.benefit-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 36px rgba(0, 0, 0, .12);
}

.benefit-number {
    color: rgba(19, 9, 90, .25);
    font-size: 14px;
    font-weight: 800;
    letter-spacing: .12em;
    margin-bottom: 14px;
}

.benefit-item h3 {
    color: #13095a;
    font-size: 25px;
    line-height: 1.15;
    margin-bottom: 12px;
}

.benefit-item p {
    color: #333;
    font-size: 16px;
    line-height: 1.7;
}

/* proof */

.proof {
    background: #ffffff;
    padding: 0 0 88px;
}

.proof-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.proof-item {
    background: linear-gradient(180deg, #f8f8f8 0%, #f1f1f1 100%);
    border: 1px solid rgba(19, 9, 90, .06);
    border-radius: 16px;
    padding: 22px 18px;
    text-align: center;
}

.proof-item strong {
    display: block;
    color: #13095a;
    font-size: 18px;
    margin-bottom: 8px;
}

.proof-item span {
    color: #4b4b4b;
    font-size: 14px;
    line-height: 1.55;
}

/* contact */

.contact {
    background: #f4f4f4;
    padding: 88px 20px;
    border-top: 3px solid var(--azul);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 460px;
    gap: 80px;
    align-items: start;
    max-width: 1100px;
}

.contact-left h2 {
    color: #13095a;
    font-size: 68px;
    line-height: .92;
    font-weight: 300;
    margin-bottom: 18px;
}

.contact-text {
    font-size: 18px;
    line-height: 1.7;
    max-width: 470px;
    color: #333;
    margin-bottom: 20px;
}

.contact-whats {
    display: inline-block;
    color: var(--azul);
    font-size: 16px;
    font-weight: 700;
    border-bottom: 1px solid rgba(19, 9, 90, .35);
    padding-bottom: 3px;
}

.contact-form {
    background: #eceae7;
    padding: 24px;
    border-radius: 12px;
    box-shadow: var(--sombra-card);
    border: 1px solid rgba(19, 9, 90, .05);
}

.field {
    margin-bottom: 16px;
}

.field label {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    font-weight: 700;
    color: #202020;
}

.field input,
.field textarea {
    width: 100%;
    border: 1px solid #bdbdbd;
    padding: 12px 14px;
    font-family: inherit;
    font-size: 15px;
    background: #f8f8f8;
    border-radius: 8px;
    outline: none;
    transition: .2s ease;
}

.field input:focus,
.field textarea:focus {
    border-color: var(--azul);
    box-shadow: 0 0 0 4px rgba(19, 9, 90, .08);
}

.field textarea {
    height: 130px;
    resize: vertical;
}

.submit-btn {
    width: 100%;
    border: none;
    background: #000;
    color: #fff;
    padding: 14px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: .2s ease;
}

.submit-btn:hover {
    filter: brightness(1.08);
}

/* footer */

.footer {
    background: var(--azul);
    color: #fff;
    text-align: center;
    padding: 22px 16px;
    font-size: 12px;
    font-weight: 700;
}

.footer-bottom {
    background: #050505;
    color: #fff;
    min-height: 34px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 14px;
    font-size: 10px;
    gap: 10px;
}

.footer-links {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.footer-links a {
    opacity: .9;
}

.footer-credit {
    opacity: .72;
}

/* whatsapp */

.whatsapp-float {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 999;
    transition: .2s ease;
}

.whatsapp-float:hover {
    transform: scale(1.05);
}

.whatsapp-float img {
    width: 50px;
    height: auto;
    display: block;
}

/* responsivo */

@media (max-width: 1200px) {
    .topbar-phone {
        right: 120px;
    }

    .brand-area {
        left: 34%;
    }
}

@media (max-width: 992px) {
    .topbar {
        height: auto;
        padding: 18px 20px;
    }

    .topbar-inner {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 8px;
        height: auto;
    }

    .brand-area {
        position: static;
        transform: none;
        align-items: center;
    }

    .brand-logo {
        width: 88px;
        margin-bottom: 0;
    }

    .brand-red,
    .brand-blue {
        font-size: 30px;
    }

    .topbar-phone {
        position: static;
        font-size: 15px;
        text-align: center;
    }

    .hero {
        min-height: 500px;
        justify-content: center;
    }

    .hero-content {
        margin-left: 0;
        padding: 0 20px;
        text-align: center;
    }

    .hero-text {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero h1 {
        font-size: 56px;
    }

    .hero h1 span {
        font-size: 46px;
    }

    .hero-strip-inner {
        gap: 22px;
        min-height: auto;
        padding: 16px;
        flex-wrap: wrap;
    }

    .about-grid,
    .contact-grid,
    .proof-grid {
        grid-template-columns: 1fr;
    }

    .service-grid,
    .benefit-grid {
        grid-template-columns: 1fr;
    }

    .services h2,
    .benefits h2 {
        max-width: 100%;
        font-size: 38px;
    }

    .service-card,
    .benefit-item {
        max-width: 420px;
        width: 100%;
        margin: 0 auto;
    }

    .contact-left h2 {
        font-size: 52px;
    }

    .contact-grid {
        gap: 36px;
    }
}

@media (max-width: 768px) {
    .brand-area {
        flex-direction: column;
        gap: 6px;
    }

    .brand-name {
        margin-top: 0;
    }

    .brand-red,
    .brand-blue {
        font-size: 28px;
    }

    .hero {
        min-height: 440px;
    }

    .hero-kicker {
        font-size: 11px;
    }

    .hero h1 {
        font-size: 42px;
        line-height: .98;
    }

    .hero h1 span {
        font-size: 34px;
    }

    .hero-text {
        font-size: 16px;
    }

    .hero-btn {
        font-size: 16px;
        padding: 12px 20px;
    }

    .hero-link {
        font-size: 15px;
    }

    .strip-item {
        font-size: 15px;
        white-space: normal;
        justify-content: center;
        text-align: center;
    }

    .strip-icon {
        width: 24px;
        height: 24px;
    }

    .about,
    .services,
    .benefits,
    .contact {
        padding-top: 56px;
        padding-bottom: 56px;
    }

    .proof {
        padding-bottom: 56px;
    }

    .about-copy h2,
    .services h2,
    .benefits h2 {
        font-size: 32px;
    }

    .contact-left h2 {
        font-size: 40px;
    }

    .contact-form {
        padding: 18px;
    }

    .footer-bottom {
        flex-direction: column;
        justify-content: center;
        padding: 8px 12px;
    }

    .whatsapp-float img {
        width: 42px;
    }
}

/* =========================
COOKIE CONSENT
========================= */

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #0f0f0f;
    color: #ffffff;
    padding: 20px;
    z-index: 9999;
    display: none;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.25);
    font-family: Arial, Helvetica, sans-serif;
}

.cookie-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.cookie-text {
    font-size: 14px;
    line-height: 1.6;
}

.cookie-text a {
    color: #8aa9ff;
    font-weight: 600;
    margin-left: 6px;
}

.cookie-actions {
    display: flex;
    gap: 10px;
}

.cookie-btn {
    border: none;
    padding: 10px 18px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: .2s;
}

.cookie-btn.accept {
    background: #4338ca;
    color: white;
}

.cookie-btn.accept:hover {
    filter: brightness(1.1);
}

.cookie-btn.reject {
    background: #444;
    color: white;
}

.cookie-btn.reject:hover {
    background: #555;
}

@media (max-width: 768px) {
    .cookie-container {
        flex-direction: column;
        align-items: flex-start;
    }

    .cookie-actions {
        width: 100%;
        justify-content: flex-end;
    }

    .cookie-text {
        font-size: 13px;
    }
}