
: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;
}

/* --------------------------------------------------------------------------
   SPACING HELPERS
   ms = margin-start / esquerda em LTR
   me = margin-end / direita em LTR
-------------------------------------------------------------------------- */

.ms-0 { margin-left: 0 !important; }
.ms-1 { margin-left: .25rem !important; }  /* 4px */
.ms-2 { margin-left: .5rem !important; }   /* 8px */
.ms-3 { margin-left: 1rem !important; }    /* 16px */
.ms-4 { margin-left: 1.5rem !important; }  /* 24px */
.ms-5 { margin-left: 3rem !important; }    /* 48px */

.me-0 { margin-right: 0 !important; }
.me-1 { margin-right: .25rem !important; } /* 4px */
.me-2 { margin-right: .5rem !important; }  /* 8px */
.me-3 { margin-right: 1rem !important; }   /* 16px */
.me-4 { margin-right: 1.5rem !important; } /* 24px */
.me-5 { margin-right: 3rem !important; }   /* 48px */

.ms-auto { margin-left: auto !important; }
.me-auto { margin-right: auto !important; }

.text-start { text-align: left !important; }
.text-end { text-align: right !important; }
.text-center { text-align: center !important; }


/* --------------------------------------------------------------------------
   FONT SIZE HELPERS
   fs-8 até fs-40
   Base: 1rem = 16px
-------------------------------------------------------------------------- */

.fs-8 { font-size: .5rem !important; }
.fs-9 { font-size: .5625rem !important; }
.fs-10 { font-size: .625rem !important; }
.fs-11 { font-size: .6875rem !important; }
.fs-12 { font-size: .75rem !important; }
.fs-13 { font-size: .8125rem !important; }
.fs-14 { font-size: .875rem !important; }
.fs-15 { font-size: .9375rem !important; }
.fs-16 { font-size: 1rem !important; }
.fs-17 { font-size: 1.0625rem !important; }
.fs-18 { font-size: 1.125rem !important; }
.fs-19 { font-size: 1.1875rem !important; }
.fs-20 { font-size: 1.25rem !important; }
.fs-21 { font-size: 1.3125rem !important; }
.fs-22 { font-size: 1.375rem !important; }
.fs-23 { font-size: 1.4375rem !important; }
.fs-24 { font-size: 1.5rem !important; }
.fs-25 { font-size: 1.5625rem !important; }
.fs-26 { font-size: 1.625rem !important; }
.fs-27 { font-size: 1.6875rem !important; }
.fs-28 { font-size: 1.75rem !important; }
.fs-29 { font-size: 1.8125rem !important; }
.fs-30 { font-size: 1.875rem !important; }
.fs-31 { font-size: 1.9375rem !important; }
.fs-32 { font-size: 2rem !important; }
.fs-33 { font-size: 2.0625rem !important; }
.fs-34 { font-size: 2.125rem !important; }
.fs-35 { font-size: 2.1875rem !important; }
.fs-36 { font-size: 2.25rem !important; }
.fs-37 { font-size: 2.3125rem !important; }
.fs-38 { font-size: 2.375rem !important; }
.fs-39 { font-size: 2.4375rem !important; }
.fs-40 { font-size: 2.5rem !important; }

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; }

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

.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: var(--primary); }
.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: center;
}
.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,
.link-standard {
    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;
    padding-bottom: 10px;
    color: var(--primary);
    font-weight: 900;
    border-bottom: 2px solid var(--primary);
}
.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: #ff9773; }
.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: #e8c6bd;
}
.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: #9f9f9f;
    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: 500;
}
.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) + 10px);
        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: #919191;
}

.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 {
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(180deg, #ffffff 0%, #fbfbfb 100%);
}

.hero::before {
    content: "";
    position: absolute;
    right: 8%;
    top: 20%;
    width: 420px;
    height: 420px;
    pointer-events: none;
    background:
        linear-gradient(135deg, rgba(240,83,37,.11), rgba(240,83,37,.03));
    border-radius: 48px;
    transform: rotate(8deg);
}

.hero::after {
    content: "";
    position: absolute;
    right: -160px;
    top: 38%;
    width: 360px;
    height: 360px;
    pointer-events: none;
    background: rgba(0,109,119,.06);
    border-radius: 48px;
    transform: rotate(-12deg);
}

.hero .container,
.hero__grid {
    position: relative;
    z-index: 1;
}

.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;
    }
}

.contact-info-list {
    display: grid;
    gap: 14px;
}

