/* =========================================================
   SABOR DA VILA — DESIGN SYSTEM PREMIUM
   ========================================================= */

:root {
    --primary: #f04438;
    --primary-strong: #d92d20;
    --primary-soft: #ff6b4a;
    --accent: #f6c453;
    --accent-strong: #eaaa08;

    --ink: #18100f;
    --ink-2: #2a1b19;
    --text: #2f2422;
    --muted: #716765;

    --surface: #fffdfb;
    --surface-2: #fff7f2;
    --surface-3: #f8eee8;
    --dark: #120b0a;
    --dark-2: #1d1210;
    --white: #ffffff;

    --green: #25d366;

    --border: rgba(47, 36, 34, 0.11);
    --border-light: rgba(255,255,255,0.14);

    --shadow-sm: 0 12px 30px rgba(57, 29, 22, 0.08);
    --shadow-md: 0 20px 55px rgba(57, 29, 22, 0.12);
    --shadow-lg: 0 32px 80px rgba(38, 18, 14, 0.20);

    --radius-xs: 10px;
    --radius-sm: 16px;
    --radius: 24px;
    --radius-lg: 34px;
    --radius-pill: 999px;

    --container: 1220px;
    --header-h: 82px;

    --ease: cubic-bezier(.2,.8,.2,1);
}

/* ========== RESET ========== */

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: calc(var(--header-h) + 20px);
}

body {
    margin: 0;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background: var(--surface);
    color: var(--text);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

body.menu-open {
    overflow: hidden;
}

::selection {
    background: var(--primary);
    color: var(--white);
}

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

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

button,
input,
textarea,
select {
    font: inherit;
}

button {
    color: inherit;
}

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

h1,
h2,
h3,
h4,
p {
    margin-top: 0;
}

h1,
h2,
h3,
h4 {
    color: var(--ink);
    letter-spacing: -0.035em;
}

p {
    color: var(--muted);
}

.container {
    width: min(var(--container), calc(100% - 40px));
    margin-inline: auto;
}

.skip-link {
    position: fixed;
    top: 10px;
    left: 10px;
    z-index: 99999;
    transform: translateY(-160%);
    padding: 10px 14px;
    border-radius: 10px;
    background: var(--white);
    color: var(--ink);
    box-shadow: var(--shadow-sm);
}

.skip-link:focus {
    transform: translateY(0);
}

section {
    position: relative;
    padding: 112px 0;
}

.section-light {
    background: var(--surface);
}

.section-warm {
    background:
        radial-gradient(circle at 10% 10%, rgba(240,68,56,.07), transparent 27%),
        var(--surface-2);
}

.section-dark {
    background:
        radial-gradient(circle at 80% 0%, rgba(240,68,56,.14), transparent 33%),
        linear-gradient(180deg, var(--dark-2), var(--dark));
}

.section-accent {
    background:
        radial-gradient(circle at 85% 10%, rgba(246,196,83,.25), transparent 30%),
        linear-gradient(135deg, #9f1b14 0%, #cf2e23 48%, #f04438 100%);
}

.eyebrow {
    margin-bottom: 14px;
    color: var(--primary);
    font-size: .78rem;
    font-weight: 800;
    letter-spacing: .18em;
    text-transform: uppercase;
}

.section-heading {
    max-width: 720px;
    margin-bottom: 52px;
}

.section-heading h2 {
    max-width: 680px;
    margin-bottom: 18px;
    font-size: clamp(2.15rem, 4vw, 4rem);
    line-height: 1.02;
    font-weight: 850;
}

.section-heading > p:last-child {
    max-width: 640px;
    margin-bottom: 0;
    font-size: 1.08rem;
}

.section-heading-light h2,
.section-heading-light p {
    color: var(--white);
}

.section-heading-light > p:last-child {
    color: rgba(255,255,255,.68);
}

.section-heading-light .eyebrow {
    color: var(--accent);
}

/* ========== HEADER ========== */

.header {
    position: fixed;
    inset: 0 0 auto 0;
    z-index: 1000;
    height: var(--header-h);
    display: flex;
    align-items: center;
    transition: background-color .35s var(--ease), box-shadow .35s var(--ease), height .35s var(--ease), border-color .35s var(--ease);
    border-bottom: 1px solid transparent;
}

.header.scrolled {
    height: 72px;
    background: rgba(18,11,10,.84);
    border-bottom-color: rgba(255,255,255,.08);
    box-shadow: 0 14px 50px rgba(0,0,0,.22);
    backdrop-filter: blur(18px);
}

.nav {
    display: flex;
    align-items: center;
    gap: 28px;
}

.logo {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    min-width: max-content;
    color: var(--white);
}

.logo-mark {
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 13px;
    background: linear-gradient(135deg, rgba(255,255,255,.14), rgba(255,255,255,.04));
    box-shadow: inset 0 1px rgba(255,255,255,.12);
}

.logo-copy {
    display: grid;
    line-height: 1.05;
}

.logo-copy strong {
    font-size: 1rem;
    letter-spacing: -.02em;
}

.logo-copy small {
    margin-top: 4px;
    color: rgba(255,255,255,.52);
    font-size: .68rem;
    letter-spacing: .12em;
    text-transform: uppercase;
}

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

.nav-menu a {
    position: relative;
    color: rgba(255,255,255,.76);
    font-size: .92rem;
    font-weight: 650;
    transition: color .25s ease;
}

.nav-menu a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -9px;
    height: 2px;
    transform: scaleX(0);
    transform-origin: left;
    background: var(--primary-soft);
    transition: transform .25s var(--ease);
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--white);
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    transform: scaleX(1);
}

