/* ============================================================
   ENVI — design tokens
   Marca: preto (#000000) + verde chá (#798C40), fundo creme.
   Tipografia: Quicksand (títulos) + Inter (corpo) — fallback livre
   até a Shadeerah Soft licenciada ser fornecida pelo cliente.
   ============================================================ */
:root {
    --ink: #1F1F1F;
    --black: #000000;
    --brand: #798C40;
    --brand-dark: #5C6A2F;
    --brand-light: #94A85C;
    --brand-tint: #E7EBDA;
    --brand-tint-2: #F2F4EA;
    --bg: #FBF8F2;
    --surface: #FFFFFF;
    --muted: #756F62;
    --border: #E7E1D3;

    --radius-sm: 10px;
    --radius: 16px;
    --radius-lg: 28px;
    --radius-pill: 999px;

    --shadow: 0 1px 2px rgba(30, 25, 15, .04), 0 10px 28px -10px rgba(30, 25, 15, .12);
    --shadow-lg: 0 4px 10px rgba(30, 25, 15, .05), 0 24px 56px -16px rgba(30, 25, 15, .18);

    --space-1: .25rem; --space-2: .5rem; --space-3: .75rem; --space-4: 1rem;
    --space-5: 1.25rem; --space-6: 1.5rem; --space-8: 2rem; --space-10: 2.5rem;
    --space-12: 3rem; --space-16: 4rem; --space-20: 5rem; --space-24: 6rem;

    --font-heading: 'Quicksand', 'Trebuchet MS', sans-serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

    --container: 1180px;
    --container-sm: 760px;
}

/* ============================================================
   Reset & base
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 90px; }
html { overflow-x: hidden; }
body {
    margin: 0;
    overflow-x: hidden;
    max-width: 100vw;
    font-family: var(--font-body);
    color: var(--ink);
    background: var(--bg);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--black);
    line-height: 1.2;
    margin: 0 0 var(--space-3);
}
h1 { font-size: clamp(2.1rem, 4vw, 3.4rem); }
h2 { font-size: clamp(1.65rem, 3vw, 2.35rem); }
h3 { font-size: 1.2rem; }
p { margin: 0 0 var(--space-3); }

.min-h-screen { min-height: 100vh; }
.flex { display: flex; }
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.items-start { align-items: flex-start; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.text-center { text-align: center; }
.mt-2 { margin-top: var(--space-2); }
.mt-3 { margin-top: var(--space-3); }
.mt-8 { margin-top: var(--space-8); }

/* ============================================================
   Layout
   ============================================================ */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 var(--space-6); }
.container-sm { width: 100%; max-width: var(--container-sm); margin: 0 auto; padding: 0 var(--space-6); }

.main { overflow-x: hidden; }

.section { padding: var(--space-20) 0; position: relative; }
.section--tint { background: var(--brand-tint-2); }
.section--dark { background: var(--black); color: rgba(255,255,255,.85); }
.section--dark h2, .section--dark h3 { color: #fff; }

.section__eyebrow {
    display: inline-flex; align-items: center; gap: var(--space-2);
    font-size: .75rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
    color: var(--brand-dark); margin-bottom: var(--space-3);
}
.section__eyebrow::before {
    content: ''; width: 22px; height: 2px; background: var(--brand); border-radius: 2px;
}
.section__header { max-width: 720px; margin: 0 0 var(--space-10); }
.section__header.text-center { margin-left: auto; margin-right: auto; }
.section__subtitle { color: var(--muted); font-size: 1.05rem; }

.grid { display: grid; gap: var(--space-6); }
.grid-cols-2 { grid-template-columns: repeat(2, 1fr); }
.grid-cols-3 { grid-template-columns: repeat(3, 1fr); }
.grid-cols-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 900px) {
    .grid-cols-3, .grid-cols-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 620px) {
    .grid-cols-2, .grid-cols-3, .grid-cols-4 { grid-template-columns: 1fr; }
}

