/* ============================================================
   STYLE — João Rezende Advocacia
   Dark dourado refinado · vanilla CSS
   ============================================================ */
@import url("./tokens.css");
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Playfair+Display:wght@500;600;700&display=swap");

/* ---------- RESET ---------- */
*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--ff-sans);
    font-size: var(--fs-base);
    line-height: var(--lh-normal);
    color: var(--c-text);
    background: var(--c-bg-1);
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    overflow-x: hidden;
}
img,video { display: block; max-width: 100%; height: auto; }
a { color: var(--c-gold); text-decoration: none; transition: color var(--t-fast); }
a:hover { color: var(--c-gold-light); }
button { font-family: inherit; cursor: pointer; border: 0; background: transparent; color: inherit; }
ul { list-style: none; }
blockquote {
    border-left: 3px solid var(--c-gold);
    padding-left: 24px;
    margin: 24px 0;
    font-style: italic;
    color: var(--c-gold-light);
}
:focus-visible { outline: 2px solid var(--c-gold); outline-offset: 4px; border-radius: 4px; }

/* ---------- LAYOUT BASE ---------- */
.container {
    max-width: var(--container-max);
    margin-inline: auto;
    padding-inline: var(--container-pad);
    width: 100%;
}
.section { padding: var(--s-20) 0; }
.section--lg { padding: var(--s-24) 0; }

.section-heading {
    text-align: center;
    max-width: 720px;
    margin: 0 auto var(--s-12);
}
.section-heading h2 {
    font-family: var(--ff-serif);
    font-size: var(--fs-3xl);
    font-weight: var(--fw-semibold);
    color: var(--c-cream);
    line-height: var(--lh-tight);
    margin-bottom: var(--s-4);
}
.section-heading p {
    color: var(--c-text-muted);
    font-size: var(--fs-md);
    line-height: var(--lh-normal);
}
.eyebrow {
    display: inline-block;
    font-size: var(--fs-xs);
    font-weight: var(--fw-semibold);
    color: var(--c-gold);
    letter-spacing: .18em;
    text-transform: uppercase;
    margin-bottom: var(--s-3);
    position: relative;
    padding-left: 36px;
}
.eyebrow::before {
    content: "";
    position: absolute;
    left: 0; top: 50%;
    width: 24px; height: 2px;
    background: var(--c-gold);
}
.section-heading .eyebrow {
    padding-left: 0;
}
.section-heading .eyebrow::before { display: none; }

/* ---------- BOTÕES ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    font-size: var(--fs-sm);
    font-weight: var(--fw-semibold);
    letter-spacing: .06em;
    text-transform: uppercase;
    border-radius: var(--r-md);
    transition: all var(--t-base);
    border: 1.5px solid transparent;
    cursor: pointer;
    text-decoration: none;
    white-space: nowrap;
}
.btn--lg { padding: 16px 36px; font-size: var(--fs-sm); }
.btn--primary {
    background: var(--g-gold);
    color: var(--c-bg-0);
}
.btn--primary:hover {
    background: var(--g-gold-dim);
    color: var(--c-bg-0);
    box-shadow: var(--shadow-gold);
    transform: translateY(-2px);
}
.btn--outline {
    background: transparent;
    color: var(--c-gold-light);
    border-color: var(--c-gold);
}
.btn--outline:hover {
    background: var(--c-gold-ghost);
    color: var(--c-gold-light);
    transform: translateY(-2px);
}
.btn--wa {
    background: #25D366;
    color: white;
}
.btn--wa:hover {
    background: #1DB954;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37,211,102,0.35);
}

/* ---------- HEADER ---------- */
.site-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    background: linear-gradient(to bottom, rgba(15,15,16,0.85) 0%, rgba(15,15,16,0.6) 100%);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid transparent;
    transition: all var(--t-base);
}
.site-header.is-scrolled {
    background: rgba(10,10,11,0.96);
    border-bottom-color: var(--c-bg-4);
    box-shadow: var(--shadow-md);
}
.site-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    height: var(--header-h);
}
.site-header__logo img {
    height: 50px;
    width: auto;
}

