:root {
    --dueda-orange: #ff4b1f;
    --dueda-orange-2: #ff7a1a;
    --dueda-orange-dark: #c93416;
    --dueda-green: #19c463;

    /* Tema escuro (padrão da marca) */
    --bg: #050505;
    --bg-alt: #08080a;
    --bg-2: #0b0b0d;
    --panel: #101014;
    --panel-2: #17171c;
    --header-bg: rgba(5, 5, 5, .88);
    --text: #f5f5f6;
    --text-soft: rgba(255, 255, 255, .82);
    --muted: #b7b7c3;
    --muted-2: rgba(255, 255, 255, .45);
    --ghost-2: rgba(255, 255, 255, .16);
    --border: rgba(255, 255, 255, .10);
    --border-strong: rgba(255, 255, 255, .22);
    --surface-wash: rgba(255, 255, 255, .045);
    --surface-wash-strong: rgba(255, 255, 255, .10);
    --input-bg: rgba(255, 255, 255, .04);
    --placeholder: rgba(255, 255, 255, .38);
    --accent-soft: #ffb090;
    --danger-text: #ffcfc0;
    --chip-bg: rgba(255, 255, 255, .045);
    --chip-border: rgba(255, 255, 255, .11);

    --container: 1240px;
}

:root[data-theme="light"] {
    --bg: #f7f7f8;
    --bg-alt: #eef0f3;
    --bg-2: #ececef;
    --panel: #ffffff;
    --panel-2: #f2f2f4;
    --header-bg: rgba(255, 255, 255, .86);
    --text: #101014;
    --text-soft: rgba(16, 16, 20, .82);
    --muted: #54545f;
    --muted-2: rgba(16, 16, 20, .45);
    --ghost-2: rgba(16, 16, 20, .10);
    --border: rgba(16, 16, 20, .12);
    --border-strong: rgba(16, 16, 20, .22);
    --surface-wash: rgba(16, 16, 20, .04);
    --surface-wash-strong: rgba(16, 16, 20, .08);
    --input-bg: rgba(16, 16, 20, .035);
    --placeholder: rgba(16, 16, 20, .4);
    --accent-soft: #c93416;
    --danger-text: #b23112;
    --chip-bg: rgba(16, 16, 20, .035);
    --chip-border: rgba(16, 16, 20, .12);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    min-height: 100vh;
    margin: 0;
    color: var(--text);
    background: var(--bg);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    transition: background-color .25s ease, color .25s ease;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    width: min(100% - 32px, var(--container));
    margin: 0 auto;
}

h1, h2, h3 {
    margin: 0;
    line-height: 1.15;
}

p {
    margin: 0;
}

/* ===== Header ===== */
.site-header {
    position: sticky;
    top: 0;
    z-index: 40;
    background: var(--header-bg);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
}

.nav-shell {
    width: min(100% - 32px, var(--container));
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 14px 0;
}

.brand-logo {
    height: 34px;
    width: auto;
}

.main-menu {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-left: auto;
}

.main-menu a {
    color: var(--text-soft);
    font-weight: 800;
    font-size: .92rem;
    white-space: nowrap;
}

.main-menu a:hover,
.main-menu a:focus {
    color: var(--text);
}

.nav-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    border: 1px solid var(--dueda-orange);
    background: linear-gradient(135deg, var(--dueda-orange), var(--dueda-orange-dark));
    color: #fff !important;
}

.theme-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid var(--border);
    background: var(--surface-wash);
    color: var(--text);
    font-size: 1.1rem;
    cursor: pointer;
    transition: border-color .18s ease, background .18s ease;
}

.theme-toggle:hover {
    border-color: rgba(255, 75, 31, .5);
}

.theme-toggle .bi-moon-stars {
    display: none;
}

:root[data-theme="light"] .theme-toggle .bi-sun {
    display: none;
}

:root[data-theme="light"] .theme-toggle .bi-moon-stars {
    display: inline;
}

.menu-toggle {
    display: none;
    margin-left: auto;
    width: 42px;
    height: 42px;
    place-items: center;
    border: 1px solid var(--border);
    background: var(--surface-wash);
    color: var(--text);
    font-size: 1.4rem;
}