.nav-cta {
    display: inline-flex;
    min-height: 44px;
    align-items: center;
    justify-content: center;
    padding: 0 18px;
    border-radius: var(--radius-pill);
    background: var(--white);
    color: var(--ink);
    font-size: .9rem;
    font-weight: 800;
    box-shadow: 0 8px 30px rgba(0,0,0,.13);
    transition: transform .25s var(--ease), background .25s ease;
}

.nav-cta:hover {
    transform: translateY(-2px);
    background: #fff3ec;
}

.nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    place-items: center;
    gap: 5px;
    margin-left: auto;
    padding: 0;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 12px;
    background: rgba(255,255,255,.08);
    cursor: pointer;
}

.nav-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    border-radius: 10px;
    background: var(--white);
    transition: .25s var(--ease);
}

/* ========== HERO ========== */

.hero {
    min-height: 100svh;
    display: flex;
    align-items: center;
    overflow: clip;
    padding: 145px 0 90px;
    background: var(--dark);
}

.hero-background {
    position: absolute;
    inset: 0;
}

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(.86) contrast(1.04);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(13,8,7,.96) 0%, rgba(13,8,7,.84) 40%, rgba(13,8,7,.46) 72%, rgba(13,8,7,.72) 100%),
        linear-gradient(180deg, rgba(13,8,7,.3), rgba(13,8,7,.92));
}

.hero-glow {
    position: absolute;
    width: 460px;
    height: 460px;
    border-radius: 50%;
    filter: blur(80px);
    opacity: .28;
}

.hero-glow-one {
    top: 10%;
    right: 10%;
    background: var(--primary);
}

.hero-glow-two {
    bottom: -10%;
    left: 15%;
    background: var(--accent);
    opacity: .1;
}

.hero-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(380px, .92fr);
    gap: 70px;
    align-items: center;
}

.hero-content {
    max-width: 730px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 24px;
    padding: 8px 13px;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: var(--radius-pill);
    background: rgba(255,255,255,.08);
    color: rgba(255,255,255,.82);
    font-size: .82rem;
    font-weight: 650;
    backdrop-filter: blur(12px);
}

.pulse-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #50d890;
    box-shadow: 0 0 0 0 rgba(80,216,144,.55);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    70% { box-shadow: 0 0 0 9px rgba(80,216,144,0); }
    100% { box-shadow: 0 0 0 0 rgba(80,216,144,0); }
}

.hero .eyebrow {
    color: var(--accent);
}

.hero h1 {
    max-width: 760px;
    margin-bottom: 22px;
    color: var(--white);
    font-size: clamp(3.1rem, 6vw, 6.3rem);
    line-height: .94;
    font-weight: 900;
}