/* MENU */
.nav {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-left: auto;
}
.nav__list {
    display: flex;
    align-items: center;
    gap: 4px;
}
.nav__link {
    display: inline-block;
    padding: 8px 14px;
    font-size: 13px;
    font-weight: var(--fw-semibold);
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--c-text);
    border-bottom: 2px solid transparent;
    white-space: nowrap;             /* fix do menu quebrando */
    transition: all var(--t-fast);
}
.nav__link:hover,
.nav__link.is-active {
    color: var(--c-gold-light);
    border-bottom-color: var(--c-gold);
}
.nav__contact {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: var(--c-gold-ghost);
    color: var(--c-gold-light);
    border: 1px solid var(--c-gold);
    border-radius: var(--r-full);
    font-size: 13px;
    font-weight: var(--fw-semibold);
    white-space: nowrap;
    transition: all var(--t-fast);
}
.nav__contact:hover {
    background: var(--c-gold);
    color: var(--c-bg-0);
}
.nav__contact i { font-size: 12px; }

.nav__toggle {
    display: none;
    width: 44px; height: 44px;
    border-radius: 8px;
    background: var(--c-gold-ghost);
    color: var(--c-gold-light);
    font-size: 20px;
}

/* ---------- HERO ---------- */
.hero {
    position: relative;
    min-height: 100vh;
    background: var(--c-bg-1);
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: var(--header-h);
}
.hero::before {
    content: "";
    position: absolute; inset: 0;
    background-image: var(--hero-bg);
    background-size: cover;
    background-position: center;
    opacity: 0.4;
}
.hero::after {
    content: "";
    position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(15,15,16,0.95) 0%, rgba(15,15,16,0.5) 50%, rgba(15,15,16,0.85) 100%);
}
.hero .container { position: relative; z-index: 2; padding-block: var(--s-20); }
.hero__content { max-width: 780px; }
.hero__title {
    font-family: var(--ff-serif);
    font-size: var(--fs-4xl);
    font-weight: var(--fw-semibold);
    color: var(--c-cream);
    line-height: var(--lh-tight);
    margin-bottom: var(--s-5);
}
.hero__description {
    font-size: var(--fs-md);
    color: var(--c-text-muted);
    line-height: var(--lh-relaxed);
    margin-bottom: var(--s-8);
    max-width: 640px;
}
.hero__actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}
.hero__scroll {
    position: absolute;
    bottom: 30px; left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--c-gold);
    font-size: 12px;
    letter-spacing: .12em;
    text-transform: uppercase;
    animation: bounce 2.5s ease-in-out infinite;
}
@keyframes bounce { 0%,100% { transform: translate(-50%,0); } 50% { transform: translate(-50%,8px); } }