/* ============================================================
   Componentes
   ============================================================ */
.card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: var(--space-6);
    box-shadow: var(--shadow);
}

.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: var(--space-2);
    font-family: var(--font-heading);
    font-weight: 700;
    padding: .8rem 1.6rem;
    border-radius: var(--radius-pill);
    border: 2px solid transparent;
    cursor: pointer;
    transition: transform .15s ease, filter .15s ease, background .15s ease, color .15s ease;
    white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--brand); color: #fff; }
.btn-primary:hover { filter: brightness(.94); }
.btn-secondary { background: transparent; border-color: var(--black); color: var(--black); }
.btn-secondary:hover { background: var(--black); color: #fff; }
.btn-lg { padding: 1rem 2rem; font-size: 1.05rem; }
.btn-sm { padding: .55rem 1.15rem; font-size: .875rem; }
.btn-on-dark { background: #fff; color: var(--black); }

.badge {
    display: inline-flex; align-items: center;
    background: var(--brand-tint); color: var(--brand-dark);
    font-size: .78rem; font-weight: 700; letter-spacing: .03em;
    padding: .35rem .9rem; border-radius: var(--radius-pill);
    margin-bottom: var(--space-4);
}

.leaf-icon { color: var(--brand); }

/* ============================================================
   Header
   ============================================================ */
.header {
    position: sticky; top: 0; z-index: 100;
    background: rgba(251, 248, 242, .9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
}
.header__container { display: flex; align-items: center; justify-content: space-between; padding: var(--space-4) 0; gap: var(--space-6); }
.header__logo { display: flex; align-items: center; gap: var(--space-2); flex-shrink: 0; margin-left: 4px; }
.header__logo img { height: 38px; width: auto; }
.header__logo-text { font-family: var(--font-heading); font-weight: 700; font-size: 1.4rem; color: var(--black); }
.header__nav { display: flex; align-items: center; gap: var(--space-6); }
.header__nav-link { font-weight: 600; font-size: .95rem; color: var(--ink); position: relative; padding: .25rem 0; }
.header__nav-link:hover, .header__nav-link.active { color: var(--brand-dark); }
.header__actions { display: flex; align-items: center; gap: var(--space-4); }
.header__mobile-toggle { display: none; background: none; border: none; cursor: pointer; color: var(--black); }

@media (max-width: 860px) {
    .header { backdrop-filter: none; }
    .header__nav {
        position: fixed; inset: 72px 0 0 0; z-index: 150;
        background: #FBF8F2; opacity: 1; backdrop-filter: none;
        flex-direction: column; padding: var(--space-8) var(--space-6); gap: var(--space-5);
        box-shadow: 0 12px 24px -8px rgba(30,25,15,.15);
        transform: translateX(100%); transition: transform .25s ease;
    }
    .header__nav.is-open { transform: translateX(0); }
    .header__nav-link { font-size: 1.1rem; }
    .header__mobile-toggle { display: block; }
}

/* ============================================================
   Hero
   ============================================================ */
.hero { padding: var(--space-16) 0 var(--space-20); position: relative; overflow: hidden; }
.hero::before {
    content: ''; position: absolute; top: -120px; right: -120px; width: 420px; height: 420px;
    background: radial-gradient(circle, var(--brand-tint) 0%, transparent 70%);
    border-radius: 50%; z-index: 0;
}
.hero__grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.1fr .9fr; gap: var(--space-12); align-items: center; }
@media (max-width: 900px) { .hero__grid { grid-template-columns: 1fr; } }
.hero__subtitle { font-size: 1.15rem; color: var(--muted); max-width: 540px; }
.hero__actions { display: flex; gap: var(--space-4); margin-top: var(--space-6); flex-wrap: wrap; }
.hero__media { position: relative; }
.hero__media img { border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); width: 100%; aspect-ratio: 4/5; object-fit: cover; }
.hero__media[data-hero-slides] { aspect-ratio: 4/5; }
.hero__media[data-hero-slides] img {
    position: absolute; inset: 0; opacity: 0; transition: opacity 1s ease;
}
.hero__media[data-hero-slides] img.is-active { opacity: 1; }
.hero__media::after {
    content: ''; position: absolute; bottom: -18px; left: -18px; width: 100px; height: 100px;
    background: var(--brand); border-radius: var(--radius-lg); z-index: -1;
}

/* ============================================================
   Diferenciais
   ============================================================ */
.diferenciais-card { text-align: left; height: 100%; }
.diferenciais-card__icon {
    width: 52px; height: 52px; border-radius: var(--radius-sm);
    background: var(--brand-tint); color: var(--brand-dark);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.3rem; margin-bottom: var(--space-4);
}

/* ============================================================
   Sobre
   ============================================================ */
.sobre__grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: var(--space-12); align-items: center; }
@media (max-width: 900px) { .sobre__grid { grid-template-columns: 1fr; } }
.sobre__media img { border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); width: 100%; aspect-ratio: 1/1; object-fit: cover; }
.sobre__body { color: var(--muted); }
.sobre__cities { display: flex; flex-wrap: wrap; gap: var(--space-2); margin-top: var(--space-5); }
.sobre__cities span {
    font-size: .82rem; font-weight: 600; color: var(--brand-dark);
    background: var(--brand-tint); padding: .35rem .85rem; border-radius: var(--radius-pill);
}