.contact-info-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px 20px;
    color: #111111;
    background: #ffffff;
    border: 1px solid #e5e5e5;
    border-radius: 18px;
    text-decoration: none;
    box-shadow: 0 10px 28px rgba(0, 0, 0, .04);
    transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}

.contact-info-card:hover {
    border-color: rgba(240, 83, 37, .35);
    box-shadow: 0 16px 34px rgba(0, 0, 0, .07);
    transform: translateY(-2px);
}

.contact-info-icon {
    width: 42px;
    height: 42px;
    min-width: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #F05325;
    background: #fff2ed;
    border-radius: 14px;
    font-size: 1.15rem;
}

.contact-info-content {
    display: grid;
    gap: 3px;
}

.contact-info-content small {
    color: #666766;
    font-size: .86rem;
    font-weight: 500;
}

.contact-info-content strong {
    color: #111111;
    font-size: 1rem;
    font-weight: 800;
    line-height: 1.45;
}

@media (max-width: 640px) {
    .contact-info-card {
        align-items: flex-start;
        padding: 16px;
    }

    .contact-info-icon {
        width: 38px;
        height: 38px;
        min-width: 38px;
        border-radius: 12px;
    }

    .contact-info-content strong {
        font-size: .96rem;
    }
}

@media (max-width: 991px) {

    .hero-illustration {
        display: none;
    }
}

/* ==========================================================================
   ERROR 404
========================================================================== */

.error-404 {
    position: relative;
    overflow: hidden;
    min-height: 72vh;
    display: flex;
    align-items: center;
    padding: clamp(96px, 10vw, 150px) 0;
    background:
        radial-gradient(circle at 86% 36%, rgba(240, 83, 37, .14), transparent 34%),
        radial-gradient(circle at 76% 74%, rgba(0, 109, 119, .08), transparent 30%),
        linear-gradient(180deg, #ffffff 0%, #fbfbfb 100%);
}

.error-404::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image:
        radial-gradient(circle, rgba(240, 83, 37, .20) 1px, transparent 1.35px);
    background-size: 44px 44px;
    background-position: 18px 14px;
    opacity: .18;
    mask-image: linear-gradient(
        90deg,
        transparent 0%,
        transparent 38%,
        rgba(0, 0, 0, .32) 68%,
        rgba(0, 0, 0, .85) 100%
    );
}

.error-404__grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, .95fr) minmax(360px, .65fr);
    gap: clamp(48px, 7vw, 110px);
    align-items: center;
}

.error-404__content {
    max-width: 760px;
}

.error-404 h1 {
    max-width: 760px;
    margin: 0;
    color: #111111;
    font-size: clamp(3.4rem, 7vw, 7.2rem);
    line-height: .92;
    letter-spacing: -.07em;
}

.error-404__lead {
    max-width: 620px;
    margin: 28px 0 0;
    color: #5f6368;
    font-size: clamp(1.05rem, 1.5vw, 1.28rem);
    line-height: 1.65;
}

.error-404__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 34px;
}

.error-404__links {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 34px;
}

.error-404__links a {
    display: inline-flex;
    align-items: center;
    min-height: 42px;
    padding: 10px 16px;
    color: #111111;
    background: #ffffff;
    border: 1px solid #e7e7e7;
    border-radius: 999px;
    text-decoration: none;
    font-size: .94rem;
    font-weight: 800;
    box-shadow: 0 12px 34px rgba(0, 0, 0, .04);
    transition:
        border-color .18s ease,
        box-shadow .18s ease,
        transform .18s ease;
}

.error-404__links a:hover {
    border-color: rgba(240, 83, 37, .38);
    box-shadow: 0 18px 42px rgba(0, 0, 0, .08);
    transform: translateY(-2px);
}