/* ---------- ABOUT (escritório) ---------- */
.about { padding: var(--s-24) 0; background: var(--c-bg-1); }
.about__grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: var(--s-16);
    align-items: center;
}
.about__image-wrap {
    position: relative;
    border-radius: var(--r-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}
.about__image-wrap img {
    width: 100%;
    aspect-ratio: 4/5;
    object-fit: cover;
    transition: transform var(--t-slow);
}
.about__image-wrap:hover img { transform: scale(1.04); }
.about__counter {
    position: absolute;
    bottom: 24px; left: 24px;
    background: var(--g-gold);
    padding: 20px 28px;
    border-radius: var(--r-md);
    color: var(--c-bg-0);
    box-shadow: var(--shadow-md);
}
.about__counter-number {
    font-family: var(--ff-serif);
    font-size: var(--fs-2xl);
    font-weight: var(--fw-bold);
    line-height: 1;
}
.about__counter-label {
    font-size: var(--fs-xs);
    font-weight: var(--fw-semibold);
    text-transform: uppercase;
    letter-spacing: .08em;
    margin-top: 4px;
}
.about__text h2 {
    font-family: var(--ff-serif);
    font-size: var(--fs-3xl);
    font-weight: var(--fw-semibold);
    color: var(--c-cream);
    line-height: var(--lh-tight);
    margin-bottom: var(--s-5);
}
.about__text p {
    color: var(--c-text-muted);
    line-height: var(--lh-relaxed);
    margin-bottom: var(--s-4);
}
.about__text strong { color: var(--c-gold-light); font-weight: var(--fw-semibold); }
.about__bullets {
    list-style: none;
    margin: var(--s-6) 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 12px;
}
.about__bullets li {
    position: relative;
    padding-left: 28px;
    color: var(--c-text);
    font-size: var(--fs-sm);
    line-height: 1.5;
}
.about__bullets li::before {
    content: "✓";
    position: absolute;
    left: 0; top: -2px;
    width: 20px; height: 20px;
    background: var(--c-gold);
    color: var(--c-bg-0);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 11px;
    font-weight: bold;
}

/* ---------- RESULTADOS (Nossos Números) ---------- */
.resultados {
    position: relative;
    padding: var(--s-20) 0;
    background: var(--c-bg-0);
    overflow: hidden;
}
.resultados::before {
    content: "";
    position: absolute; inset: 0;
    background-image: var(--resultados-bg);
    background-size: cover; background-position: center;
    opacity: 0.18;
}
.resultados::after {
    content: "";
    position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(5,5,5,0.92) 0%, rgba(5,5,5,0.78) 50%, rgba(5,5,5,0.92) 100%);
}
.resultados .container { position: relative; z-index: 2; }
.resultados .section-heading h2,
.resultados .section-heading p { color: var(--c-cream); }
.resultados__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: var(--s-6);
    margin-top: var(--s-12);
}
.resultado-card {
    text-align: center;
    padding: var(--s-8) var(--s-6);
    background: linear-gradient(180deg, rgba(184,146,91,0.06) 0%, rgba(184,146,91,0) 100%);
    border: 1px solid rgba(184,146,91,0.2);
    border-radius: var(--r-lg);
    backdrop-filter: blur(6px);
    transition: all var(--t-base);
}
.resultado-card:hover {
    transform: translateY(-6px);
    border-color: var(--c-gold);
    box-shadow: var(--shadow-gold);
}
.resultado-card__icon {
    width: 70px; height: 70px;
    margin: 0 auto var(--s-5);
    display: flex; align-items: center; justify-content: center;
    background: var(--c-gold-ghost);
    border-radius: 50%;
    font-size: 28px;
    color: var(--c-gold);
}
.resultado-card__numero {
    font-family: var(--ff-serif);
    font-size: 64px;
    font-weight: var(--fw-bold);
    color: var(--c-gold-light);
    line-height: 1;
    margin-bottom: var(--s-3);
    display: flex;
    align-items: baseline;
    justify-content: center;
}
.resultado-card__sufixo {
    font-size: 32px;
    color: var(--c-gold);
}
.resultado-card__rotulo {
    font-size: var(--fs-sm);
    color: var(--c-text);
    text-transform: uppercase;
    letter-spacing: .1em;
    font-weight: var(--fw-semibold);
}

/* ---------- ÁREAS DE ATUAÇÃO ---------- */
.areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--s-6);
}
.area-card {
    background: var(--c-bg-2);
    border: 1px solid var(--c-bg-4);
    border-radius: var(--r-lg);
    padding: var(--s-8);
    transition: all var(--t-base);
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}
.area-card::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--g-gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--t-base);
}
.area-card:hover {
    background: var(--c-bg-3);
    border-color: var(--c-gold);
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}
.area-card:hover::before { transform: scaleX(1); }
.area-card__icon {
    width: 64px; height: 64px;
    margin-bottom: var(--s-5);
    display: flex; align-items: center; justify-content: center;
    background: var(--c-gold-ghost);
    border-radius: var(--r-md);
}
.area-card__icon img { width: 32px; height: 32px; filter: brightness(0) saturate(100%) invert(72%) sepia(11%) saturate(984%) hue-rotate(355deg) brightness(95%) contrast(85%); }
.area-card__title {
    font-family: var(--ff-serif);
    font-size: var(--fs-lg);
    font-weight: var(--fw-semibold);
    color: var(--c-cream);
    margin-bottom: var(--s-3);
    line-height: var(--lh-snug);
}
.area-card__resumo {
    color: var(--c-text-muted);
    font-size: var(--fs-sm);
    line-height: var(--lh-normal);
    margin-bottom: var(--s-5);
    flex-grow: 1;
}
.area-card__link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--c-gold);
    font-size: var(--fs-sm);
    font-weight: var(--fw-semibold);
    text-transform: uppercase;
    letter-spacing: .08em;
    margin-top: auto;
}
.area-card__link i { transition: transform var(--t-fast); }
.area-card:hover .area-card__link { color: var(--c-gold-light); }
.area-card:hover .area-card__link i { transform: translateX(4px); }