.hero h1 span {
    display: block;
    color: var(--primary-soft);
}

.hero-subtitle {
    max-width: 640px;
    margin-bottom: 30px;
    color: rgba(255,255,255,.72);
    font-size: clamp(1rem, 1.45vw, 1.22rem);
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 30px;
}

.btn {
    display: inline-flex;
    min-height: 54px;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 0 24px;
    border: 1px solid transparent;
    border-radius: var(--radius-pill);
    font-weight: 800;
    transition: transform .25s var(--ease), box-shadow .25s var(--ease), background-color .25s ease, border-color .25s ease;
}

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

.btn-primary {
    background: linear-gradient(135deg, var(--primary-soft), var(--primary-strong));
    color: var(--white);
    box-shadow: 0 14px 38px rgba(240,68,56,.28);
}

.btn-primary:hover {
    box-shadow: 0 18px 48px rgba(240,68,56,.38);
}

.btn-secondary {
    border-color: rgba(255,255,255,.22);
    background: rgba(255,255,255,.08);
    color: var(--white);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    border-color: rgba(255,255,255,.4);
    background: rgba(255,255,255,.14);
}

.btn-large {
    min-height: 58px;
    padding-inline: 28px;
}

.hero-proof {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 34px;
}

.hero-proof-avatars {
    display: flex;
}

.hero-proof-avatars img {
    width: 34px;
    height: 34px;
    object-fit: cover;
    margin-left: -8px;
    border: 2px solid var(--dark);
    border-radius: 50%;
}

.hero-proof-avatars img:first-child {
    margin-left: 0;
}

.hero-proof strong,
.hero-proof span {
    display: block;
}

.hero-proof strong {
    color: var(--white);
    font-size: .92rem;
}

.hero-proof span {
    color: rgba(255,255,255,.52);
    font-size: .78rem;
}

.hero-stats {
    display: flex;
    gap: 40px;
    padding-top: 26px;
    border-top: 1px solid rgba(255,255,255,.10);
}

.stat-number,
.stat-label {
    display: block;
}

.stat-number {
    margin-bottom: 3px;
    color: var(--white);
    font-size: 1.3rem;
    font-weight: 850;
}

.stat-label {
    color: rgba(255,255,255,.48);
    font-size: .78rem;
}

.hero-visual {
    position: relative;
    display: grid;
    place-items: center;
}

.hero-image-wrap {
    position: relative;
    width: min(460px, 100%);
    aspect-ratio: 1;
}

.hero-image-ring {
    position: absolute;
    inset: -18px;
    border: 1px solid rgba(255,255,255,.13);
    border-radius: 50%;
    animation: slowSpin 24s linear infinite;
}

.hero-image-ring::before,
.hero-image-ring::after {
    content: "";
    position: absolute;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--accent);
}

.hero-image-ring::before {
    top: 38px;
    right: 68px;
}

.hero-image-ring::after {
    bottom: 64px;
    left: 26px;
    background: var(--primary);
}

@keyframes slowSpin {
    to { transform: rotate(360deg); }
}

.hero-image-container {
    position: absolute;
    inset: 0;
    overflow: hidden;
    border: 8px solid rgba(255,255,255,.09);
    border-radius: 50%;
    box-shadow: 0 35px 90px rgba(0,0,0,.34);
}

.hero-main-image {
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s var(--ease);
}

.hero-image-wrap:hover .hero-main-image {
    transform: scale(1.06);
}

.floating-card {
    position: absolute;
    z-index: 5;
    display: flex;
    min-width: 210px;
    align-items: center;
    gap: 12px;
    padding: 13px 15px;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 16px;
    background: rgba(18,11,10,.72);
    box-shadow: 0 20px 50px rgba(0,0,0,.2);
    backdrop-filter: blur(14px);
}

.floating-card-top {
    top: 8%;
    right: -9%;
}

.floating-card-bottom {
    bottom: 7%;
    left: -11%;
}

.floating-icon {
    display: grid;
    width: 40px;
    height: 40px;
    place-items: center;
    border-radius: 12px;
    background: rgba(255,255,255,.08);
}