/* ===== Botões ===== */
.btn {
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 18px;
    border: 1px solid transparent;
    font-weight: 900;
    line-height: 1;
    cursor: pointer;
    transition: transform .18s ease, border-color .18s ease, background .18s ease, color .18s ease, box-shadow .18s ease;
}

.btn:hover,
.btn:focus {
    transform: translateY(-2px);
}

.btn-lg {
    min-height: 54px;
    padding: 14px 24px;
    font-size: 1rem;
}

.btn-orange {
    color: #fff;
    border-color: var(--dueda-orange);
    background: linear-gradient(135deg, var(--dueda-orange), var(--dueda-orange-dark));
    box-shadow: 0 16px 34px rgba(255, 75, 31, .27);
}

.btn-orange:hover,
.btn-orange:focus {
    color: #fff;
    background: linear-gradient(135deg, var(--dueda-orange-2), var(--dueda-orange));
}

.btn-orange:disabled {
    opacity: .6;
    cursor: not-allowed;
    transform: none;
}

.btn-ghost {
    color: var(--text);
    border-color: var(--border-strong);
    background: var(--surface-wash);
}

.btn-ghost:hover,
.btn-ghost:focus {
    border-color: rgba(255, 75, 31, .5);
    background: var(--surface-wash-strong);
    color: var(--text);
}

.btn-whatsapp {
    color: #fff;
    border-color: #19c463;
    background: #19c463;
    box-shadow: 0 16px 34px rgba(25, 196, 99, .22);
}

.btn-whatsapp:hover,
.btn-whatsapp:focus {
    background: #12a954;
    color: #fff;
}

/* ===== Hero ===== */
.hero-section {
    position: relative;
    overflow: hidden;
    min-height: 610px;
    padding: 96px 0 72px;
    background:
        linear-gradient(90deg, rgba(3, 3, 5, .97) 0%, rgba(3, 3, 5, .92) 34%, rgba(3, 3, 5, .62) 61%, rgba(3, 3, 5, .34) 100%),
        linear-gradient(180deg, rgba(3, 3, 5, .14) 55%, rgba(3, 3, 5, .9) 100%),
        url('../img/hero-banner.jpg') 68% center / cover no-repeat;
    color: #fff;
}

.grid-layer {
    position: absolute;
    inset: 0;
    opacity: .26;
    background-image:
        linear-gradient(var(--border) 1px, transparent 1px),
        linear-gradient(90deg, var(--border) 1px, transparent 1px);
    background-size: 32px 32px;
    mask-image: linear-gradient(to bottom, black, transparent 84%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    margin-bottom: 22px;
    border: 1px solid rgba(255, 75, 31, .4);
    background: rgba(255, 75, 31, .12);
    color: var(--accent-soft);
    font-size: .82rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .06em;
}

.hero-section h1 {
    max-width: 710px;
    font-size: clamp(2.1rem, 4.4vw, 3.15rem);
    font-weight: 950;
    color: #fff;
}

.hero-lead {
    margin-top: 20px;
    max-width: 640px;
    color: rgba(255, 255, 255, .78);
    font-size: 1.08rem;
    line-height: 1.65;
}

.hero-section .btn-ghost {
    color: #fff;
    border-color: rgba(255, 255, 255, .3);
    background: rgba(5, 5, 7, .54);
    backdrop-filter: blur(8px);
}

.hero-section .btn-ghost:hover,
.hero-section .btn-ghost:focus {
    color: #fff;
    border-color: rgba(255, 75, 31, .72);
    background: rgba(5, 5, 7, .76);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 32px;
}

.hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 22px;
    margin-top: 34px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, .16);
}

.hero-trust span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, .72);
    font-size: .88rem;
    font-weight: 700;
}

.hero-trust i {
    color: var(--dueda-orange);
}

/* ===== Seções genéricas ===== */
.section-block {
    padding: 72px 0;
    border-top: 1px solid var(--border);
}

.section-block-alt {
    background: linear-gradient(180deg, var(--surface-wash), transparent), var(--bg-alt);
}