.error-404__visual {
    position: relative;
    min-height: 430px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.error-404__number {
    position: relative;
    color: #111111;
    font-size: clamp(8rem, 14vw, 15rem);
    line-height: 1;
    font-weight: 900;
    letter-spacing: -.08em;
    text-shadow: 0 30px 80px rgba(0, 0, 0, .12);
}

.error-404__number::after {
    content: "";
    position: absolute;
    right: -42px;
    top: 8%;
    width: 140px;
    height: 140px;
    background: rgba(240, 83, 37, .15);
    border-radius: 38px;
    transform: rotate(12deg);
    z-index: -1;
}

.error-404__card {
    position: absolute;
    left: 50%;
    bottom: 16px;
    width: min(100%, 360px);
    padding: 22px;
    color: #ffffff;
    background:
        linear-gradient(145deg, rgba(0, 109, 119, .13), transparent 42%),
        linear-gradient(135deg, #1b1b1b, #0f0f0f);
    border: 1px solid rgba(255, 255, 255, .10);
    border-radius: 24px;
    box-shadow: 0 28px 80px rgba(0, 0, 0, .22);
    transform: translateX(-50%);
}

.error-404__card strong {
    display: block;
    margin-bottom: 8px;
    font-size: 1.1rem;
    line-height: 1.25;
}

.error-404__card p {
    margin: 0;
    color: rgba(255, 255, 255, .70);
    font-size: .95rem;
    line-height: 1.55;
}

.error-404__status {
    width: 12px;
    height: 12px;
    display: inline-flex;
    margin-bottom: 14px;
    background: #F05325;
    border-radius: 50%;
    box-shadow: 0 0 0 8px rgba(240, 83, 37, .16);
}

@media (max-width: 991px) {
    .error-404 {
        min-height: auto;
        padding: 86px 0;
    }

    .error-404__grid {
        grid-template-columns: 1fr;
        gap: 46px;
    }

    .error-404__visual {
        min-height: 300px;
    }

    .error-404__number {
        font-size: clamp(7rem, 32vw, 12rem);
    }
}

@media (max-width: 640px) {
    .error-404__actions {
        display: grid;
    }

    .error-404__actions .btn {
        width: 100%;
    }

    .error-404__links {
        display: grid;
    }

    .error-404__links a {
        justify-content: center;
    }
}

/* ==========================================================================
   CORREÇÃO FOOTER RESPONSIVO
   Mantém o footer em 4 colunas no desktop, 2 colunas em tablet e 1 coluna em mobile.
   Esta regra fica no fim do ficheiro para não ser anulada por regras anteriores.
========================================================================== */

.site-footer {
    overflow-x: hidden;
}

.footer__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) repeat(3, minmax(0, .9fr));
    gap: 38px;
    padding: 58px 0 38px;
}

.footer__grid > div {
    min-width: 0;
}

.footer__grid a,
.footer__grid span {
    max-width: 100%;
    overflow-wrap: anywhere;
    word-break: normal;
    line-height: 1.45;
}

.footer__grid i {
    flex: 0 0 auto;
}

.footer__certifications {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
    margin-top: 22px;
}

.footer__certifications a {
    display: inline-flex;
    align-items: center;
    margin: 0;
}

.footer__certifications img {
    width: 140px;
    max-width: 100%;
    height: auto;
}

.footer__support-note {
    margin-top: -6px;
    color: #9f9f9f;
}

.footer__bottom {
    flex-wrap: wrap;
}

.footer__bottom > span,
.footer__bottom > div {
    min-width: 0;
}

.footer__bottom div {
    flex-wrap: wrap;
}

@media (max-width: 1120px) {
    .footer__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 34px;
    }
}

@media (max-width: 720px) {
    .footer__grid {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 46px 0 30px;
    }

    .brand--footer img {
        width: min(190px, 100%);
    }

    .footer__grid p {
        max-width: none;
    }

    .footer__certifications {
        gap: 10px;
    }

    .footer__certifications img {
        width: min(140px, calc(50vw - 30px));
    }

    .footer__bottom {
        align-items: flex-start;
        flex-direction: column;
        gap: 12px;
        padding-bottom: 90px;
    }

    .footer__bottom div {
        gap: 10px;
    }

    .topbar__note,
    .topbar_hide_mobile {
        display: none;
    }
}

@media (max-width: 420px) {
    .footer__certifications {
        display: grid;
        grid-template-columns: 1fr;
        justify-items: start;
    }

    .footer__certifications img {
        width: 140px;
    }
}


/* ==========================================================================
   LANDING PAGE - WEBSITES 48H + FORMULÁRIO DE PEDIDO
========================================================================== */

.landing-48h-hero {
    position: relative;
    overflow: hidden;
    min-height: calc(100vh - 134px);
    display: flex;
    align-items: center;
    padding: 104px 0 112px;
    background:
        radial-gradient(circle at 88% 18%, rgba(240,83,37,.15), transparent 32%),
        radial-gradient(circle at 72% 82%, rgba(250,206,74,.18), transparent 26%),
        linear-gradient(180deg, #ffffff 0%, #fbfbfb 100%);
}

.landing-48h-hero::before {
    content: "";
    position: absolute;
    right: 8%;
    top: 18%;
    width: 460px;
    height: 460px;
    pointer-events: none;
    background: linear-gradient(135deg, rgba(240,83,37,.10), rgba(250,206,74,.06));
    border-radius: 54px;
    transform: rotate(8deg);
}

.landing-48h-hero__grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(420px, .92fr);
    gap: 72px;
    align-items: center;
}

