
:root {
    --bg: #fbfbfb;
    --surface: #ffffff;
    --surface-alt: #f4f4f4;
    --text: #151515;
    --muted: #656565;
    --line: #dedede;
    --primary: #F05325;
    --primary-dark: #bd3b16;
    --secondary: #00B7A7;
    --navy: #111111;
    --navy-2: #242424;
    --accent: #FACE4A;
    --shadow: 0 28px 80px rgba(0, 0, 0, 0.11);
    --shadow-card: 0 18px 42px rgba(0, 0, 0, 0.08);
    --radius: 22px;
    --radius-lg: 32px;
    --container: 1600px;
    --header-height: 78px;
    --font: "Sora", Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

@font-face {
    font-family: "Sora";
    src: url("../fonts/sora/Sora-VariableFont_wght.ttf") format("truetype");
    font-weight: 100 800;
    font-style: normal;
    font-display: swap;
}

body {
    font-family: "Sora", system-ui, sans-serif;
    font-weight: 400;
}

h1,
h2,
h3 {
    font-family: "Sora", system-ui, sans-serif;
}

.main-nav a,
.btn {
    font-family: "Sora", system-ui, sans-serif;
    font-weight: 700;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    color: var(--text);
    background: var(--bg);
    font-family: var(--font);
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
}
body.modal-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
img { max-width: 100%; display: block; }
.container { width: min(100% - 40px, var(--container)); margin-inline: auto; }
.skip-link {
    position: absolute;
    left: 12px;
    top: -80px;
    z-index: 1001;
    padding: 10px 14px;
    color: #fff;
    background: var(--navy);
    border-radius: 10px;
}
.skip-link:focus { top: 12px; }
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
}
.topbar {
    color: #f4f4f4;
    background: var(--navy);
    font-size: .9rem;
}
.topbar__inner {
    min-height: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}