.about-section {
    padding: 72px 0;
    border-top: 1px solid var(--border);
}

.about-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(400px, .85fr);
    align-items: center;
    gap: clamp(36px, 6vw, 80px);
}

.about-content {
    display: grid;
    gap: 16px;
}

.about-content .eyebrow {
    justify-content: flex-start;
}

.about-content h2 {
    font-size: clamp(1.6rem, 3vw, 2.1rem);
    font-weight: 950;
    color: var(--text);
}

.about-content p {
    color: var(--muted);
    line-height: 1.7;
    font-size: 1.02rem;
}

.about-visual {
    position: relative;
    aspect-ratio: 4 / 3;
    margin: 0;
    overflow: hidden;
    border: 1px solid var(--border);
    background: var(--panel-2);
    box-shadow: 0 26px 70px rgba(0, 0, 0, .24);
}

.about-visual::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(3, 3, 5, .08) 50%, rgba(3, 3, 5, .82));
    pointer-events: none;
}

.about-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-stamp {
    position: absolute;
    z-index: 2;
    top: 18px;
    left: 18px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 12px;
    color: #fff;
    background: rgba(5, 5, 7, .78);
    border: 1px solid rgba(255, 255, 255, .2);
    backdrop-filter: blur(8px);
    font-size: .78rem;
    font-weight: 900;
}

.about-stamp i {
    color: var(--dueda-orange);
}

.about-visual figcaption {
    position: absolute;
    z-index: 2;
    right: 20px;
    bottom: 18px;
    left: 20px;
    color: #fff;
    font-size: .95rem;
    font-weight: 900;
}

.section-heading {
    max-width: 720px;
    margin: 0 auto 40px;
    text-align: center;
    display: grid;
    gap: 12px;
}

.section-heading h2 {
    font-size: clamp(1.6rem, 3vw, 2.15rem);
    font-weight: 950;
    color: var(--text);
}

.section-heading p {
    color: var(--muted);
    line-height: 1.6;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: var(--accent-soft);
    text-transform: uppercase;
    font-size: .76rem;
    letter-spacing: .12em;
    font-weight: 950;
}

.eyebrow i {
    color: var(--dueda-orange);
}

/* ===== O que compramos: categorias ===== */
.category-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.category-card {
    overflow: hidden;
    border: 1px solid var(--border);
    background: var(--panel);
    text-align: left;
    transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.category-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 75, 31, .52);
    box-shadow: 0 20px 56px rgba(255, 75, 31, .12);
}

.category-media {
    position: relative;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: var(--panel-2);
}

.category-media::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 56%, rgba(4, 4, 6, .68));
    pointer-events: none;
}

.category-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .35s ease;
}

.category-card:hover .category-media img {
    transform: scale(1.035);
}

.category-icon {
    position: absolute;
    z-index: 1;
    left: 16px;
    bottom: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    color: #fff;
    background: linear-gradient(135deg, var(--dueda-orange), var(--dueda-orange-dark));
    font-size: 1.4rem;
    box-shadow: 0 12px 28px rgba(0, 0, 0, .32);
}

.category-copy {
    padding: 22px 20px 24px;
}

.category-card h3 {
    font-size: 1.06rem;
    font-weight: 950;
    color: var(--text);
    margin-bottom: 8px;
}

.category-card p {
    color: var(--muted);
    font-size: .9rem;
    line-height: 1.55;
}

.category-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    margin-top: 20px;
    color: var(--muted-2);
    font-size: .78rem;
}

/* ===== Como funciona ===== */
.process-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.process-card {
    position: relative;
    padding: 28px 22px;
    border: 1px solid var(--border);
    background: var(--panel);
    transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.process-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 75, 31, .52);
    box-shadow: 0 20px 56px rgba(255, 75, 31, .12);
}

.process-step {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    margin-bottom: 16px;
    color: #fff;
    background: linear-gradient(135deg, var(--dueda-orange), var(--dueda-orange-dark));
    font-size: 1.15rem;
}