.floating-card strong,
.floating-card small {
    display: block;
}

.floating-card strong {
    color: var(--white);
    font-size: .84rem;
}

.floating-card small {
    margin-top: 2px;
    color: rgba(255,255,255,.48);
    font-size: .71rem;
}

.scroll-indicator {
    position: absolute;
    z-index: 3;
    left: 50%;
    bottom: 26px;
    width: 28px;
    height: 44px;
    transform: translateX(-50%);
    border: 1px solid rgba(255,255,255,.22);
    border-radius: var(--radius-pill);
}

.scroll-indicator span {
    position: absolute;
    top: 8px;
    left: 50%;
    width: 4px;
    height: 8px;
    transform: translateX(-50%);
    border-radius: 10px;
    background: rgba(255,255,255,.75);
    animation: mouseMove 1.7s infinite;
}

@keyframes mouseMove {
    0% { opacity: 0; transform: translate(-50%,0); }
    30% { opacity: 1; }
    100% { opacity: 0; transform: translate(-50%,15px); }
}

/* ========== TRUST STRIP ========== */

.trust-strip {
    padding: 18px 0;
    border-bottom: 1px solid var(--border);
    background: var(--surface);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.trust-grid div {
    padding: 7px 18px;
    border-right: 1px solid var(--border);
    color: var(--muted);
    text-align: center;
    font-size: .85rem;
    font-weight: 650;
}

.trust-grid div:last-child {
    border-right: 0;
}

.trust-grid span {
    margin-right: 7px;
    color: var(--primary);
}

/* ========== SOBRE ========== */

.sobre-content {
    display: grid;
    grid-template-columns: 1.02fr .98fr;
    gap: 70px;
    align-items: center;
}

.sobre-image {
    position: relative;
    min-height: 570px;
    overflow: hidden;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.sobre-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 55%, rgba(18,11,10,.56));
    pointer-events: none;
}

.sobre-image img {
    height: 100%;
    min-height: 570px;
    object-fit: cover;
    transition: transform .8s var(--ease);
}

.sobre-image:hover img {
    transform: scale(1.035);
}

.image-badge {
    position: absolute;
    z-index: 3;
    left: 24px;
    bottom: 24px;
    padding: 16px 18px;
    border: 1px solid rgba(255,255,255,.14);
    border-radius: 16px;
    background: rgba(18,11,10,.64);
    backdrop-filter: blur(14px);
}

.image-badge strong,
.image-badge span {
    display: block;
}

.image-badge strong {
    color: var(--white);
}

.image-badge span {
    margin-top: 2px;
    color: rgba(255,255,255,.58);
    font-size: .78rem;
}

.sobre-lead {
    color: var(--ink);
    font-size: 1.22rem;
    line-height: 1.55;
}

.sobre-info > p {
    max-width: 600px;
}

.sobre-features {
    display: grid;
    gap: 14px;
    margin: 30px 0 28px;
}

.feature {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 16px;
    padding: 18px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    background: rgba(255,255,255,.65);
    transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s ease;
}

.feature:hover {
    transform: translateX(5px);
    border-color: rgba(240,68,56,.22);
    box-shadow: var(--shadow-sm);
}

.feature-icon {
    display: grid;
    width: 48px;
    height: 48px;
    place-items: center;
    border-radius: 14px;
    background: var(--surface-2);
    font-size: 1.45rem;
}

.feature h3 {
    margin: 0 0 4px;
    font-size: 1rem;
}

.feature p {
    margin: 0;
    font-size: .9rem;
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    font-weight: 800;
}

.text-link span {
    transition: transform .25s var(--ease);
}

.text-link:hover span {
    transform: translateX(4px);
}

/* ========== GALERIA ========== */

.galeria-grid {
    display: grid;
    grid-template-columns: 1.25fr 1fr 1fr;
    grid-auto-rows: 250px;
    gap: 16px;
}

.galeria-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius);
    background: #241513;
}

.galeria-item.grande {
    grid-row: span 2;
}