.topbar a { color: #fff; }
.topbar__contacts {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}
.topbar__note { color: #c8c8c8; }
.site-header {
    position: sticky;
    top: 0;
    z-index: 900;
    background: rgba(255, 255, 255, .94);
    border-bottom: 1px solid rgba(220, 229, 236, .85);
    backdrop-filter: blur(18px);
}
.site-header.is-scrolled { box-shadow: 0 12px 36px rgba(0, 0, 0, .08); }
.header__inner {
    min-height: var(--header-height);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
}
.brand {
    display: inline-flex;
    align-items: center;
    min-width: max-content;
}
.main-nav {
    display: flex;
    align-items: center;
    gap: 4px;
}
.main-nav a {
    padding: 10px 11px;
    color: #333333;
    font-size: .93rem;
    border-radius: 999px;
}
.main-nav a:hover,
.main-nav a:focus-visible,
.main-nav a.is-active {
    color: var(--primary-dark);
    background: #fff2ed;
    outline: none;
}
.header__actions {
    display: flex;
    align-items: center;
    gap: 10px;
}
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0 18px;
    border: 1px solid transparent;
    border-radius: 999px;
    font-weight: 600;
    text-align: center;
    transition: transform .16s ease, background .16s ease, box-shadow .16s ease, border-color .16s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn--primary {
    color: #111111;
    background: var(--primary);
    box-shadow: 0 12px 22px rgba(255, 67, 0, .22);
}
.btn--primary:hover { background: #d84218; }
.btn--secondary {
    color: var(--navy);
    background: #fff;
    border-color: var(--line);
}
.btn--secondary:hover {
    border-color: #c8c8c8;
    box-shadow: var(--shadow-card);
}
.btn--ghost {
    color: var(--navy);
    background: #fff2ed;
}
.btn--light {
    color: var(--navy);
    background: #fff;
}
.btn--large {
    min-height: 50px;
    padding-inline: 24px;
}
.btn--full { width: 100%; }
.menu-toggle {
    width: 44px;
    height: 44px;
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    padding: 0;
    background: transparent;
    border: 1px solid var(--line);
    border-radius: 999px;
}
.menu-toggle span:not(.sr-only) {
    width: 18px;
    height: 2px;
    margin-inline: auto;
    background: var(--navy);
    border-radius: 999px;
}
.breadcrumb {
    display: flex;
    gap: 9px;
    align-items: center;
    padding-top: 22px;
    color: var(--muted);
    font-size: .92rem;
}
.breadcrumb a { color: var(--primary-dark); font-weight: 800; }
.hero {
    position: relative;
    padding: 86px 0 96px;
    overflow: hidden;
    background:
        radial-gradient(circle at top right, rgba(255, 67, 0, .15), transparent 34%),
        linear-gradient(180deg, #ffffff 0%, #f7f7f7 100%);
}
.hero::after {
    content: "";
    position: absolute;
    right: -160px;
    top: 120px;
    width: 380px;
    height: 380px;
    background: rgba(255, 67, 0, .08);
    border-radius: 50%;
}
.hero__grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(320px, .9fr);
    gap: 56px;
    align-items: center;
}
.eyebrow {
    margin: 0 0 12px;
    color: var(--primary);
    font-size: .78rem;
    font-weight: 900;
    letter-spacing: .14em;
    text-transform: uppercase;
}
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 {
    line-height: 1.08;
    letter-spacing: -.045em;
}
h1 {
    max-width: 860px;
    margin-bottom: 22px;
    font-size: clamp(2.55rem, 6vw, 4.8rem);
}
h2 {
    margin-bottom: 16px;
    font-size: clamp(1.9rem, 3.5vw, 3.1rem);
}
h3 { font-size: 1.15rem; }
.hero__lead {
    max-width: 690px;
    margin-bottom: 30px;
    color: var(--muted);
    font-size: clamp(1.05rem, 2vw, 1.22rem);
}
.hero__actions, .inline-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}
.hero-panel {
    padding: 30px;
    color: #fff;
    background: linear-gradient(135deg, #111111, #2a2a2a);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}
.hero-panel__tag {
    display: inline-block;
    margin-bottom: 28px;
    padding: 7px 12px;
    color: #ffe2d8;
    background: rgba(255, 255, 255, .1);
    border-radius: 999px;
    font-weight: 800;
    font-size: .84rem;
}
.hero-panel strong {
    display: block;
    margin-bottom: 18px;
    font-size: 1.8rem;
    line-height: 1.1;
    letter-spacing: -.04em;
}
.hero-panel a {
    display: block;
    margin-bottom: 8px;
    color: #fff;
    font-weight: 600;
    font-size: 1.18rem;
}
.hero-panel p {
    margin: 26px 0 0;
    color: #d4d4d4;
}
.section { padding: 92px 0; }
.section--soft { background: var(--surface-alt); }
.section--dark {
    color: #fff;
    background:
        radial-gradient(circle at 20% 20%, rgba(255, 67, 0, .18), transparent 30%),
        linear-gradient(135deg, var(--navy), #070707);
}
.section--dark .eyebrow { color: #ffc0ad; }
.section--dark p { color: #d2d2d2; }
.section-heading { max-width: 780px; margin-bottom: 42px; }
.section-heading--split {
    max-width: none;
    display: grid;
    grid-template-columns: 1fr .78fr;
    gap: 54px;
    align-items: end;
}
.section-heading--split p:last-child { margin-bottom: 0; color: var(--muted); }
.cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}
.service-card {
    min-height: 250px;
    display: flex;
    flex-direction: column;
    padding: 28px;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.service-card:hover {
    transform: translateY(-4px);
    border-color: #d4d4d4;
    box-shadow: var(--shadow-card);
}
.service-card h2 { font-size: 1.45rem; }
.service-card p { color: var(--muted); }
.service-card a {
    margin-top: auto;
    color: var(--primary-dark);
    font-weight: 900;
}
.two-column {
    display: grid;
    grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
    gap: 54px;
    align-items: start;
}
.two-column p { color: var(--muted); }
.feature-list {
    display: grid;
    gap: 14px;
    padding: 0;
    margin: 0;
    list-style: none;
}
.feature-list li {
    padding: 20px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 16px;
}
.feature-list strong {
    display: block;
    margin-bottom: 7px;
    font-size: 1.02rem;
}
.feature-list span { color: var(--muted); }
.process-grid, .steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}
.process-grid article {
    padding: 26px;
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: var(--radius);
}
.process-grid span {
    display: inline-block;
    margin-bottom: 38px;
    color: #ffc0ad;
    font-weight: 900;
}
.steps article {
    padding: 26px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
}
.steps span {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    margin-bottom: 26px;
    color: #fff;
    background: var(--primary);
    border-radius: 14px;
    font-weight: 900;
}
.steps h2 { font-size: 1.25rem; }
.steps p { color: var(--muted); }
.cta-band {
    color: #fff;
    background: linear-gradient(135deg, #111111, #3a3a3a);
}
.cta-band__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    padding: 52px 0;
}
.cta-band h2 {
    max-width: 780px;
    margin-bottom: 10px;
    font-size: clamp(1.9rem, 3vw, 2.7rem);
}
.cta-band p { margin-bottom: 0; color: #f5f5f5; }
.cta-band .eyebrow { color: #ffe2d8; }
.faq-list {
    display: grid;
    gap: 12px;
}
.faq-list details {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 16px;
    box-shadow: 0 1px 0 rgba(0, 0, 0, .02);
}
.faq-list summary {
    padding: 18px 20px;
    font-weight: 900;
    cursor: pointer;
}
.faq-list p {
    margin: 0;
    padding: 0 20px 20px;
    color: var(--muted);
}
.contact-grid {
    display: grid;
    grid-template-columns: .92fr 1.08fr;
    gap: 28px;
    align-items: start;
}
.contact-card, .contact-form {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card);
}
.contact-card { padding: 34px; }
.contact-card p { color: var(--muted); }
.contact-lines {
    display: grid;
    gap: 12px;
    margin-top: 28px;
}
.contact-lines a, .contact-lines div {
    display: grid;
    gap: 4px;
    padding: 16px;
    background: #fafafa;
    border: 1px solid #e5e5e5;
    border-radius: 14px;
}
.contact-lines span {
    color: var(--muted);
    font-size: .86rem;
}
.contact-lines strong { line-height: 1.3; }
.contact-form {
    display: grid;
    gap: 18px;
    padding: 28px;
}
.form-row {
    display: grid;
    gap: 8px;
}
.form-row--split {
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}
label {
    color: #242424;
    font-size: .92rem;
    font-weight: 900;
}
input, select, textarea {
    width: 100%;
    min-height: 46px;
    padding: 12px 14px;
    color: var(--text);
    background: #fff;
    border: 1px solid #d0d0d0;
    border-radius: 12px;
    outline: none;
}
textarea { resize: vertical; }
input:focus, select:focus, textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(255, 67, 0, .16);
}
.checkbox {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: var(--muted);
    font-weight: 500;
}
.checkbox input {
    width: 18px;
    min-width: 18px;
    height: 18px;
    min-height: 18px;
    margin-top: 3px;
}
.form-note {
    margin: 0;
    color: var(--muted);
    font-size: .9rem;
}
.form-note.is-success { color: #176f5f; font-weight: 900; }
.form-note.is-error { color: #a53131; font-weight: 900; }
.site-footer {
    color: #dceaf2;
    background: #070707;
}
.footer__grid {
    display: grid;
    grid-template-columns: 1.2fr .9fr .9fr;
    gap: 38px;
    padding: 58px 0 38px;
}
.footer__grid p {
    max-width: 410px;
    margin: 18px 0 0;
    color: #c8c8c8;
}
.footer__grid h2 {
    margin-bottom: 16px;
    font-size: 1rem;
    letter-spacing: 0;
}
.footer__grid a, .footer__grid span {
    display: block;
    margin-bottom: 10px;
    color: #c8c8c8;
}
.footer__grid a:hover { color: #fff; }
.footer__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 20px 0;
    color: #a8a8a8;
    border-top: 1px solid rgba(255,255,255,.1);
    font-size: .92rem;
}
.footer__bottom div {
    display: flex;
    gap: 16px;
    align-items: center;
}
.footer__bottom a, .footer__bottom button {
    color: #fff;
    background: transparent;
    border: 0;
    font-weight: 900;
}
.floating-contact {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 850;
    display: flex;
    gap: 8px;
    padding: 8px;
    background: rgba(255,255,255,.92);
    border: 1px solid var(--line);
    border-radius: 999px;
    box-shadow: var(--shadow);
    backdrop-filter: blur(14px);
}
.floating-contact a, .floating-contact button {
    min-height: 40px;
    display: inline-flex;
    align-items: center;
    padding: 0 15px;
    color: #ffffff;
    background: var(--navy);
    border: 0;
    border-radius: 999px;
    font-weight: 600;
}
.floating-contact button {
    color: #111111;
    background: var(--primary);
}
.modal {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: none;
}
.modal.is-open { display: block; }
.modal__overlay {
    position: absolute;
    inset: 0;
    background: rgba(4, 16, 26, .68);
}
.modal__dialog {
    position: relative;
    width: min(100% - 34px, 680px);
    max-height: calc(100dvh - 34px);
    overflow: auto;
    margin: 17px auto;
    padding: 30px;
    background: #fff;
    border-radius: var(--radius-lg);
    box-shadow: 0 30px 90px rgba(0,0,0,.28);
}
.modal__close {
    position: absolute;
    right: 18px;
    top: 14px;
    width: 42px;
    height: 42px;
    color: var(--text);
    background: #f1f5f8;
    border: 1px solid #dce5ec;
    border-radius: 50%;
    font-size: 1.7rem;
    line-height: 1;
}
.modal__intro { color: var(--muted); }
.contact-form--modal {
    padding: 0;
    border: 0;
    box-shadow: none;
    border-radius: 0;
}
@media (max-width: 1120px) {
    .main-nav {
        position: fixed;
        left: 20px;
        right: 20px;
        top: calc(var(--header-height) + 48px);
        display: none;
        flex-direction: column;
        align-items: stretch;
        padding: 14px;
        background: #fff;
        border: 1px solid var(--line);
        border-radius: 22px;
        box-shadow: var(--shadow);
    }
    .main-nav.is-open { display: flex; }
    .main-nav a { padding: 14px 16px; border-radius: 12px; }
    .menu-toggle { display: flex; }
    .header__actions .btn--ghost { display: none; }
    .hero__grid, .two-column, .contact-grid { grid-template-columns: 1fr; }
    .cards-grid, .process-grid, .steps { grid-template-columns: repeat(2, 1fr); }
    .section-heading--split { grid-template-columns: 1fr; gap: 12px; }
}
@media (max-width: 720px) {
    .container { width: min(100% - 28px, var(--container)); }
    .topbar__inner {
        align-items: flex-start;
        flex-direction: column;
        gap: 4px;
        padding: 10px 0;
    }
    .topbar__note { font-size: .82rem; }
    .header__actions .btn--primary { display: none; }
    .section { padding: 68px 0; }
    .hero { padding: 64px 0 72px; }
    h1 { font-size: clamp(2.25rem, 12vw, 3.55rem); }
    .hero__actions, .inline-actions { flex-direction: column; }
    .btn { width: 100%; }
    .cards-grid, .process-grid, .steps, .footer__grid { grid-template-columns: 1fr; }
    .form-row--split { grid-template-columns: 1fr; }
    .cta-band__inner {
        align-items: stretch;
        flex-direction: column;
    }
    .footer__bottom {
        align-items: flex-start;
        flex-direction: column;
        padding-bottom: 90px;
    }
    .floating-contact {
        left: 14px;
        right: 14px;
        bottom: 14px;
        justify-content: stretch;
    }
    .floating-contact a, .floating-contact button {
        flex: 1;
        justify-content: center;
    }
    .modal__dialog { padding: 24px; }
}
@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after {
        transition-duration: .01ms !important;
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
    }
}


/* Ajustes finais: navegação, legais, recondicionados e cookies */
.main-nav a.nav-highlight {
    color: #111111;
    background: var(--primary);
    font-weight: 900;
}
.main-nav a.nav-highlight:hover,
.main-nav a.nav-highlight:focus-visible,
.main-nav a.nav-highlight.is-active {
    color: #111111;
    background: #d84218;
}

.hero--recondicionados {
    background:
        radial-gradient(circle at top right, rgba(255, 67, 0, .20), transparent 34%),
        linear-gradient(180deg, #ffffff 0%, #f7f7f7 100%);
}
.hero--legal {
    padding: 70px 0 82px;
}
.narrow-content {
    max-width: 880px;
}
.legal-content h2 {
    margin-top: 34px;
    font-size: clamp(1.45rem, 2.4vw, 2rem);
}
.legal-content h3 {
    margin-top: 24px;
    letter-spacing: -.025em;
}
.legal-content p {
    color: var(--muted);
}
.legal-content a {
    color: var(--primary-dark);
    font-weight: 900;
    text-decoration: underline;
    text-underline-offset: 3px;
}
.footer__grid {
    grid-template-columns: 1.15fr .9fr .9fr .9fr;
}
.cookie-banner {
    position: fixed;
    left: 18px;
    right: 18px;
    bottom: 18px;
    z-index: 1200;
}
.cookie-banner__inner {
    width: min(100%, 1120px);
    margin-inline: auto;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 22px;
    align-items: center;
    padding: 20px;
    color: #ffffff;
    background: rgba(17, 17, 17, .96);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 24px;
    box-shadow: 0 24px 80px rgba(0,0,0,.28);
    backdrop-filter: blur(14px);
}
.cookie-banner strong {
    display: block;
    margin-bottom: 4px;
    font-size: 1.05rem;
}
.cookie-banner p {
    margin: 0;
    color: #d2d2d2;
}
.cookie-banner__actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}
.cookie-banner .btn--secondary {
    color: #ffffff;
    background: #242424;
    border-color: rgba(255,255,255,.16);
}
.cookie-preferences {
    position: fixed;
    inset: 0;
    z-index: 1300;
}
.cookie-preferences__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.68);
}
.cookie-preferences__dialog {
    position: relative;
    width: min(100% - 34px, 680px);
    max-height: calc(100dvh - 34px);
    overflow: auto;
    margin: 17px auto;
    padding: 30px;
    background: #ffffff;
    border-radius: var(--radius-lg);
    box-shadow: 0 30px 90px rgba(0,0,0,.28);
}
.cookie-options {
    display: grid;
    gap: 12px;
    margin: 24px 0;
}
.cookie-options label {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    padding: 16px;
    background: #fafafa;
    border: 1px solid var(--line);
    border-radius: 16px;
}
.cookie-options input {
    width: 20px;
    min-width: 20px;
    height: 20px;
    min-height: 20px;
    margin-top: 2px;
}
.cookie-options strong {
    display: block;
    margin-bottom: 4px;
}
.cookie-options small {
    display: block;
    color: var(--muted);
    font-size: .9rem;
    font-weight: 500;
}
.cookie-preferences__actions {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    flex-wrap: wrap;
}

@media (max-width: 1120px) {
    .main-nav a.nav-highlight {
        border-radius: 12px;
    }
    .footer__grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .cookie-banner__inner {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 720px) {
    .footer__grid {
        grid-template-columns: 1fr;
    }
    .cookie-banner {
        left: 10px;
        right: 10px;
        bottom: 10px;
    }
    .cookie-banner__actions,
    .cookie-preferences__actions {
        display: grid;
        grid-template-columns: 1fr;
    }
    .cookie-banner .btn,
    .cookie-preferences .btn {
        width: 100%;
    }
}


/* Ajuste visual final baseado na versão ideal */
.container {
    width: min(100% - 72px, var(--container));
}

.topbar {
    background: linear-gradient(90deg, #111111, #181818);
}

.topbar__inner {
    min-height: 38px;
}

.site-header {
    background: rgba(255, 255, 255, .96);
}

.header__inner {
    min-height: 96px;
}

.brand img {
    width: 210px;
    height: auto;
}

.main-nav {
    gap: 12px;
}

.main-nav a {
    position: relative;
    padding: 12px 2px;
    color: #252525;
    background: transparent;
    border-radius: 0;
}

.main-nav a:hover,
.main-nav a:focus-visible {
    color: var(--primary);
    background: transparent;
}

.main-nav a.is-active:not(.nav-highlight) {
    color: var(--primary);
    background: transparent;
}

.main-nav a.nav-highlight {
    color: var(--primary);
    background: transparent;
    border: 0;
    border-radius: 0;
    font-weight: 900;
}

.main-nav a.nav-highlight::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 2px;
    height: 2px;
    background: var(--primary);
    border-radius: 999px;
}

.main-nav a.nav-highlight:hover,
.main-nav a.nav-highlight:focus-visible,
.main-nav a.nav-highlight.is-active {
    color: var(--primary);
    background: transparent;
}

.btn--primary {
    color: #ffffff;
    background: var(--primary);
    box-shadow: 0 14px 26px rgba(255, 67, 0, .24);
}

.btn--primary:hover {
    color: #ffffff;
    background: #d84218;
}

.btn--ghost {
    color: var(--navy);
    background: #ffffff;
    border-color: #d8d8d8;
}

.btn--ghost:hover {
    border-color: var(--navy);
}

.hero {
    min-height: calc(100vh - 134px);
    display: flex;
    align-items: center;
    padding: 118px 0 128px;
    background:
        radial-gradient(circle at 100% 38%, rgba(255, 67, 0, .18) 0 15%, rgba(255, 67, 0, .08) 16%, transparent 34%),
        radial-gradient(circle at 82% 72%, rgba(255, 67, 0, .11) 0 1px, transparent 1.5px),
        linear-gradient(180deg, #ffffff 0%, #fbfbfb 100%);
    background-size: auto, 38px 38px, auto;
}

.hero::after {
    right: -110px;
    top: 18%;
    width: 390px;
    height: 390px;
    background: rgba(255, 67, 0, .10);
}

.hero__grid {
    grid-template-columns: minmax(0, 1.14fr) minmax(420px, .86fr);
    gap: 96px;
    align-items: center;
}

h1 {
    max-width: 850px;
    font-size: clamp(2.75rem, 4.25vw, 4.7rem);
    line-height: 1.07;
    letter-spacing: -.058em;
}

.hero__lead {
    max-width: 720px;
    margin-bottom: 34px;
    color: #5f5f5f;
    font-size: clamp(1.05rem, 1.15vw, 1.28rem);
}

.hero-main-cta {
    min-width: 170px;
}

.hero-panel {
    width: min(100%, 455px);
    min-height: 335px;
    margin-left: auto;
    padding: 38px;
    background:
        linear-gradient(145deg, rgba(255,255,255,.045), rgba(255,255,255,0)),
        linear-gradient(135deg, #1b1b1b, #111111);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 28px;
    box-shadow: 0 32px 75px rgba(0,0,0,.16);
}

.hero-panel__tag {
    margin-bottom: 34px;
    color: #ffc0ad;
    background: rgba(255,255,255,.08);
}

.hero-panel strong {
    font-size: 1.85rem;
}

.hero-panel a {
    position: relative;
    padding-left: 0;
    font-size: 1.1rem;
}

.hero-panel p {
    margin-top: 30px;
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,.12);
}

.cta-band {
    background: linear-gradient(135deg, #111111, #2a2a2a);
}

.cookie-banner {
    left: 32px;
    right: 32px;
    bottom: 28px;
}

.cookie-banner__inner {
    width: min(100%, 1120px);
    grid-template-columns: 48px 1fr auto;
    gap: 18px;
    padding: 18px 22px;
    color: #151515;
    background: rgba(255,255,255,.96);
    border: 1px solid rgba(0,0,0,.09);
    border-radius: 22px;
    box-shadow: 0 22px 70px rgba(0,0,0,.16);
}

.cookie-banner__icon {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    color: #111111;
    background: #f1f1f1;
    border-radius: 50%;
}

.cookie-banner p {
    color: #505050;
}

.cookie-banner .btn {
    min-height: 38px;
    padding-inline: 22px;
}

.cookie-banner .btn--secondary {
    color: #333333;
    background: #ffffff;
    border-color: #d8d8d8;
}

.cookie-banner .btn--secondary:hover {
    background: #f7f7f7;
}

.cookie-banner .btn--primary {
    color: #ffffff;
}

.floating-contact {
    right: 32px;
    bottom: 50px;
    padding: 7px;
    background: rgba(255,255,255,.95);
    border-color: rgba(0,0,0,.08);
    box-shadow: 0 16px 42px rgba(0,0,0,.12);
}

.floating-contact a {
    color: #111111;
    background: #ffffff;
}

.floating-contact button {
    color: #ffffff;
    background: var(--primary);
}

.footer__grid {
    grid-template-columns: 1.2fr .9fr .9fr .9fr;
}

@media (max-width: 1280px) {
    .container {
        width: min(100% - 48px, var(--container));
    }

    .hero__grid {
        gap: 60px;
        grid-template-columns: 1fr .82fr;
    }

    h1 {
        font-size: clamp(2.55rem, 5vw, 4.1rem);
    }
}

@media (max-width: 1120px) {
    .main-nav {
        gap: 0;
    }

    .main-nav a.nav-highlight::after {
        display: none;
    }

    .hero {
        min-height: auto;
        padding: 82px 0;
    }

    .hero__grid {
        grid-template-columns: 1fr;
    }

    .hero-panel {
        margin-left: 0;
    }

    .cookie-banner__inner {
        grid-template-columns: 42px 1fr;
    }

    .cookie-banner__actions {
        grid-column: 1 / -1;
    }
}

@media (max-width: 720px) {
    .container {
        width: min(100% - 28px, var(--container));
    }

    .header__inner {
        min-height: 78px;
    }

    .brand img {
        width: 168px;
    }

    .hero {
        padding: 58px 0 76px;
    }

    h1 {
        font-size: clamp(2.25rem, 11vw, 3.45rem);
    }

    .cookie-banner {
        left: 10px;
        right: 10px;
        bottom: 10px;
    }

    .cookie-banner__inner {
        grid-template-columns: 1fr;
        padding: 16px;
    }

    .cookie-banner__icon {
        display: none;
    }

    .floating-contact {
        left: 14px;
        right: 14px;
        bottom: 14px;
    }
}


/* Ajuste final com logótipo oficial Computek */
:root {
    --primary: #F05325;
    --primary-dark: #bd3b16;
    --accent: #FACE4A;
}

.brand img {
    width: 230px;
    max-height: 54px;
    object-fit: contain;
}

.brand--footer img {
    width: 230px;
    max-height: 54px;
}

.btn--primary,
.cookie-banner .btn--primary,
.floating-contact button {
    color: #ffffff;
    background: var(--primary);
    border-color: var(--primary);
    box-shadow: 0 14px 26px rgba(240, 83, 37, .24);
}

.btn--primary:hover,
.cookie-banner .btn--primary:hover,
.floating-contact button:hover {
    color: #ffffff;
    background: #bd3b16;
    border-color: #bd3b16;
}

.main-nav a.nav-highlight,
.main-nav a.is-active:not(.nav-highlight),
.main-nav a:hover,
.main-nav a:focus-visible {
    color: var(--primary);
}

.main-nav a.nav-highlight::after {
    background: var(--primary);
}

.eyebrow {
    color: var(--primary);
}

.hero {
    background:
        radial-gradient(circle at 100% 38%, rgba(240, 83, 37, .18) 0 15%, rgba(240, 83, 37, .08) 16%, transparent 34%),
        radial-gradient(circle at 82% 72%, rgba(250, 206, 74, .18) 0 1px, transparent 1.5px),
        linear-gradient(180deg, #ffffff 0%, #fbfbfb 100%);
    background-size: auto, 38px 38px, auto;
}

.hero::after {
    background: rgba(240, 83, 37, .10);
}

.hero-panel__tag {
    color: #ffffff;
    border: 1px solid rgba(240, 83, 37, .22);
}

.hero-panel {
    background:
        linear-gradient(145deg, rgba(250,206,74,.055), rgba(255,255,255,0)),
        linear-gradient(135deg, #1b1b1b, #111111);
}

.cookie-banner__icon {
    color: #111111;
    background: rgba(250, 206, 74, .28);
}

.form-note.is-success {
    color: #7a4b00;
}

@media (max-width: 720px) {
    .brand img {
        width: 190px;
    }
}