.process-number {
    position: absolute;
    top: 18px;
    right: 18px;
    color: var(--ghost-2);
    font-size: 2rem;
    font-weight: 950;
    line-height: 1;
}

.process-card h3 {
    margin: 0 0 10px;
    color: var(--text);
    font-size: 1.1rem;
    font-weight: 950;
    line-height: 1.2;
}

.process-card p {
    margin: 0;
    color: var(--muted);
    font-size: .92rem;
    line-height: 1.6;
}

/* ===== Benefícios ===== */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.benefit-card {
    padding: 28px 22px;
    border: 1px solid var(--border);
    background: var(--panel);
}

.benefit-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    margin-bottom: 16px;
    color: var(--dueda-orange);
    border: 1px solid rgba(255, 75, 31, .3);
    background: rgba(255, 75, 31, .1);
    font-size: 1.3rem;
}

.benefit-card h3 {
    color: var(--text);
    font-size: 1.06rem;
    font-weight: 950;
    margin-bottom: 8px;
}

.benefit-card p {
    color: var(--muted);
    font-size: .92rem;
    line-height: 1.6;
}

/* ===== Faixa de CTA ===== */
.cta-band {
    padding: 64px 0;
    border-top: 1px solid var(--border);
    background:
        radial-gradient(circle at 50% 0%, rgba(255, 75, 31, .16), transparent 50%),
        var(--bg-2);
    text-align: center;
}

.cta-band-content {
    display: grid;
    justify-items: center;
    gap: 14px;
}

.cta-band-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    margin-bottom: 6px;
    color: var(--dueda-orange);
    border: 1px solid rgba(255, 75, 31, .3);
    background: rgba(255, 75, 31, .1);
    font-size: 1.6rem;
}

.cta-band-content h2 {
    font-size: clamp(1.5rem, 3vw, 1.9rem);
    font-weight: 950;
    color: var(--text);
}

.cta-band-content p {
    color: var(--muted);
}

.cta-band-content .btn {
    margin-top: 8px;
}

/* ===== FAQ ===== */
.faq-list {
    display: grid;
    gap: 10px;
}

.faq-item {
    border: 1px solid var(--border);
    background: var(--panel);
    padding: 4px 20px;
}

.faq-item summary {
    padding: 16px 0;
    color: var(--text);
    font-weight: 850;
    font-size: 1rem;
    cursor: pointer;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: "\F282";
    font-family: "bootstrap-icons";
    font-size: 1rem;
    color: var(--dueda-orange);
    flex: 0 0 auto;
    transition: transform .18s ease;
}

.faq-item[open] summary::after {
    transform: rotate(180deg);
}

.faq-item p {
    padding: 0 0 18px;
    color: var(--muted);
    line-height: 1.6;
    font-size: .94rem;
}

/* ===== Localização ===== */
.location-grid {
    display: grid;
    grid-template-columns: minmax(280px, .8fr) minmax(0, 1.2fr);
    gap: 28px;
    align-items: start;
}

.location-grid h2 {
    margin-top: 10px;
    font-size: clamp(1.5rem, 3vw, 1.9rem);
    font-weight: 950;
    color: var(--text);
}

.location-card {
    margin-top: 22px;
    padding: 22px;
    border: 1px solid var(--border);
    background: var(--panel);
    display: grid;
    gap: 6px;
}

.location-card strong {
    color: var(--text);
    font-size: 1.05rem;
}

.location-card span {
    color: var(--muted);
    line-height: 1.5;
}

.location-actions {
    margin-top: 14px;
}

.map-embed {
    overflow: hidden;
    border: 1px solid var(--border);
    aspect-ratio: 4 / 3;
    background: var(--panel);
}

.map-embed iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

:root:not([data-theme="light"]) .map-embed iframe {
    filter: invert(90%) hue-rotate(180deg) brightness(.95) contrast(.92);
}

/* ===== Formulário de contato ===== */
.contact-form {
    padding: 32px;
    border: 1px solid var(--border);
    background: var(--panel);
    display: grid;
    gap: 20px;
}

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

.field-block {
    display: grid;
    gap: 9px;
    border: none;
    padding: 0;
    margin: 0;
}