.galeria-item img {
    height: 100%;
    object-fit: cover;
    transition: transform .8s var(--ease), filter .8s var(--ease);
}

.galeria-item::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 55%, rgba(0,0,0,.78));
    transition: opacity .3s ease;
}

.galeria-item figcaption {
    position: absolute;
    z-index: 2;
    left: 20px;
    bottom: 16px;
    color: var(--white);
    font-size: .88rem;
    font-weight: 750;
}

.galeria-item:hover img {
    transform: scale(1.055);
    filter: saturate(1.08);
}

/* ========== CARDÁPIO ========== */

.servicos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.servico-card {
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: rgba(255,255,255,.86);
    box-shadow: 0 10px 34px rgba(58,35,30,.05);
    transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s ease;
}

.servico-card:hover {
    transform: translateY(-8px);
    border-color: rgba(240,68,56,.18);
    box-shadow: var(--shadow-md);
}

.servico-image {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.servico-image::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 35%;
    background: linear-gradient(180deg, transparent, rgba(20,10,8,.35));
}

.servico-image img {
    height: 100%;
    object-fit: cover;
    transition: transform .65s var(--ease);
}

.servico-card:hover .servico-image img {
    transform: scale(1.055);
}

.menu-tag {
    position: absolute;
    z-index: 2;
    top: 16px;
    left: 16px;
    padding: 7px 10px;
    border-radius: var(--radius-pill);
    background: rgba(18,11,10,.80);
    color: var(--white);
    font-size: .72rem;
    font-weight: 800;
    backdrop-filter: blur(10px);
}

.servico-content {
    padding: 22px;
}

.card-topline,
.card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.card-topline {
    margin-bottom: 9px;
}

.card-topline h3 {
    margin: 0;
    font-size: 1.2rem;
}

.card-topline > span {
    min-width: max-content;
    color: var(--accent-strong);
    font-size: .78rem;
    font-weight: 850;
}

.servico-content > p {
    min-height: 72px;
    margin-bottom: 18px;
    font-size: .91rem;
}

.preco {
    color: var(--ink);
    font-size: .9rem;
    font-weight: 850;
}

.mini-cta {
    color: var(--primary);
    font-size: .82rem;
    font-weight: 850;
}

/* ========== DESTAQUES ========== */

.destaques-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.destaque-card {
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--white);
    transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}

.destaque-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}

.destaque-image {
    height: 230px;
    overflow: hidden;
}

.destaque-image img {
    height: 100%;
    object-fit: cover;
    transition: transform .6s var(--ease);
}

.destaque-card:hover .destaque-image img {
    transform: scale(1.05);
}

.destaque-content {
    padding: 24px;
}

.destaque-badge {
    display: inline-flex;
    margin-bottom: 12px;
    color: var(--primary);
    font-size: .72rem;
    font-weight: 850;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.destaque-content h3 {
    margin-bottom: 8px;
    font-size: 1.35rem;
}

.destaque-content p {
    margin: 0;
    font-size: .92rem;
}

/* ========== BENEFÍCIOS ========== */

.beneficios-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.beneficio-card {
    padding: 26px;
    border: 1px solid rgba(255,255,255,.15);
    border-radius: var(--radius);
    background: rgba(255,255,255,.08);
    box-shadow: inset 0 1px rgba(255,255,255,.08);
    backdrop-filter: blur(12px);
    transition: transform .3s var(--ease), background .3s ease;
}

.beneficio-card:hover {
    transform: translateY(-5px);
    background: rgba(255,255,255,.13);
}

.beneficio-icon {
    display: grid;
    width: 48px;
    height: 48px;
    place-items: center;
    margin-bottom: 18px;
    border-radius: 15px;
    background: rgba(255,255,255,.12);
    font-size: 1.4rem;
}

.beneficio-card h3 {
    margin-bottom: 8px;
    color: var(--white);
    font-size: 1.1rem;
}

.beneficio-card p {
    margin: 0;
    color: rgba(255,255,255,.68);
    font-size: .9rem;
}

/* ========== DEPOIMENTOS ========== */

.depoimentos-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.depoimento-card {
    position: relative;
    display: flex;
    min-height: 310px;
    flex-direction: column;
    padding: 24px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: 0 10px 35px rgba(52,32,28,.05);
    transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}

.depoimento-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}