.landing-48h-hero__content h1 {
    max-width: 900px;
}

.landing-48h-hero__side {
    display: grid;
    gap: 18px;
}

/*.landing-price-card {
    width: min(100%, 640px);
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin: 28px 0;
}*/

.landing-price-card > div {
    padding: 22px;
    background: #ffffff;
    border: 1px solid rgba(0,0,0,.08);
    border-radius: 22px;
    box-shadow: 0 14px 38px rgba(0,0,0,.06);
}

.landing-price-card small,
.landing-price-card span {
    display: block;
    color: var(--muted);
}

.landing-price-card strong {
    display: block;
    margin: 4px 0;
    color: var(--primary);
    font-size: clamp(2.1rem, 4vw, 3.25rem);
    line-height: 1;
    letter-spacing: -.06em;
}

.landing-checks {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px 16px;
    padding: 0;
    margin: 0 0 30px;
    list-style: none;
    color: #252525;
    font-weight: 700;
}

.landing-checks i {
    color: var(--primary);
    font-size: 1.18rem;
    vertical-align: -2px;
}

.landing-image-placeholder {
    min-height: 300px;
    display: grid;
    place-items: center;
    padding: 30px;
    text-align: center;
    background:
        linear-gradient(135deg, rgba(240,83,37,.10), rgba(250,206,74,.12)),
        #ffffff;
    border: 1px dashed rgba(240,83,37,.42);
    border-radius: 28px;
    box-shadow: var(--shadow-card);
}

.landing-image-placeholder span {
    display: block;
    color: #111111;
    font-size: 1.2rem;
    font-weight: 900;
}

.landing-image-placeholder small {
    display: block;
    max-width: 360px;
    margin-top: 6px;
    color: var(--muted);
}

.landing-image-placeholder--small {
    min-height: 190px;
    margin-top: 22px;
    box-shadow: none;
}

.landing-48h-card {
    padding: 30px;
    color: #ffffff;
    background:
        linear-gradient(145deg, rgba(240,83,37,.12), rgba(255,255,255,0)),
        linear-gradient(135deg, #1b1b1b, #111111);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 28px;
    box-shadow: 0 26px 70px rgba(0,0,0,.16);
}

.landing-48h-card h2 {
    margin: 14px 0 10px;
    font-size: clamp(1.6rem, 2.5vw, 2.25rem);
}

.landing-48h-card p {
    color: #d6d6d6;
}

.landing-badge {
    display: inline-flex;
    align-items: center;
    width: max-content;
    padding: 7px 12px;
    color: #ffffff;
    background: rgba(240,83,37,.95);
    border-radius: 999px;
    font-size: .82rem;
    font-weight: 900;
}

.landing-mini-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-top: 22px;
}

.landing-mini-stats span {
    padding: 13px;
    color: #dcdcdc;
    background: rgba(255,255,255,.07);
    border: 1px solid rgba(255,255,255,.10);
    border-radius: 16px;
    font-size: .86rem;
}

.landing-mini-stats strong {
    display: block;
    color: #ffffff;
    font-size: 1.15rem;
}

.landing-feature-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.landing-feature-grid article {
    min-height: 230px;
    padding: 26px;
    background: #ffffff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: 0 12px 34px rgba(0,0,0,.04);
}

.landing-feature-grid i {
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    margin-bottom: 24px;
    color: var(--primary);
    background: #fff2ed;
    border-radius: 15px;
    font-size: 1.45rem;
}

.landing-feature-grid h3 {
    margin-bottom: 10px;
}

.landing-feature-grid p {
    color: var(--muted);
}

.landing-compare-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
}

.landing-compare-grid article {
    padding: 32px;
    color: #111111;
    background: #ffffff;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: var(--radius-lg);
    box-shadow: 0 20px 55px rgba(0,0,0,.18);
}

.landing-compare-grid h3 {
    margin: 18px 0 12px;
    font-size: clamp(1.35rem, 2.3vw, 2rem);
}

.landing-compare-grid p,
.landing-compare-grid li {
    color: #555555;
}

.landing-compare-grid ul {
    display: grid;
    gap: 10px;
    padding-left: 20px;
    margin-bottom: 0;
}

.landing-contact-grid {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 28px;
    align-items: start;
}

.hero--form-page {
    min-height: auto;
}

.website-form-layout {
    display: grid;
    grid-template-columns: minmax(280px, .42fr) minmax(0, .95fr);
    gap: 28px;
    align-items: start;
}

.website-form-aside {
    position: sticky;
    top: 128px;
}