/* ---------- AVALIAÇÕES (depoimentos refinados) ---------- */
.avaliacoes {
    position: relative;
    padding: var(--s-24) 0;
    background: var(--c-bg-2);
    overflow: hidden;
}
.avaliacoes::before {
    content: "";
    position: absolute; inset: 0;
    background-image: var(--avaliacoes-bg);
    background-size: cover; background-position: center;
    opacity: 0.06;
}
.avaliacoes::after {
    content: "";
    position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(23,24,26,0.95) 0%, rgba(23,24,26,0.85) 100%);
}
.avaliacoes .container { position: relative; z-index: 2; }
.avaliacoes__media {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-top: var(--s-5);
    padding: 12px 24px;
    background: var(--c-gold-ghost);
    border: 1px solid var(--c-gold);
    border-radius: var(--r-full);
}
.avaliacoes__estrelas { color: var(--c-gold-light); font-size: 18px; display: inline-flex; gap: 2px; }
.avaliacoes__nota {
    font-family: var(--ff-serif);
    font-size: var(--fs-xl);
    font-weight: var(--fw-bold);
    color: var(--c-gold-light);
}
.avaliacoes__total {
    font-size: var(--fs-sm);
    color: var(--c-text-muted);
}
.avaliacoes__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: var(--s-6);
    margin-top: var(--s-10);
}
.avaliacao {
    position: relative;
    background: var(--c-bg-1);
    border: 1px solid var(--c-bg-4);
    border-radius: var(--r-lg);
    padding: var(--s-8);
    transition: all var(--t-base);
}
.avaliacao:hover {
    border-color: var(--c-gold);
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}
.avaliacao__aspas {
    position: absolute;
    top: 16px; right: 24px;
    font-size: 48px;
    color: var(--c-gold);
    opacity: 0.15;
    line-height: 1;
}
.avaliacao__estrelas {
    color: var(--c-gold-light);
    font-size: 16px;
    margin-bottom: var(--s-4);
    display: flex;
    gap: 2px;
}
.avaliacao__estrelas i.fa-regular { color: var(--c-bg-4); }
.avaliacao__texto {
    color: var(--c-text);
    font-size: var(--fs-base);
    line-height: var(--lh-relaxed);
    margin-bottom: var(--s-6);
    font-style: italic;
}
.avaliacao__rodape {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-top: var(--s-5);
    border-top: 1px solid var(--c-bg-4);
}
.avaliacao__avatar {
    width: 56px; height: 56px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--c-gold);
    flex-shrink: 0;
}
.avaliacao__avatar--placeholder {
    background: var(--g-gold);
    color: var(--c-bg-0);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--ff-serif);
    font-size: 24px;
    font-weight: var(--fw-bold);
}
.avaliacao__nome {
    font-weight: var(--fw-semibold);
    color: var(--c-cream);
    font-size: var(--fs-md);
}
.avaliacao__cargo {
    color: var(--c-text-muted);
    font-size: var(--fs-xs);
    margin-top: 2px;
}
.avaliacao__area {
    color: var(--c-gold);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: .08em;
    margin-top: 6px;
    font-weight: var(--fw-semibold);
    display: flex;
    align-items: center;
    gap: 6px;
}

/* ---------- CTA (faixa intermediária) ---------- */
.cta {
    position: relative;
    padding: var(--s-20) 0;
    background: var(--c-bg-0);
    overflow: hidden;
}
.cta::before {
    content: "";
    position: absolute; inset: 0;
    background-image: var(--cta-bg);
    background-size: cover; background-position: center;
    opacity: 0.25;
}
.cta::after {
    content: "";
    position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(5,5,5,0.92) 0%, rgba(15,15,16,0.78) 100%);
}
.cta .container { position: relative; z-index: 2; }
.cta__content {
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
}
.cta__content h2 {
    font-family: var(--ff-serif);
    font-size: var(--fs-3xl);
    font-weight: var(--fw-semibold);
    color: var(--c-cream);
    line-height: var(--lh-tight);
    margin-bottom: var(--s-5);
}
.cta__content p {
    color: var(--c-text-muted);
    font-size: var(--fs-md);
    line-height: var(--lh-relaxed);
    margin-bottom: var(--s-8);
}
.cta__content .btn--wa, .cta__content .btn--outline { margin-top: 0; }
.cta__content > div { justify-content: center; }