.sobre__facts {
    background: var(--brand-tint-2);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: var(--space-8);
    height: 100%;
    display: flex; flex-direction: column; justify-content: center;
}
.sobre__facts-icon {
    width: 52px; height: 52px; border-radius: 50%;
    background: var(--brand); color: #fff;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.4rem; margin-bottom: var(--space-6);
}
.sobre__facts-icon img { width: 55%; height: 55%; object-fit: contain; filter: brightness(0) invert(1); }
.sobre__facts-list { display: flex; flex-direction: column; gap: var(--space-5); }
.sobre__facts-list li { display: flex; flex-direction: column; gap: 2px; }
.sobre__facts-list li:not(:last-child) { padding-bottom: var(--space-5); border-bottom: 1px solid var(--border); }
.sobre__facts-list strong { font-family: var(--font-heading); font-size: 1.15rem; color: var(--black); }
.sobre__facts-list span { color: var(--muted); font-size: .9rem; }

/* ============================================================
   Serviços
   ============================================================ */
.servico-card { display: flex; flex-direction: column; height: 100%; }
.servico-card__icon { color: var(--brand); font-size: 1.8rem; margin-bottom: var(--space-4); }
.servico-card__body { color: var(--muted); flex: 1; }

/* Showcase de serviço único (quando só há 1 item cadastrado) */
.servico-spotlight {
    max-width: var(--container-sm);
    margin: 0 auto;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    padding: var(--space-12) var(--space-10);
}
.servico-spotlight__cover {
    width: 100%; max-height: 320px; object-fit: cover;
    border-radius: var(--radius); margin-bottom: var(--space-8);
}
.servico-spotlight__header { text-align: center; margin-bottom: var(--space-8); }
.servico-spotlight__icon {
    width: 60px; height: 60px; margin: 0 auto var(--space-4);
    border-radius: 50%; background: var(--brand-tint); color: var(--brand-dark);
    display: flex; align-items: center; justify-content: center; font-size: 1.6rem;
}
.servico-spotlight__icon img { width: 55%; height: 55%; object-fit: contain; }
.servico-spotlight__title { font-size: 1.5rem; margin-bottom: 0; }