.website-request-form {
    gap: 24px;
}

.website-form-section {
    display: grid;
    gap: 16px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--line);
}

.website-form-section:last-of-type {
    border-bottom: 0;
}

.website-form-section .eyebrow {
    margin-bottom: 0;
}

.field-help {
    display: block;
    margin-top: 6px;
    color: var(--muted);
    font-size: .84rem;
}

.domain-check-row {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 10px;
}

.domain-check-row .btn {
    min-height: 46px;
    white-space: nowrap;
}

.domain-note {
    min-height: 1.4em;
    margin-top: 8px;
}

.form-note.is-warning {
    color: #8a5b00;
    font-weight: 900;
}

.website-type-options {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.website-type-card {
    display: flex;
    gap: 13px;
    align-items: flex-start;
    padding: 18px;
    background: #ffffff;
    border: 1px solid #dedede;
    border-radius: 18px;
    cursor: pointer;
    transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}

.website-type-card:hover,
.website-type-card:has(input:checked) {
    border-color: rgba(240,83,37,.55);
    box-shadow: 0 14px 32px rgba(0,0,0,.06);
    transform: translateY(-1px);
}

.website-type-card input {
    width: 20px;
    min-width: 20px;
    height: 20px;
    min-height: 20px;
    margin-top: 2px;
}

.website-type-card strong {
    display: block;
    margin-bottom: 5px;
    color: #111111;
}

.website-type-card small {
    display: block;
    color: var(--muted);
    font-size: .88rem;
    font-weight: 500;
    line-height: 1.55;
}

.color-picker-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.color-picker-card {
    display: grid;
    gap: 10px;
    padding: 14px;
    background: #fafafa;
    border: 1px solid var(--line);
    border-radius: 16px;
    transition: border-color .18s ease, box-shadow .18s ease, background .18s ease;
}

.color-picker-card.is-active {
    background: #ffffff;
    border-color: rgba(240, 83, 37, .55);
    box-shadow: 0 12px 28px rgba(240, 83, 37, .10);
}

.color-picker-card__top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 10px;
}

.color-toggle {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: var(--muted);
    font-size: .78rem;
    font-weight: 700;
    line-height: 1.25;
    cursor: pointer;
}

.color-toggle input {
    width: 16px;
    height: 16px;
    margin: 0;
    accent-color: var(--primary);
}

.color-picker-grid input[type="color"] {
    width: 100%;
    height: 48px;
    padding: 4px;
    cursor: pointer;
}

.color-picker-grid input[type="color"]:disabled {
    cursor: not-allowed;
    opacity: .35;
    filter: grayscale(1);
}

.color-picker-grid small {
    color: var(--muted);
    font-size: .82rem;
}

.website-form-section--notice {
    padding: 18px;
    background: #fff8e6;
    border: 1px solid rgba(250,206,74,.65);
    border-radius: 18px;
}

.website-form-section--notice p {
    margin: 0;
    color: #5f4700;
}

.website-payment-box {
    align-self: end;
    display: grid;
    gap: 5px;
    padding: 16px;
    background: #111111;
    border-radius: 16px;
}

.website-payment-box strong {
    color: #ffffff;
    font-size: 1.05rem;
}

.website-payment-box span {
    color: #d0d0d0;
    font-size: .86rem;
}

@media (max-width: 1120px) {
    .landing-48h-hero {
        min-height: auto;
        padding: 78px 0;
    }

    .landing-48h-hero__grid,
    .landing-contact-grid,
    .website-form-layout {
        grid-template-columns: 1fr;
    }

    .website-form-aside {
        position: static;
    }

    .landing-feature-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 720px) {
    .landing-48h-hero {
        padding: 58px 0 72px;
    }

    .landing-price-card,
    .landing-checks,
    .landing-feature-grid,
    .landing-compare-grid,
    .website-type-options,
    .color-picker-grid,
    .landing-mini-stats {
        grid-template-columns: 1fr;
    }

    .domain-check-row {
        grid-template-columns: 1fr;
    }

    .domain-check-row .btn {
        width: 100%;
    }

    .landing-image-placeholder {
        min-height: 220px;
    }
}

/* Imagem real da landing page Websites 48h */
.landing-hero-mockup {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 300px;
}

.landing-hero-mockup img {
    width: min(100%, 760px);
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 28px 42px rgba(0,0,0,.12));
}

@media (max-width: 720px) {
    .landing-hero-mockup {
        min-height: 0;
        margin-top: 8px;
    }

    .landing-hero-mockup img {
        width: min(100%, 520px);
    }
}