/* ---------- FAQ ---------- */
.faq { padding: var(--s-24) 0; background: var(--c-bg-1); }
.faq__grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: var(--s-12);
    align-items: start;
}
.faq__grid img { border-radius: var(--r-xl); position: sticky; top: calc(var(--header-h) + 24px); }

.accordion__item {
    background: var(--c-bg-2);
    border: 1px solid var(--c-bg-4);
    border-radius: var(--r-md);
    margin-bottom: 12px;
    overflow: hidden;
    transition: border-color var(--t-fast);
}
.accordion__item.is-open { border-color: var(--c-gold); }
.accordion__btn {
    width: 100%;
    padding: 18px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    text-align: left;
    font-size: var(--fs-base);
    font-weight: var(--fw-semibold);
    color: var(--c-cream);
    cursor: pointer;
    transition: color var(--t-fast);
}
.accordion__btn:hover { color: var(--c-gold-light); }
.accordion__btn i { color: var(--c-gold); transition: transform var(--t-base); flex-shrink: 0; }
.accordion__item.is-open .accordion__btn i { transform: rotate(45deg); }
.accordion__body {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--t-base);
}
.accordion__body-inner {
    padding: 0 24px 24px;
    color: var(--c-text-muted);
    line-height: var(--lh-relaxed);
}
.accordion__body-inner p { margin-bottom: 12px; }
.accordion__body-inner p:last-child { margin-bottom: 0; }
.accordion__body-inner ul, .accordion__body-inner ol { margin-left: 24px; margin-bottom: 12px; }
.accordion__body-inner ul { list-style: disc; }
.accordion__body-inner ol { list-style: decimal; }
.accordion__body-inner strong { color: var(--c-gold-light); }

/* ---------- CONTATO ---------- */
.contact { padding: var(--s-20) 0 0; background: var(--c-bg-1); }
.contact__cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: var(--s-6);
    margin-top: var(--s-8);
}
.contact-card {
    text-align: center;
    padding: var(--s-10) var(--s-6);
    background: var(--c-bg-2);
    border: 1px solid var(--c-bg-4);
    border-radius: var(--r-lg);
    transition: all var(--t-base);
}
.contact-card:hover {
    border-color: var(--c-gold);
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}
.contact-card__icon {
    width: 80px; height: 80px;
    margin: 0 auto var(--s-5);
    display: flex; align-items: center; justify-content: center;
    background: var(--c-gold-ghost);
    border-radius: 50%;
    font-size: 32px;
    color: var(--c-gold);
}
.contact-card__title {
    font-family: var(--ff-serif);
    font-size: var(--fs-md);
    color: var(--c-cream);
    margin-bottom: var(--s-3);
    font-weight: var(--fw-semibold);
}
.contact-card__value {
    color: var(--c-text-muted);
    font-size: var(--fs-sm);
    line-height: var(--lh-normal);
}
.contact-card__value a { color: var(--c-gold-light); }
.contact-card__value a:hover { color: var(--c-gold); }

/* ---------- FORMULÁRIO ---------- */
.form { padding: var(--s-12) 0 var(--s-24); background: var(--c-bg-1); }
.form__grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: var(--s-12);
    background: var(--c-bg-2);
    border: 1px solid var(--c-bg-4);
    border-radius: var(--r-xl);
    overflow: hidden;
}
.form__side {
    padding: var(--s-10);
    background: linear-gradient(135deg, var(--c-bg-3) 0%, var(--c-bg-2) 100%);
    border-right: 1px solid var(--c-bg-4);
}
.form__side h3 {
    font-family: var(--ff-serif);
    font-size: var(--fs-xl);
    color: var(--c-cream);
    margin-bottom: var(--s-3);
}
.form__side p {
    color: var(--c-text-muted);
    font-size: var(--fs-sm);
    line-height: var(--lh-relaxed);
    margin-bottom: var(--s-6);
}
.form__side ul li {
    color: var(--c-text);
    font-size: var(--fs-sm);
    padding: 10px 0;
    border-bottom: 1px solid var(--c-bg-4);
    display: flex;
    align-items: center;
    gap: 12px;
}
.form__side ul li i { color: var(--c-gold); font-size: 14px; width: 18px; }
.form__side ul li:last-child { border-bottom: 0; }