.servico-spotlight__body { color: var(--muted); }
.servico-spotlight__body p { margin-bottom: var(--space-4); }
.servico-spotlight__body strong { color: var(--black); }
.servico-spotlight__body ul {
    list-style: none; margin: 0 0 var(--space-6); padding: 0;
    display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-3);
}
.servico-spotlight__body ul li {
    background: var(--brand); color: #fff;
    font-family: var(--font-heading); font-weight: 700; font-size: 1.02rem; line-height: 1.3;
    padding: .8rem 1.2rem; border-radius: var(--radius-pill);
    display: flex; align-items: center; justify-content: center; text-align: center;
    min-height: 108px;
}
@media (max-width: 700px) {
    .servico-spotlight__body ul { grid-template-columns: 1fr; }
    .servico-spotlight__body ul li { min-height: 0; }
}

.servico-spotlight__actions {
    display: flex; gap: var(--space-4); justify-content: center; flex-wrap: wrap;
    margin-top: var(--space-8); padding-top: var(--space-8); border-top: 1px solid var(--border);
}

/* ============================================================
   Steps ("Como funciona")
   ============================================================ */
.steps { counter-reset: step; }
.step {
    position: relative;
    padding-left: 64px;
    padding-bottom: var(--space-8);
    border-left: 2px solid var(--border);
}
.step:last-child { border-left-color: transparent; padding-bottom: 0; }
.step::before {
    counter-increment: step;
    content: counter(step, decimal-leading-zero);
    position: absolute; left: -25px; top: 0;
    width: 50px; height: 50px; border-radius: 50%;
    background: var(--brand); color: #fff;
    font-family: var(--font-heading); font-weight: 700; font-size: .95rem;
    display: flex; align-items: center; justify-content: center;
}
.step__title { margin-bottom: var(--space-1); }
.step__desc { color: var(--muted); margin: 0; }

@media (max-width: 620px) {
    .step { padding-left: 52px; }
    .step::before { left: -16px; width: 40px; height: 40px; font-size: .78rem; }
}

/* ============================================================
   Equipe
   ============================================================ */
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-6); }
@media (max-width: 900px) { .team-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .team-grid { grid-template-columns: 1fr; } }
.team-card { text-align: center; }
.team-card__photo { width: 120px; height: 120px; border-radius: 50%; object-fit: cover; margin: 0 auto var(--space-4); border: 4px solid var(--brand-tint); }
.team-card__role { color: var(--brand-dark); font-weight: 600; font-size: .9rem; margin-bottom: var(--space-2); }
.team-card__social { display: flex; justify-content: center; gap: var(--space-3); margin-top: var(--space-3); }
.team-card__social a { color: var(--muted); font-size: 1.15rem; }
.team-card__social a:hover { color: var(--brand-dark); }

/* Spotlight: quando só há 1 pessoa cadastrada */
.team-spotlight { display: grid; grid-template-columns: .55fr 1fr; gap: var(--space-10); align-items: center; }
@media (max-width: 780px) { .team-spotlight { grid-template-columns: 1fr; text-align: center; } }
.team-spotlight__photo { width: 100%; aspect-ratio: 1/1; object-fit: cover; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }
.team-spotlight__role { color: var(--brand-dark); font-weight: 700; margin-bottom: var(--space-4); }
.team-spotlight__desc { color: var(--muted); }

/* ============================================================
   Depoimentos
   ============================================================ */
.testimonial-card { text-align: left; }
.testimonial-card__quote { font-size: 1.05rem; font-style: italic; }
.testimonial-card__author { display: flex; align-items: center; gap: var(--space-3); margin-top: var(--space-4); }
.testimonial-card__author img { width: 46px; height: 46px; border-radius: 50%; object-fit: cover; }
.testimonial-card__company { font-size: .82rem; color: var(--muted); }

/* ============================================================
   Métricas
   ============================================================ */
.metric { text-align: center; }
.metric__number { font-family: var(--font-heading); font-weight: 700; font-size: clamp(2.2rem, 4vw, 3rem); color: var(--brand-dark); line-height: 1; }
.metric__desc { color: var(--muted); margin-top: var(--space-2); }

/* ============================================================
   Metodologia ("Como faremos")
   ============================================================ */