.quote-mark {
    position: absolute;
    top: 12px;
    right: 19px;
    color: rgba(240,68,56,.12);
    font-family: Georgia, serif;
    font-size: 4rem;
    line-height: 1;
}

.depoimento-stars {
    margin-bottom: 16px;
    color: var(--accent-strong);
    letter-spacing: 2px;
    font-size: .85rem;
}

.depoimento-card > p {
    margin-bottom: 26px;
    color: var(--text);
    font-size: .94rem;
}

.depoimento-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: auto;
}

.avatar-image {
    width: 46px;
    height: 46px;
    overflow: hidden;
    border-radius: 50%;
}

.avatar-image img {
    height: 100%;
    object-fit: cover;
}

.depoimento-info h4 {
    margin: 0;
    font-size: .9rem;
}

.depoimento-info span {
    color: var(--muted);
    font-size: .75rem;
}

/* ========== CTA ========== */

.cta-section {
    padding: 72px 0;
}

.cta-box {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 40px;
    align-items: center;
    padding: 48px;
    border: 1px solid rgba(255,255,255,.11);
    border-radius: var(--radius-lg);
    background:
        radial-gradient(circle at 85% 20%, rgba(240,68,56,.24), transparent 26%),
        rgba(255,255,255,.045);
}

.cta-box h2 {
    max-width: 700px;
    margin-bottom: 12px;
    color: var(--white);
    font-size: clamp(2rem, 4vw, 3.7rem);
    line-height: 1.05;
}

.cta-box > div > p:last-child {
    max-width: 650px;
    margin-bottom: 0;
    color: rgba(255,255,255,.62);
}

/* ========== FAQ ========== */

.faq-list {
    max-width: 850px;
}

.faq-item {
    border-bottom: 1px solid var(--border);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 24px 0;
    border: 0;
    background: transparent;
    color: var(--ink);
    text-align: left;
    font-weight: 750;
    cursor: pointer;
}

.faq-icon {
    display: grid;
    width: 34px;
    height: 34px;
    flex: 0 0 34px;
    place-items: center;
    border: 1px solid var(--border);
    border-radius: 50%;
    transition: transform .3s var(--ease), background .3s ease, color .3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
    background: var(--primary);
    color: var(--white);
}

.faq-answer {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows .38s var(--ease);
}

.faq-answer > p {
    min-height: 0;
    overflow: hidden;
    margin: 0;
}

.faq-item.active .faq-answer {
    grid-template-rows: 1fr;
}

.faq-item.active .faq-answer > p {
    padding-bottom: 24px;
}

/* ========== CONTATO ========== */

.contato-content {
    display: grid;
    grid-template-columns: .95fr 1.05fr;
    gap: 24px;
}

.contato-card,
.mapa-placeholder {
    min-height: 460px;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    background: var(--white);
    box-shadow: var(--shadow-sm);
}

.contato-card {
    display: grid;
    align-content: center;
    gap: 0;
    padding: 20px 34px;
}

.info-item {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 16px;
    padding: 22px 0;
    border-bottom: 1px solid var(--border);
}

.info-item:last-child {
    border-bottom: 0;
}

.info-icon {
    display: grid;
    width: 46px;
    height: 46px;
    place-items: center;
    border-radius: 14px;
    background: var(--surface-2);
}