#formContato { padding: var(--s-10); }
.form__fields {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--s-5);
}
.form__group { display: flex; flex-direction: column; }
.form__group--full { grid-column: 1/-1; }
.form__label {
    color: var(--c-text);
    font-size: var(--fs-sm);
    font-weight: var(--fw-semibold);
    margin-bottom: 8px;
}
.form__input, .form__textarea {
    width: 100%;
    padding: 14px 16px;
    background: var(--c-bg-1);
    border: 1px solid var(--c-bg-4);
    border-radius: var(--r-md);
    color: var(--c-text);
    font-family: inherit;
    font-size: var(--fs-base);
    transition: border-color var(--t-fast);
}
.form__input:focus, .form__textarea:focus {
    outline: none;
    border-color: var(--c-gold);
    box-shadow: 0 0 0 3px var(--c-gold-ghost);
}
.form__textarea { resize: vertical; min-height: 140px; }
.form__lgpd {
    grid-column: 1/-1;
    color: var(--c-text-subtle);
    font-size: var(--fs-xs);
    line-height: 1.5;
}
.form__feedback { grid-column: 1/-1; display: none; }
.form__feedback.is-visible { display: block; }
.form__submit-wrap { grid-column: 1/-1; display: flex; justify-content: flex-end; }
.honeypot { position: absolute; left: -9999px; opacity: 0; pointer-events: none; }

.alert {
    padding: 14px 18px;
    border-radius: var(--r-md);
    border: 1px solid;
    font-size: var(--fs-sm);
}
.alert--success { background: rgba(34,197,94,0.08); border-color: var(--c-success); color: var(--c-success); }
.alert--danger  { background: rgba(239,68,68,0.08); border-color: var(--c-danger); color: var(--c-danger); }

/* ---------- BLOG ---------- */
.blog { padding: var(--s-24) 0; background: var(--c-bg-2); }
.blog__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--s-6);
    margin-top: var(--s-10);
}
.artigo-card {
    background: var(--c-bg-1);
    border: 1px solid var(--c-bg-4);
    border-radius: var(--r-lg);
    overflow: hidden;
    transition: all var(--t-base);
    display: flex;
    flex-direction: column;
}
.artigo-card:hover {
    border-color: var(--c-gold);
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}
.artigo-card__image {
    display: block;
    aspect-ratio: 16/10;
    overflow: hidden;
}
.artigo-card__image img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform var(--t-slow);
}
.artigo-card:hover .artigo-card__image img { transform: scale(1.06); }
.artigo-card__body {
    padding: var(--s-6);
    display: flex; flex-direction: column;
    flex-grow: 1;
}
.artigo-card__meta {
    color: var(--c-gold);
    font-size: var(--fs-xs);
    text-transform: uppercase;
    letter-spacing: .08em;
    margin-bottom: var(--s-3);
    display: flex; gap: 8px; flex-wrap: wrap; align-items: center;
}
.artigo-card__title {
    font-family: var(--ff-serif);
    font-size: var(--fs-lg);
    color: var(--c-cream);
    line-height: var(--lh-snug);
    margin-bottom: var(--s-3);
    font-weight: var(--fw-semibold);
}
.artigo-card__title a { color: inherit; }
.artigo-card__title a:hover { color: var(--c-gold-light); }
.artigo-card__resumo {
    color: var(--c-text-muted);
    font-size: var(--fs-sm);
    line-height: var(--lh-normal);
    margin-bottom: var(--s-4);
    flex-grow: 1;
}
.artigo-card__link {
    color: var(--c-gold);
    font-size: var(--fs-sm);
    font-weight: var(--fw-semibold);
    text-transform: uppercase;
    letter-spacing: .08em;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: auto;
}
.artigo-card__link i { transition: transform var(--t-fast); }
.artigo-card:hover .artigo-card__link i { transform: translateX(4px); }

/* ---------- ARTIGO/AREA — conteúdo ---------- */
.subhero {
    position: relative;
    padding: calc(var(--header-h) + 80px) 0 80px;
    background: var(--c-bg-0);
    overflow: hidden;
    text-align: center;
}
.subhero::before {
    content: "";
    position: absolute; inset: 0;
    background-image: var(--subhero-bg);
    background-size: cover; background-position: center;
    opacity: 0.3;
}
.subhero::after {
    content: "";
    position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(5,5,5,0.85) 0%, rgba(15,15,16,0.75) 100%);
}
.subhero .container { position: relative; z-index: 2; }
.subhero__title {
    font-family: var(--ff-serif);
    font-size: var(--fs-3xl);
    font-weight: var(--fw-semibold);
    color: var(--c-cream);
    margin-bottom: var(--s-3);
    line-height: var(--lh-tight);
}
.subhero__breadcrumb {
    color: var(--c-gold);
    font-size: var(--fs-sm);
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}
.subhero__breadcrumb a { color: var(--c-gold-light); }
.subhero__breadcrumb a:hover { color: var(--c-gold); }
.subhero__breadcrumb span:not(:last-child) { color: var(--c-gold-dim); }