.metodologia { display: grid; grid-template-columns: .9fr 1fr; gap: var(--space-10); align-items: center; }
.metodologia__lead { text-align: center; }
.metodologia__number {
    font-family: var(--font-heading); font-weight: 800; line-height: .85;
    font-size: clamp(6rem, 12vw, 10rem); color: var(--brand-dark);
    transform: scale(.6); opacity: 0;
    transition: transform .7s cubic-bezier(.34,1.56,.64,1), opacity .6s ease;
}
.metodologia__lead.in-view .metodologia__number { transform: scale(1); opacity: 1; }
.metodologia__lead-text {
    color: var(--muted); font-size: 1.05rem; max-width: 320px; margin: var(--space-2) auto 0;
    opacity: 0; transform: translateY(10px);
    transition: opacity .6s ease .35s, transform .6s ease .35s;
}
.metodologia__lead.in-view .metodologia__lead-text { opacity: 1; transform: translateY(0); }

.metodologia__flow { display: flex; flex-direction: column; align-items: flex-start; gap: var(--space-5); position: relative; padding-top: 46px; }
.metodologia__step {
    background: var(--surface); border: 1px solid var(--border); border-left: 4px solid var(--brand);
    border-radius: var(--radius); padding: var(--space-5) var(--space-6); color: var(--muted);
    box-shadow: var(--shadow-lg); width: 100%;
}
.metodologia__step-icon { display: block; color: var(--brand); font-size: 1.3rem; margin-bottom: var(--space-2); }

.metodologia__arrow { width: 32px; height: 56px; }
.metodologia__arrow--diagonal {
    position: absolute; left: -150px; top: 77px; width: 32px; height: 56px;
    transform: rotate(-90deg);
}
.metodologia__arrow--down { align-self: center; transform: rotate(3deg); }
.metodologia__arrow svg { width: 100%; height: 100%; overflow: visible; }
.metodologia__arrow path {
    fill: none; stroke: var(--brand); stroke-width: 3.5; stroke-linecap: round; stroke-linejoin: round;
    stroke-dasharray: 220; stroke-dashoffset: 220;
    transition: stroke-dashoffset 1s ease .15s;
}
.metodologia__arrow.in-view path { stroke-dashoffset: 0; }
.metodologia p{font-size:20px;}
@media (prefers-reduced-motion: no-preference) {
    .metodologia__arrow.in-view { animation: metodologia-float 2.6s ease-in-out 1.2s infinite; }
}
@keyframes metodologia-float {
    0%, 100% { transform: translateY(0) rotate(var(--tilt, 0deg)); }
    50% { transform: translateY(-6px) rotate(var(--tilt, 0deg)); }
}
.metodologia__arrow--diagonal { --tilt: -90deg; }
.metodologia__arrow--down { --tilt: 3deg; }

@media (max-width: 900px) {
    .metodologia { grid-template-columns: 1fr; gap: var(--space-6); }
    .metodologia__flow { align-items: center; padding-top: 0; }
    .metodologia__arrow--diagonal {
        position: static; margin: 0 auto;
        transform: rotate(3deg); --tilt: 3deg;
    }
}
@media (prefers-reduced-motion: reduce) {
    .metodologia__number, .metodologia__lead-text, .metodologia__arrow path {
        transition: none; transform: none; opacity: 1; stroke-dashoffset: 0;
    }
}

/* ============================================================
   FAQ
   ============================================================ */
.faq-list { display: flex; flex-direction: column; gap: var(--space-3); }
.faq-item { border: 1px solid var(--border); border-radius: var(--radius); background: var(--surface); padding: var(--space-5) var(--space-6); }
.faq-item summary {
    cursor: pointer; list-style: none; font-family: var(--font-heading); font-weight: 700;
    display: flex; justify-content: space-between; align-items: center; gap: var(--space-4);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item__icon { flex-shrink: 0; color: var(--brand); transition: transform .2s ease; }
.faq-item[open] .faq-item__icon { transform: rotate(45deg); }
.faq-item__answer { color: var(--muted); margin-top: var(--space-3); }

/* ============================================================
   Contato
   ============================================================ */
.contato__grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: var(--space-12); align-items: start; }
@media (max-width: 900px) { .contato__grid { grid-template-columns: 1fr; } }
.contato__item { display: flex; align-items: flex-start; gap: var(--space-3); margin-bottom: var(--space-4); }
.contato__item i { color: var(--brand); font-size: 1.2rem; margin-top: 3px; flex-shrink: 0; }