.info-label {
    display: block;
    margin-bottom: 3px;
    color: var(--muted);
    font-size: .73rem;
    font-weight: 750;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.info-item h4,
.info-item p {
    margin: 0;
}

.info-item h4 {
    font-size: 1rem;
}

.info-item p {
    margin-top: 3px;
    font-size: .84rem;
}

.info-item .text-link {
    margin-top: 5px;
    font-size: .8rem;
}

.mapa-placeholder {
    position: relative;
    overflow: hidden;
    padding: 0;
    cursor: pointer;
}

.map-grid {
    position: absolute;
    inset: 0;
    opacity: .55;
    background:
        linear-gradient(90deg, transparent 49%, rgba(70,56,52,.08) 50%, transparent 51%),
        linear-gradient(transparent 49%, rgba(70,56,52,.08) 50%, transparent 51%);
    background-size: 64px 64px;
}

.map-grid::before,
.map-grid::after {
    content: "";
    position: absolute;
    inset: -20%;
    border: 20px solid rgba(240,68,56,.12);
    border-radius: 48%;
    transform: rotate(25deg);
}

.map-grid::after {
    transform: rotate(-35deg) scale(.76);
    border-color: rgba(51,112,185,.09);
}

.mapa-content {
    position: relative;
    z-index: 2;
    display: grid;
    min-height: 460px;
    place-items: center;
    align-content: center;
    padding: 30px;
}

.mapa-pin {
    display: grid;
    width: 66px;
    height: 66px;
    place-items: center;
    margin-bottom: 14px;
    border-radius: 20px;
    background: var(--white);
    box-shadow: var(--shadow-md);
    font-size: 2rem;
}

.mapa-content span {
    color: var(--muted);
    font-size: .72rem;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.mapa-content strong {
    margin-top: 5px;
    color: var(--ink);
    font-size: 1.4rem;
}

.mapa-content small {
    margin-top: 9px;
    color: var(--primary);
    font-weight: 750;
}

/* ========== WHATSAPP ========== */

.whatsapp-float {
    position: fixed;
    z-index: 900;
    right: 22px;
    bottom: 22px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 54px;
    padding: 0 18px 0 8px;
    border-radius: var(--radius-pill);
    background: #1fca65;
    color: var(--white);
    box-shadow: 0 18px 45px rgba(31,202,101,.34);
    font-weight: 800;
    transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}

.whatsapp-float:hover {
    transform: translateY(-4px);
    box-shadow: 0 22px 55px rgba(31,202,101,.42);
}

.whatsapp-float-icon {
    display: grid;
    width: 40px;
    height: 40px;
    place-items: center;
    border-radius: 50%;
    background: rgba(255,255,255,.15);
    font-size: 1.25rem;
}

/* ========== FOOTER ========== */

.footer {
    padding: 78px 0 24px;
    background: #0e0908;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr repeat(3, .7fr);
    gap: 54px;
    padding-bottom: 50px;
}

.footer-brand p {
    max-width: 360px;
    margin: 18px 0 0;
    color: rgba(255,255,255,.48);
    font-size: .9rem;
}

.footer-column {
    display: grid;
    align-content: start;
    gap: 11px;
}

.footer-column h4 {
    margin-bottom: 7px;
    color: var(--white);
    font-size: .9rem;
}

.footer-column a {
    color: rgba(255,255,255,.48);
    font-size: .86rem;
    transition: color .2s ease;
}

.footer-column a:hover {
    color: var(--white);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,.08);
}

.footer-bottom p {
    margin: 0;
    color: rgba(255,255,255,.36);
    font-size: .78rem;
}

.privacidade {
    padding: 30px 0;
    background: #0b0706;
    border-top: 1px solid rgba(255,255,255,.05);
}

.privacidade h3 {
    margin-bottom: 8px;
    color: var(--white);
    font-size: .95rem;
}

.privacidade p {
    max-width: 980px;
    margin: 0;
    color: rgba(255,255,255,.35);
    font-size: .78rem;
}

.ai-agent-area {
    min-height: 0;
    padding: 0;
}

/* ========== REVEAL ========== */

.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .75s var(--ease), transform .75s var(--ease);
}