.artigo-conteudo {
    max-width: 820px;
    margin: 0 auto;
    color: var(--c-text);
    font-size: var(--fs-md);
    line-height: var(--lh-relaxed);
}
.artigo-conteudo h1, .artigo-conteudo h2, .artigo-conteudo h3, .artigo-conteudo h4 {
    font-family: var(--ff-serif);
    color: var(--c-cream);
    margin: var(--s-10) 0 var(--s-4);
    line-height: var(--lh-snug);
}
.artigo-conteudo h2 { font-size: var(--fs-2xl); }
.artigo-conteudo h3 { font-size: var(--fs-xl); }
.artigo-conteudo h4 { font-size: var(--fs-lg); }
.artigo-conteudo p { margin-bottom: var(--s-5); color: var(--c-text-muted); }
.artigo-conteudo strong { color: var(--c-gold-light); font-weight: var(--fw-semibold); }
.artigo-conteudo a { color: var(--c-gold); text-decoration: underline; }
.artigo-conteudo ul, .artigo-conteudo ol { margin: var(--s-4) 0 var(--s-6) var(--s-6); color: var(--c-text-muted); }
.artigo-conteudo ul li, .artigo-conteudo ol li { margin-bottom: 8px; line-height: var(--lh-relaxed); }
.artigo-conteudo ul { list-style: none; }
.artigo-conteudo ul > li {
    position: relative; padding-left: 28px;
}
.artigo-conteudo ul > li::before {
    content: "▸";
    position: absolute; left: 0;
    color: var(--c-gold);
    font-size: 18px;
}
.artigo-conteudo ol { padding-left: 24px; }
.artigo-conteudo img { border-radius: var(--r-md); margin: var(--s-6) 0; }
.artigo-conteudo blockquote {
    background: var(--c-bg-2);
    border-left: 4px solid var(--c-gold);
    padding: var(--s-5) var(--s-6);
    margin: var(--s-6) 0;
    border-radius: 0 var(--r-md) var(--r-md) 0;
    font-style: italic;
    color: var(--c-gold-light);
}

/* ---------- FOOTER ---------- */
.footer {
    background: var(--c-bg-0);
    border-top: 1px solid var(--c-bg-4);
    padding: var(--s-16) 0 0;
}
.footer__grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: var(--s-10);
    padding-bottom: var(--s-10);
}
.footer__col h4 {
    font-family: var(--ff-serif);
    font-size: var(--fs-md);
    color: var(--c-cream);
    margin-bottom: var(--s-5);
    font-weight: var(--fw-semibold);
}
.footer__col ul li { margin-bottom: 10px; }
.footer__col ul li a {
    color: var(--c-text-muted);
    font-size: var(--fs-sm);
    transition: all var(--t-fast);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.footer__col ul li a i { color: var(--c-gold); font-size: 10px; }
.footer__col ul li a:hover { color: var(--c-gold-light); transform: translateX(3px); }
.footer__logo img { height: 60px; margin-bottom: var(--s-4); }
.footer__about { color: var(--c-text-muted); font-size: var(--fs-sm); line-height: var(--lh-relaxed); margin-bottom: var(--s-5); }
.footer__social { display: flex; gap: 10px; }
.footer__social a {
    width: 40px; height: 40px;
    background: var(--c-bg-2);
    border: 1px solid var(--c-bg-4);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--c-gold);
    transition: all var(--t-fast);
}
.footer__social a:hover {
    background: var(--c-gold);
    color: var(--c-bg-0);
    border-color: var(--c-gold);
    transform: translateY(-3px);
}
.footer__contact li {
    color: var(--c-text-muted);
    font-size: var(--fs-sm);
    padding: 8px 0;
    display: flex;
    gap: 12px;
    align-items: flex-start;
}
.footer__contact li i { color: var(--c-gold); margin-top: 4px; flex-shrink: 0; }
.footer__contact a { color: var(--c-text-muted); }
.footer__contact a:hover { color: var(--c-gold-light); }
.footer__bottom {
    border-top: 1px solid var(--c-bg-4);
    padding: var(--s-5) 0;
    text-align: center;
    color: var(--c-text-subtle);
    font-size: var(--fs-xs);
}