.contato-card {
    background: var(--brand-tint-2);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: var(--space-8);
}
.contato-card__methods { display: flex; flex-direction: column; gap: var(--space-4); margin-bottom: var(--space-6); }
.contato-card__row { display: flex; align-items: center; gap: var(--space-3); }
.contato-card__icon {
    width: 40px; height: 40px; flex-shrink: 0; border-radius: 50%;
    background: var(--brand); color: #fff;
    display: flex; align-items: center; justify-content: center; font-size: .95rem;
}
.contato-card__regions h4 { font-size: 1rem; margin-bottom: 0; }
.contato-card__shortcut { margin-top: var(--space-6); padding-top: var(--space-6); border-top: 1px solid var(--border); }
.contato-card__shortcut p { font-size: .875rem; color: var(--muted); margin-bottom: var(--space-3); }

.form-envi { display: flex; flex-direction: column; gap: var(--space-4); }
.form-envi label { font-weight: 600; font-size: .9rem; display: flex; flex-direction: column; gap: var(--space-2); }
.form-envi input, .form-envi select, .form-envi textarea {
    width: 100%; max-width: 100%; box-sizing: border-box;
    font-family: var(--font-body); font-size: 1rem;
    padding: .75rem .9rem; border: 1px solid var(--border); border-radius: var(--radius-sm);
    background: var(--surface); color: var(--ink);
}
.form-envi input:focus, .form-envi select:focus, .form-envi textarea:focus {
    outline: none; border-color: var(--brand); box-shadow: 0 0 0 3px rgba(121,140,64,.15);
}
.form-envi__success { background: var(--brand-tint); color: var(--brand-dark); padding: var(--space-4); border-radius: var(--radius-sm); font-weight: 600; }

/* ============================================================
   CTA final
   ============================================================ */
.cta-final {
    background: var(--black);
    border-radius: var(--radius-lg);
    padding: var(--space-16) var(--space-10);
    text-align: center;
    color: #fff;
    position: relative;
    overflow: hidden;
}
.cta-final::before {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(circle at 20% 20%, rgba(121,140,64,.35), transparent 55%);
}
.cta-final > * { position: relative; }
.cta-final h2 { color: #fff; }
.cta-final p { color: rgba(255,255,255,.75); max-width: 520px; margin-left: auto; margin-right: auto; }

/* ============================================================
   Footer
   ============================================================ */
.footer {
    background: var(--black);
    color: rgba(255,255,255,.65);
    padding: var(--space-16) 0 var(--space-6);
    border-top: 3px solid var(--brand);
}
.footer__content { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: var(--space-10); margin-bottom: var(--space-10); }
@media (max-width: 780px) { .footer__content { grid-template-columns: 1fr; gap: var(--space-8); } }
.footer__logo { height: 34px; margin-bottom: var(--space-3); }
.footer h4 {
    color: #fff; font-size: .82rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
    margin-bottom: var(--space-5); padding-bottom: var(--space-3);
    border-bottom: 1px solid rgba(255,255,255,.12);
}
.footer__links li { margin-bottom: var(--space-3); }
.footer__links a { transition: color .15s ease; }
.footer__links a:hover { color: var(--brand-light); }
.footer__links--icons a { display: inline-flex; align-items: flex-start; gap: var(--space-2); }
.footer__links--icons a i { color: var(--brand-light); margin-top: .2em; flex-shrink: 0; }
.footer__social { display: flex; gap: var(--space-3); margin-top: var(--space-5); }
.footer__social a {
    width: 38px; height: 38px; border-radius: 50%;
    background: rgba(255,255,255,.08);
    display: flex; align-items: center; justify-content: center;
    transition: background .15s ease, transform .15s ease;
}
.footer__social a:hover { background: var(--brand); transform: translateY(-2px); }
.footer__bottom { border-top: 1px solid rgba(255,255,255,.12); padding-top: var(--space-6); display: flex; justify-content: space-between; flex-wrap: wrap; gap: var(--space-3); font-size: .82rem; }

/* ============================================================
   WhatsApp flutuante
   ============================================================ */
.wa-float {
    position: fixed; bottom: 24px; right: 24px; z-index: 200;
    width: 58px; height: 58px; border-radius: 50%;
    background: #25D366; color: #fff;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.6rem; box-shadow: var(--shadow-lg);
    animation: wa-pulse 2.4s ease-in-out infinite;
}
@keyframes wa-pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(37,211,102,.4), var(--shadow-lg); }
    50% { box-shadow: 0 0 0 10px rgba(37,211,102,0), var(--shadow-lg); }
}