.reveal.in-view {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay {
    transition-delay: .12s;
}

/* ========== FOCUS ========== */

a:focus-visible,
button:focus-visible {
    outline: 3px solid rgba(246,196,83,.85);
    outline-offset: 4px;
}

/* ========== RESPONSIVO ========== */

@media (max-width: 1100px) {
    .nav-menu {
        gap: 18px;
    }

    .nav-menu a {
        font-size: .86rem;
    }

    .hero-grid {
        gap: 38px;
    }

    .servicos-grid,
    .destaques-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .footer-grid {
        grid-template-columns: 1.3fr repeat(3, .7fr);
        gap: 30px;
    }
}

@media (max-width: 900px) {
    :root {
        --header-h: 72px;
    }

    section {
        padding: 86px 0;
    }

    .nav-menu,
    .nav-cta {
        display: none;
    }

    .nav-toggle {
        display: grid;
    }

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

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

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

    .nav-menu.active {
        position: fixed;
        top: 72px;
        left: 20px;
        right: 20px;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 12px;
        border: 1px solid rgba(255,255,255,.1);
        border-radius: 20px;
        background: rgba(18,11,10,.97);
        box-shadow: 0 28px 60px rgba(0,0,0,.32);
        backdrop-filter: blur(18px);
    }

    .nav-menu.active li {
        width: 100%;
    }

    .nav-menu.active a {
        display: block;
        padding: 14px;
        border-radius: 12px;
    }

    .nav-menu.active a:hover {
        background: rgba(255,255,255,.06);
    }

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

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

    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-content,
    .hero-subtitle,
    .hero h1 {
        margin-inline: auto;
    }

    .hero-buttons,
    .hero-proof,
    .hero-stats {
        justify-content: center;
    }

    .hero-visual {
        margin-top: 20px;
    }

    .hero-image-wrap {
        width: min(410px, 85vw);
    }

    .floating-card-top {
        right: -3%;
    }

    .floating-card-bottom {
        left: -3%;
    }

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

    .trust-grid div:nth-child(2) {
        border-right: 0;
    }

    .sobre-content,
    .contato-content {
        grid-template-columns: 1fr;
    }

    .sobre-image,
    .sobre-image img {
        min-height: 470px;
    }

    .galeria-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 230px;
    }

    .galeria-item.grande {
        grid-column: span 2;
        grid-row: span 1;
    }

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

    .cta-box {
        grid-template-columns: 1fr;
    }

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

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

    section {
        padding: 72px 0;
    }

    .logo-copy small {
        display: none;
    }

    .hero {
        padding-top: 118px;
    }

    .hero h1 {
        font-size: clamp(2.7rem, 14vw, 4.1rem);
    }

    .hero-buttons {
        display: grid;
    }

    .hero-buttons .btn {
        width: 100%;
    }

    .hero-proof {
        flex-direction: column;
    }

    .hero-stats {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
    }

    .stat-number {
        font-size: 1.05rem;
    }

    .stat-label {
        font-size: .68rem;
    }

    .hero-image-wrap {
        width: min(330px, 82vw);
    }

    .floating-card {
        min-width: 170px;
        padding: 10px;
    }

    .floating-card strong {
        font-size: .74rem;
    }

    .floating-card small {
        font-size: .65rem;
    }

    .floating-card-top {
        top: 2%;
        right: -3%;
    }

    .floating-card-bottom {
        bottom: 2%;
        left: -3%;
    }

    .scroll-indicator {
        display: none;
    }

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

    .trust-grid div {
        border-right: 0;
        border-bottom: 1px solid var(--border);
    }

    .trust-grid div:last-child {
        border-bottom: 0;
    }

    .section-heading {
        margin-bottom: 38px;
    }

    .section-heading h2 {
        font-size: 2.25rem;
    }

    .sobre-image,
    .sobre-image img {
        min-height: 390px;
    }

    .galeria-grid,
    .servicos-grid,
    .destaques-grid,
    .beneficios-grid,
    .depoimentos-grid {
        grid-template-columns: 1fr;
    }

    .galeria-item.grande {
        grid-column: auto;
    }

    .servico-image {
        height: 225px;
    }

    .servico-content > p {
        min-height: auto;
    }

    .cta-box {
        padding: 30px 22px;
    }

    .contato-card {
        padding: 14px 22px;
    }

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

    .footer-bottom {
        flex-direction: column;
    }

    .whatsapp-float {
        right: 14px;
        bottom: 14px;
        width: 54px;
        padding: 7px;
    }

    .whatsapp-float-text {
        display: none;
    }

    .whatsapp-float-icon {
        width: 40px;
        height: 40px;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
        scroll-behavior: auto !important;
    }

    .reveal {
        opacity: 1;
        transform: none;
    }
}