/* ---------- WHATSAPP FLUTUANTE ---------- */
.wa-float {
    position: fixed;
    bottom: 24px; right: 24px;
    width: 60px; height: 60px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 28px;
    box-shadow: 0 6px 20px rgba(37,211,102,0.45);
    z-index: 90;
    transition: all var(--t-base);
    animation: pulse 2s ease-in-out infinite;
}
.wa-float:hover {
    background: #1DB954;
    color: white;
    transform: scale(1.08);
}
@keyframes pulse {
    0%,100% { box-shadow: 0 6px 20px rgba(37,211,102,0.45); }
    50% { box-shadow: 0 6px 20px rgba(37,211,102,0.45), 0 0 0 12px rgba(37,211,102,0); }
}

/* ---------- BACK TO TOP ---------- */
.back-to-top {
    position: fixed;
    bottom: 96px; right: 28px;
    width: 44px; height: 44px;
    background: var(--c-gold);
    color: var(--c-bg-0);
    border-radius: 50%;
    font-size: 16px;
    box-shadow: var(--shadow-md);
    z-index: 89;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: all var(--t-base);
}
.back-to-top.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.back-to-top:hover { background: var(--c-gold-light); }

/* ---------- REVEAL ON SCROLL ---------- */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity .8s ease, transform .8s ease;
}
.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* ---------- BLOG (página separada) — paginação ---------- */
.pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: var(--s-12);
}
.pagination__item {
    min-width: 42px;
    height: 42px;
    padding: 0 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--c-bg-2);
    border: 1px solid var(--c-bg-4);
    border-radius: var(--r-md);
    color: var(--c-text);
    font-size: var(--fs-sm);
    transition: all var(--t-fast);
}
.pagination__item:hover { border-color: var(--c-gold); color: var(--c-gold-light); }
.pagination__item.is-active {
    background: var(--c-gold);
    color: var(--c-bg-0);
    border-color: var(--c-gold);
    font-weight: var(--fw-semibold);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 992px) {
    .nav__contact { display: none; }
    .about__grid { grid-template-columns: 1fr; gap: var(--s-10); }
    .form__grid { grid-template-columns: 1fr; }
    .form__side { border-right: 0; border-bottom: 1px solid var(--c-bg-4); }
    .faq__grid { grid-template-columns: 1fr; }
    .faq__grid img { position: static; }
    .footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .nav {
        position: fixed;
        top: var(--header-h); left: 0; right: 0;
        background: var(--c-bg-1);
        border-bottom: 1px solid var(--c-bg-4);
        padding: var(--s-5);
        flex-direction: column;
        gap: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height var(--t-base);
    }
    .nav.is-open { max-height: 100vh; }
    .nav__list {
        flex-direction: column;
        align-items: stretch;
        width: 100%;
    }
    .nav__list li { width: 100%; }
    .nav__link {
        display: block;
        padding: 14px 16px;
        border-bottom: 1px solid var(--c-bg-4);
    }
    .nav__toggle { display: inline-flex; align-items: center; justify-content: center; }
    .hero { min-height: auto; padding-top: calc(var(--header-h) + 60px); padding-bottom: 80px; }
    .hero__title { font-size: 36px; }
    .hero__actions { flex-direction: column; align-items: stretch; }
    .hero__actions .btn { width: 100%; }
    .hero__scroll { display: none; }
    .resultado-card__numero { font-size: 48px; }
    .form__fields { grid-template-columns: 1fr; }
    #formContato, .form__side { padding: var(--s-6); }
    .footer__grid { grid-template-columns: 1fr; gap: var(--s-8); }
    .footer__col { text-align: left; }
    .section, .section--lg { padding: var(--s-12) 0; }
    .about, .resultados, .avaliacoes, .faq, .blog, .cta { padding: var(--s-12) 0; }
    .section-heading { margin-bottom: var(--s-8); }
}