.field-block legend {
    padding: 0 0 4px;
    color: var(--text-soft);
    font-size: .86rem;
    font-weight: 800;
}

.field-block > span {
    color: var(--text-soft);
    font-size: .86rem;
    font-weight: 800;
}

.field-block input[type="text"],
.field-block input[type="tel"],
.field-block input[type="email"],
.field-block select,
.field-block textarea {
    width: 100%;
    padding: 13px 14px;
    border: 1px solid var(--border);
    background: var(--input-bg);
    color: var(--text);
    font: inherit;
    font-size: .95rem;
}

.field-block textarea {
    resize: vertical;
    min-height: 110px;
}

.field-block input::placeholder,
.field-block textarea::placeholder {
    color: var(--placeholder);
}

.field-block input:focus,
.field-block select:focus,
.field-block textarea:focus {
    outline: none;
    border-color: rgba(255, 75, 31, .55);
    background: rgba(255, 75, 31, .06);
}

.chip-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
}

.chip-grid label {
    min-height: 54px;
    display: flex;
    align-items: center;
}

.chip-grid input {
    position: absolute;
    opacity: 0;
    width: 1px;
    height: 1px;
}

.chip-content {
    width: 100%;
    min-height: 54px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 11px 13px;
    border: 1px solid var(--chip-border);
    background: var(--chip-bg);
    color: var(--text-soft);
    font-weight: 800;
    font-size: .88rem;
    line-height: 1.2;
    transition: transform .18s ease, border-color .18s ease, background .18s ease;
}

.chip-content:hover {
    transform: translateY(-2px);
    border-color: rgba(255, 75, 31, .52);
}

.chip-grid input:checked + .chip-content {
    border-color: rgba(255, 75, 31, .72);
    background: rgba(255, 75, 31, .18);
    color: var(--text);
}

.chip-mark {
    width: 32px;
    height: 32px;
    display: grid;
    place-items: center;
    flex: 0 0 32px;
    color: var(--dueda-orange);
    border: 1px solid rgba(255, 75, 31, .22);
    background: rgba(255, 75, 31, .10);
}

.chip-label {
    min-width: 0;
}

.form-error {
    display: none;
    padding: 13px 16px;
    border: 1px solid rgba(255, 75, 31, .5);
    background: rgba(255, 75, 31, .12);
    color: var(--danger-text);
    font-size: .9rem;
    font-weight: 700;
}

.form-error.is-visible {
    display: block;
}

/* Honeypot anti-spam: campo escondido da visão, visível para bots */
.hp-field {
    position: absolute;
    left: -5000px;
    top: -5000px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

/* ===== Upload de fotos ===== */
.dropzone {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 34px 20px;
    border: 1px dashed var(--border-strong);
    background: var(--surface-wash);
    text-align: center;
    cursor: pointer;
    transition: border-color .18s ease, background .18s ease;
}

.dropzone:hover,
.dropzone.is-dragover {
    border-color: rgba(255, 75, 31, .6);
    background: rgba(255, 75, 31, .08);
}

.dropzone i {
    font-size: 1.8rem;
    color: var(--dueda-orange);
}

.dropzone strong {
    color: var(--text);
    font-size: 1rem;
}

.dropzone span {
    color: var(--muted);
    font-size: .84rem;
}

.dropzone input[type="file"] {
    position: absolute;
    width: 1px;
    height: 1px;
    opacity: 0;
    pointer-events: none;
}

.photo-help {
    margin: 10px 0 0;
    color: var(--muted);
    font-size: .84rem;
    line-height: 1.5;
}

.photo-preview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(96px, 1fr));
    gap: 10px;
    margin-top: 14px;
}

.photo-preview-item {
    position: relative;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border: 1px solid var(--border);
    background: var(--panel-2);
}

.photo-preview-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.photo-preview-item button {
    position: absolute;
    top: 4px;
    right: 4px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    border: none;
    background: rgba(5, 5, 5, .78);
    color: #fff;
    font-size: .8rem;
    cursor: pointer;
}

.photo-preview-item button:hover {
    background: var(--dueda-orange);
}