/* O badge do reCAPTCHA v3 fica no mesmo canto do WhatsApp flutuante e sobrepõe.
   Escondido aqui — o aviso obrigatório do Google é exibido por extenso perto
   dos formulários (.recaptcha-notice), conforme os termos de uso exigem. */
.grecaptcha-badge { visibility: hidden; }

/* ============================================================
   Movimento — entrada ao rolar a página
   Só ativa com JS (html.js): sem JS, tudo fica visível normalmente,
   nunca escondido pra sempre.
   ============================================================ */
html.js .section__header,
html.js .card,
html.js .diferenciais-card,
html.js .servico-spotlight,
html.js .team-spotlight,
html.js .team-card,
html.js .step,
html.js .metric,
html.js .metodologia__step,
html.js .testimonial-card,
html.js .contato-card,
html.js .cta-final,
html.js .hero__media,
html.js .sobre__media,
html.js .sobre__facts {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .7s ease, transform .7s ease;
}
html.js .hero__grid > div:first-child {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity .7s ease .1s, transform .7s ease .1s;
}
html.js .in-view {
    opacity: 1 !important;
    transform: translateY(0) !important;
}
/* As setas usam .in-view só pro traço se desenhar (stroke-dashoffset), não pra
   translateY — a regra genérica acima zerava a rotação delas. */
html.js .metodologia__arrow--diagonal.in-view { transform: rotate(-90deg) !important; }
html.js .metodologia__arrow--down.in-view { transform: rotate(3deg) !important; }
@media (max-width: 900px) {
    html.js .metodologia__arrow--diagonal.in-view { transform: rotate(3deg) !important; }
}
@media (prefers-reduced-motion: reduce) {
    html.js .section__header, html.js .card, html.js .diferenciais-card,
    html.js .servico-spotlight, html.js .team-spotlight, html.js .team-card,
    html.js .step, html.js .metric, html.js .testimonial-card,
    html.js .contato-card, html.js .cta-final, html.js .hero__media,
    html.js .sobre__media, html.js .sobre__facts, html.js .hero__grid > div:first-child {
        opacity: 1; transform: none; transition: none;
    }
}

/* Cards ganham "elevação" ao passar o mouse — antes era só o .btn que reagia */
.card, .diferenciais-card, .team-card, .testimonial-card, .servico-card {
    transition: transform .2s ease, box-shadow .2s ease;
}
.card:hover, .diferenciais-card:hover, .team-card:hover, .testimonial-card:hover, .servico-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

/* Header ganha sombra ao rolar, pra sair do "flutuando sem peso" */
.header { transition: box-shadow .2s ease; }
.header.is-scrolled { box-shadow: 0 2px 12px rgba(30,25,15,.08); }

.recaptcha-notice {
    font-size: .72rem; color: var(--muted); margin-top: var(--space-3); line-height: 1.5;
}
.recaptcha-notice a { text-decoration: underline; }