/* ===== Resultado do formulário ===== */
.form-result {
    padding: 40px 32px;
    border: 1px solid var(--border);
    background: var(--panel);
    text-align: center;
    display: grid;
    justify-items: center;
    gap: 14px;
}

.form-result[hidden] {
    display: none;
}

.form-result-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    color: #fff;
    background: linear-gradient(135deg, var(--dueda-orange), var(--dueda-orange-dark));
    font-size: 1.7rem;
}

.form-result h3 {
    color: var(--text);
    font-size: 1.3rem;
    font-weight: 950;
}

.form-result p {
    color: var(--muted);
    max-width: 520px;
    line-height: 1.6;
}

.form-result-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    margin-top: 6px;
}

/* ===== Rodapé ===== */
.site-footer {
    border-top: 1px solid var(--border);
    background: var(--bg-2);
    padding: 40px 0 0;
}

.footer-grid {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding-bottom: 28px;
}

.footer-logo {
    height: 30px;
    margin-bottom: 10px;
}

.footer-grid p {
    color: var(--muted);
    font-size: .88rem;
    max-width: 320px;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
}

.footer-links a {
    color: var(--text-soft);
    font-size: .88rem;
    font-weight: 700;
}

.footer-links a:hover {
    color: var(--text);
}

.footer-bottom {
    padding: 18px 0;
    border-top: 1px solid var(--border);
    color: var(--muted-2);
    font-size: .8rem;
}

/* ===== WhatsApp flutuante ===== */
.floating-whatsapp {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 50;
    width: 60px;
    height: 60px;
    display: grid;
    place-items: center;
    background: #19c463;
    color: #fff;
    font-size: 1.7rem;
    box-shadow: 0 16px 34px rgba(25, 196, 99, .35);
    animation: pulse-whatsapp 2.4s ease-in-out infinite;
}

@keyframes pulse-whatsapp {
    0%, 100% { box-shadow: 0 16px 34px rgba(25, 196, 99, .35); }
    50% { box-shadow: 0 16px 34px rgba(25, 196, 99, .6), 0 0 0 8px rgba(25, 196, 99, .12); }
}

/* ===== Responsivo ===== */
@media (max-width: 1180px) {
    .category-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

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

@media (max-width: 960px) {
    .about-layout {
        grid-template-columns: 1fr;
    }

    .about-content {
        max-width: 760px;
    }

    .about-visual {
        width: min(100%, 620px);
        margin: 0 auto;
    }

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

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

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

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

@media (max-width: 860px) {
    .menu-toggle {
        display: grid;
    }

    .main-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 2px;
        padding: 10px 16px 18px;
        background: var(--bg);
        border-bottom: 1px solid var(--border);
    }

    .main-menu.is-open {
        display: flex;
    }

    .main-menu a {
        padding: 12px 4px;
        border-bottom: 1px solid var(--border);
    }

    .nav-cta {
        justify-content: center;
        margin-top: 8px;
    }

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

@media (max-width: 640px) {
    .hero-section {
        min-height: auto;
        padding: 72px 0 56px;
        background:
            linear-gradient(90deg, rgba(3, 3, 5, .96), rgba(3, 3, 5, .74)),
            linear-gradient(180deg, rgba(3, 3, 5, .2) 45%, rgba(3, 3, 5, .94) 100%),
            url('../img/hero-banner.jpg') 64% center / cover no-repeat;
    }

    .hero-lead {
        font-size: 1rem;
    }

    .hero-trust {
        gap: 14px;
    }

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

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

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

    .contact-form {
        padding: 22px;
    }

    .container,
    .nav-shell {
        width: min(100% - 24px, var(--container));
    }

    .floating-whatsapp {
        width: 54px;
        height: 54px;
        right: 16px;
        bottom: 16px;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: .01ms !important;
    }
}

/* ===== Scroll reveal ===== */
.reveal-on-scroll {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity .5s ease, transform .5s ease;
    transition-delay: var(--reveal-delay, 0ms);
}

.reveal-on-scroll.is-visible {
    opacity: 1;
    transform: none;
}
