* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg: #f5f2ec;
    --paper: #ffffff;
    --dark: #111311;
    --dark-soft: #1b1e1b;
    --text: #1b1d1b;
    --muted: #6d716c;
    --gold: #a9844e;
    --gold-dark: #7f6136;
    --line: #dedbd3;
    --green: #26362d;
    --max: 1240px;
}

html {
    scroll-behavior: smooth;
}

body {
    overflow-x: hidden;
    font-family: "DM Sans", sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
.brand-copy strong {
    font-family: "Manrope", sans-serif;
}

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

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

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

/* =========================================================
   CABEÇALHO
========================================================= */

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(245, 242, 236, 0.97);
    border-bottom: 1px solid rgba(17, 19, 17, 0.08);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
}

.header-brand-area {
    background: var(--bg);
}

.header-brand-row {
    min-height: 92px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.brand {
    min-width: 0;
    display: flex;
    align-items: center;
    gap: 13px;
}

.brand img {
    width: auto;
    max-width: 260px;
    height: 68px;
    object-fit: contain;
}

.brand-mark {
    width: 48px;
    height: 48px;
    flex: 0 0 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--gold);
    color: var(--gold-dark);
    font-family: "Manrope", sans-serif;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 0.08em;
}

.brand-copy {
    display: flex;
    flex-direction: column;
    line-height: 1.15;
}

.brand-copy strong {
    color: var(--dark);
    font-size: 16px;
    font-weight: 800;
}

.brand-copy span {
    margin-top: 5px;
    color: var(--muted);
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.18em;
}

.header-actions {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: 18px;
}

.header-cta {
    min-height: 48px;
    padding: 0 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--dark);
    color: #ffffff;
    font-size: 13px;
    font-weight: 700;
    white-space: nowrap;
    transition:
        background 0.25s ease,
        color 0.25s ease,
        transform 0.25s ease;
}

.header-cta:hover {
    background: var(--gold-dark);
    transform: translateY(-1px);
}

.header-navigation {
    background: var(--paper);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.main-nav {
    min-height: 56px;
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    justify-content: center;
}

.main-nav a {
    position: relative;
    min-height: 56px;
    padding: 0 21px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #4c504b;
    font-size: 13px;
    font-weight: 600;
    white-space: nowrap;
    transition:
        color 0.2s ease,
        background 0.2s ease;
}

.main-nav a::after {
    content: "";
    position: absolute;
    right: 21px;
    bottom: 0;
    left: 21px;
    height: 2px;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.2s ease;
}

.main-nav a:hover {
    background: rgba(169, 132, 78, 0.04);
    color: var(--dark);
}

.main-nav a:hover::after {
    transform: scaleX(1);
}

.menu-toggle {
    width: 42px;
    height: 42px;
    display: none;
    padding: 0;
    background: transparent;
    border: 0;
    cursor: pointer;
}

.menu-toggle span {
    width: 24px;
    height: 2px;
    display: block;
    margin: 5px auto;
    background: var(--dark);
    transition: 0.2s ease;
}

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

.hero {
    position: relative;
    overflow: hidden;
    background: var(--dark);
    color: #ffffff;
}

.hero::after {
    content: "";
    position: absolute;
    top: -240px;
    right: -180px;
    width: 620px;
    height: 620px;
    border: 1px solid rgba(169, 132, 78, 0.23);
    border-radius: 50%;
}

.hero-grid {
    position: relative;
    z-index: 2;
    min-height: 700px;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
    gap: 70px;
}

.eyebrow {
    margin-bottom: 28px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: #c5aa80;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2em;
}

.eyebrow::before {
    content: "";
    width: 34px;
    height: 1px;
    background: #b68d53;
}

.hero h1 {
    max-width: 780px;
    font-size: clamp(3.4rem, 6.2vw, 6.2rem);
    font-weight: 600;
    line-height: 0.96;
    letter-spacing: -0.055em;
}

.hero h1 span {
    color: #c9a46d;
}

.hero-lead {
    max-width: 670px;
    margin-top: 30px;
    color: #c6cac5;
    font-size: 19px;
    line-height: 1.75;
}

.hero-actions {
    margin-top: 40px;
    display: flex;
    align-items: center;
    gap: 16px;
}

.btn-primary,
.btn-secondary {
    height: 56px;
    padding: 0 27px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    transition: 0.25s ease;
}

.btn-primary {
    background: #b58d55;
    color: #111111;
}

.btn-primary:hover {
    background: #c6a268;
    transform: translateY(-1px);
}

.btn-secondary {
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: #ffffff;
}

.btn-secondary:hover {
    border-color: #c5aa80;
    color: #c5aa80;
}

.hero-panel {
    position: relative;
}

.hero-card {
    padding: 38px;
    background: #1c211d;
    border: 1px solid rgba(255, 255, 255, 0.09);
}

.hero-card-label {
    color: #a5aaa5;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.2em;
}

.hero-number {
    margin: 22px 0 14px;
    color: #c7a36e;
    font-family: "Manrope", sans-serif;
    font-size: 78px;
    font-weight: 700;
    line-height: 1;
}

.hero-card h3 {
    margin-bottom: 12px;
    font-size: 24px;
    font-weight: 600;
}

.hero-card p {
    color: #aeb4ae;
    font-size: 14px;
}

.hero-small-grid {
    margin-top: 30px;
    padding-top: 25px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-small-grid div span {
    margin-bottom: 7px;
    display: block;
    color: #818781;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.14em;
}

.hero-small-grid div strong {
    font-size: 15px;
    font-weight: 600;
}

/* =========================================================
   FAIXA DE ESPECIALIDADES
========================================================= */

.trust-strip {
    background: #ffffff;
    border-bottom: 1px solid var(--line);
}

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

.trust-grid div {
    height: 84px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-right: 1px solid var(--line);
    color: #555a54;
    font-size: 11px;
    font-weight: 700;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.14em;
}

.trust-grid div:first-child {
    border-left: 1px solid var(--line);
}

/* =========================================================
   SEÇÕES
========================================================= */

.section {
    padding: 120px 0;
}

.section-dark {
    background: var(--dark);
    color: #ffffff;
}

.section-heading {
    margin-bottom: 70px;
    display: grid;
    grid-template-columns: 0.75fr 1.25fr;
    align-items: start;
    gap: 70px;
}

.section-kicker {
    color: var(--gold-dark);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2em;
}

.section-dark .section-kicker {
    color: #c29b64;
}

.section-heading h2 {
    font-size: clamp(2.4rem, 4vw, 4.5rem);
    font-weight: 600;
    line-height: 1.05;
    letter-spacing: -0.045em;
}

.section-heading p {
    max-width: 650px;
    margin-top: 25px;
    color: var(--muted);
    font-size: 17px;
}

.section-dark .section-heading p {
    color: #aab0aa;
}

/* =========================================================
   PROBLEMAS
========================================================= */

.problem-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid var(--line);
    border-left: 1px solid var(--line);
}

.problem-item {
    min-height: 250px;
    padding: 38px 34px;
    background: rgba(255, 255, 255, 0.25);
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    transition:
        background 0.25s ease,
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.problem-item:hover {
    background: #ffffff;
    box-shadow: 0 12px 35px rgba(30, 27, 22, 0.06);
    transform: translateY(-2px);
}

.problem-number {
    margin-bottom: 38px;
    color: var(--gold-dark);
    font-family: "Manrope", sans-serif;
    font-size: 12px;
    font-weight: 800;
}

.problem-item h3 {
    margin-bottom: 13px;
    font-size: 20px;
}

.problem-item p {
    color: var(--muted);
    font-size: 14px;
}

/* =========================================================
   INDICADORES
========================================================= */

.metric-grid {
    margin-top: 50px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.metric {
    padding: 42px 30px;
    border-left: 1px solid rgba(255, 255, 255, 0.11);
}

.metric:last-child {
    border-right: 1px solid rgba(255, 255, 255, 0.11);
}

.metric strong {
    margin-bottom: 10px;
    display: block;
    color: #c7a36e;
    font-family: "Manrope", sans-serif;
    font-size: 42px;
}

.metric span {
    color: #aeb3ae;
    font-size: 13px;
}

/* =========================================================
   SERVIÇOS
========================================================= */

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

.service-card {
    min-height: 390px;
    padding: 42px;
    display: flex;
    flex-direction: column;
    background: #ffffff;
    border: 1px solid #e3dfd7;
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.service-card:hover {
    box-shadow: 0 18px 50px rgba(30, 27, 22, 0.08);
    transform: translateY(-5px);
}

.service-tag {
    margin-bottom: 30px;
    color: var(--gold-dark);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.16em;
}

.service-card h3 {
    margin-bottom: 18px;
    font-size: 27px;
    line-height: 1.15;
}

.service-card p {
    color: var(--muted);
    font-size: 14px;
}

.service-link {
    margin-top: auto;
    padding-top: 35px;
    color: var(--dark);
    font-size: 13px;
    font-weight: 700;
}

/* =========================================================
   MÉTODO
========================================================= */

.method-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.method-step {
    padding: 38px 24px;
    border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.method-step:first-child {
    border-left: 1px solid rgba(255, 255, 255, 0.12);
}

.method-step span {
    margin-bottom: 45px;
    display: block;
    color: #c5a16c;
    font-family: "Manrope", sans-serif;
    font-size: 12px;
}

.method-step h3 {
    margin-bottom: 13px;
    font-size: 19px;
}

.method-step p {
    color: #9da39d;
    font-size: 13px;
}

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

.cta-section {
    padding: 115px 0;
    background: #b18a54;
}

.cta-grid {
    display: grid;
    grid-template-columns: 1.35fr 0.65fr;
    align-items: end;
    gap: 60px;
}

.cta-section h2 {
    max-width: 850px;
    font-size: clamp(2.7rem, 5vw, 5.3rem);
    line-height: 0.98;
    letter-spacing: -0.05em;
}

.cta-section p {
    max-width: 650px;
    margin-top: 24px;
    font-size: 17px;
}

.cta-box {
    text-align: right;
}

.cta-box .btn-dark {
    min-height: 58px;
    padding: 0 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #111111;
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
    transition:
        background 0.25s ease,
        transform 0.25s ease;
}

.cta-box .btn-dark:hover {
    background: #252825;
    transform: translateY(-2px);
}

/* =========================================================
   PÁGINAS INTERNAS
========================================================= */

.page-hero {
    padding: 120px 0 90px;
    background: var(--dark);
    color: #ffffff;
}

.page-hero h1 {
    max-width: 950px;
    font-size: clamp(3rem, 5vw, 5.2rem);
    font-weight: 600;
    line-height: 1.03;
    letter-spacing: -0.05em;
}

.page-hero p {
    max-width: 780px;
    margin-top: 28px;
    color: #b1b7b1;
    font-size: 18px;
    line-height: 1.75;
}

.page-content {
    padding: 90px 0 120px;
}

.page-content article {
    max-width: 850px;
    margin: 0 auto;
}

.page-content article > img {
    width: 100%;
    margin-bottom: 50px;
}

/* =========================================================
   CONTEÚDO EDITORIAL DAS PÁGINAS SEO
========================================================= */

.conteudo-editorial {
    color: #4f544f;
    font-size: 17px;
    line-height: 1.85;
}

.conteudo-editorial h2 {
    margin: 64px 0 22px;
    color: var(--dark);
    font-family: "Manrope", sans-serif;
    font-size: clamp(2rem, 3vw, 2.8rem);
    font-weight: 650;
    line-height: 1.15;
    letter-spacing: -0.035em;
}

.conteudo-editorial h2:first-child {
    margin-top: 0;
}

.conteudo-editorial h3 {
    margin: 42px 0 16px;
    color: var(--dark);
    font-family: "Manrope", sans-serif;
    font-size: 1.45rem;
    font-weight: 650;
    line-height: 1.3;
    letter-spacing: -0.02em;
}

.conteudo-editorial h4 {
    margin: 32px 0 12px;
    color: var(--dark);
    font-family: "Manrope", sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
}

.conteudo-editorial p {
    margin: 0 0 24px;
    color: #505550;
}

.conteudo-editorial strong {
    color: var(--dark);
    font-weight: 700;
}

.conteudo-editorial em {
    font-style: italic;
}

.conteudo-editorial ul,
.conteudo-editorial ol {
    margin: 8px 0 30px;
    padding-left: 0;
    list-style: none;
}

.conteudo-editorial ul li,
.conteudo-editorial ol li {
    position: relative;
    margin-bottom: 13px;
    padding-left: 28px;
    color: #505550;
}

.conteudo-editorial ul li::before {
    content: "";
    position: absolute;
    top: 0.72em;
    left: 0;
    width: 7px;
    height: 7px;
    background: var(--gold);
}

.conteudo-editorial ol {
    counter-reset: lista-editorial;
}

.conteudo-editorial ol li {
    padding-left: 42px;
    counter-increment: lista-editorial;
}

.conteudo-editorial ol li::before {
    content: counter(lista-editorial);
    position: absolute;
    top: 0;
    left: 0;
    color: var(--gold-dark);
    font-family: "Manrope", sans-serif;
    font-size: 13px;
    font-weight: 800;
}

.conteudo-editorial blockquote {
    margin: 45px 0;
    padding: 10px 0 10px 30px;
    border-left: 3px solid var(--gold);
    color: var(--dark);
    font-family: "Manrope", sans-serif;
    font-size: 1.3rem;
    line-height: 1.6;
}

.conteudo-editorial a {
    color: var(--gold-dark);
    font-weight: 600;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 4px;
    transition: color 0.2s ease;
}

.conteudo-editorial a:hover {
    color: var(--dark);
}

.conteudo-editorial hr {
    margin: 55px 0;
    border: 0;
    border-top: 1px solid var(--line);
}

.conteudo-editorial img {
    width: 100%;
    height: auto;
    margin: 40px 0;
}

.conteudo-editorial > *:last-child {
    margin-bottom: 0;
}

/* =========================================================
   RODAPÉ
========================================================= */

.site-footer {
    padding: 75px 0 30px;
    background: #0d0f0d;
    color: #ffffff;
}

.footer-top {
    padding-bottom: 60px;
    display: grid;
    grid-template-columns: 1.4fr 0.7fr 0.7fr 0.7fr;
    gap: 55px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand p {
    max-width: 430px;
    margin-top: 18px;
    color: #969c96;
    font-size: 14px;
}

.footer-logo {
    font-family: "Manrope", sans-serif;
    font-size: 23px;
    font-weight: 700;
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-title {
    margin-bottom: 9px;
    color: #ba9562;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.18em;
}

.footer-column a {
    color: #aeb3ae;
    font-size: 13px;
    transition: color 0.2s ease;
}

.footer-column a:hover {
    color: #ffffff;
}

.footer-bottom {
    padding-top: 28px;
    display: flex;
    justify-content: space-between;
    gap: 30px;
    color: #727772;
    font-size: 11px;
}

/* =========================================================
   TABLET
========================================================= */

@media (max-width: 980px) {
    .header-brand-row {
        min-height: 76px;
    }

    .brand img {
        max-width: 210px;
        height: 56px;
    }

    .header-cta {
        display: none;
    }

    .menu-toggle {
        display: block;
    }

    .header-navigation {
        position: relative;
        border-top: 1px solid var(--line);
    }

    .main-nav {
        display: none;
        min-height: 0;
        padding: 10px 0;
        flex-direction: column;
        align-items: stretch;
        background: #ffffff;
    }

    .main-nav.active {
        display: flex;
    }

    .main-nav a {
        min-height: 52px;
        padding: 0 24px;
        justify-content: flex-start;
        border-bottom: 1px solid var(--line);
    }

    .main-nav a:last-child {
        border-bottom: 0;
    }

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

    .hero-grid {
        min-height: auto;
        padding: 100px 0;
        grid-template-columns: 1fr;
    }

    .hero-panel {
        max-width: 600px;
    }

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

    .section-heading {
        grid-template-columns: 1fr;
        gap: 22px;
    }

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

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

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

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

    .cta-box {
        text-align: left;
    }

    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 50px;
    }
}

/* =========================================================
   CELULAR
========================================================= */

@media (max-width: 620px) {
    .container {
        width: min(calc(100% - 32px), var(--max));
    }

    .header-brand-row {
        min-height: 70px;
    }

    .brand {
        gap: 10px;
    }

    .brand img {
        max-width: 180px;
        height: 50px;
    }

    .brand-mark {
        width: 42px;
        height: 42px;
        flex-basis: 42px;
    }

    .brand-copy strong {
        font-size: 14px;
    }

    .brand-copy span {
        display: none;
    }

    .hero-grid {
        padding: 75px 0;
        gap: 50px;
    }

    .hero h1 {
        font-size: 3.3rem;
    }

    .hero-lead {
        font-size: 17px;
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
    }

    .hero-card {
        padding: 28px;
    }

    .hero-number {
        font-size: 60px;
    }

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

    .trust-grid div {
        height: 68px;
    }

    .section {
        padding: 82px 0;
    }

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

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

    .metric {
        border-bottom: 1px solid rgba(255, 255, 255, 0.11);
    }

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

    .method-step {
        border-left: 1px solid rgba(255, 255, 255, 0.12);
    }

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

    .page-hero {
        padding: 85px 0 65px;
    }

    .page-hero h1 {
        font-size: 2.8rem;
    }

    .page-hero p {
        font-size: 16px;
    }

    .page-content {
        padding: 60px 0 85px;
    }

    .conteudo-editorial {
        font-size: 16px;
        line-height: 1.8;
    }

    .conteudo-editorial h2 {
        margin-top: 48px;
        font-size: 2rem;
    }

    .conteudo-editorial h3 {
        margin-top: 34px;
        font-size: 1.3rem;
    }

    .conteudo-editorial blockquote {
        margin: 35px 0;
        padding-left: 20px;
        font-size: 1.15rem;
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 8px;
    }
}

/* =========================================================
   CELULARES PEQUENOS
========================================================= */

@media (max-width: 400px) {
    .container {
        width: min(calc(100% - 24px), var(--max));
    }

    .brand img {
        max-width: 155px;
        height: 46px;
    }

    .hero h1 {
        font-size: 2.85rem;
    }

    .hero-small-grid {
        grid-template-columns: 1fr;
    }

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

    .metric {
        border-right: 1px solid rgba(255, 255, 255, 0.11);
    }
}


/* =========================================================
   BLOG
========================================================= */

.blog-hero,
.blog-category-hero,
.article-hero {
    background: var(--dark);
    color: #ffffff;
}

.blog-hero {
    padding: 115px 0 105px;
}

.blog-category-hero {
    padding: 95px 0 80px;
}

.blog-eyebrow {
    display: inline-block;
    margin-bottom: 24px;
    color: #c5a16c;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2em;
}

.blog-hero h1,
.blog-category-hero h1 {
    max-width: 900px;
    font-size: clamp(3rem, 5vw, 5.4rem);
    font-weight: 600;
    line-height: 1;
    letter-spacing: -0.05em;
}

.blog-hero p,
.blog-category-hero p {
    max-width: 750px;
    margin-top: 27px;
    color: #b1b7b1;
    font-size: 18px;
    line-height: 1.75;
}

.blog-featured {
    padding: 80px 0 30px;
}

.featured-article {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    background: #ffffff;
    border: 1px solid var(--line);
}

.featured-image {
    min-height: 430px;
    overflow: hidden;
    background: #ddd8ce;
}

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

.featured-content {
    padding: 55px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.article-category {
    color: var(--gold-dark);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.16em;
}

.featured-content h2 {
    margin: 20px 0;
    color: var(--dark);
    font-size: clamp(2rem, 3vw, 3.1rem);
    line-height: 1.1;
    letter-spacing: -0.035em;
}

.featured-content p {
    color: var(--muted);
    font-size: 16px;
    line-height: 1.75;
}

.article-link {
    margin-top: 35px;
    color: var(--dark);
    font-size: 13px;
    font-weight: 700;
}

.blog-content {
    padding: 70px 0 120px;
}

.blog-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 300px;
    align-items: start;
    gap: 65px;
}

.blog-section-heading {
    margin-bottom: 35px;
}

.blog-section-heading > span {
    color: var(--gold-dark);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.18em;
}

.blog-section-heading h2 {
    margin-top: 7px;
    font-size: 34px;
    line-height: 1.2;
}

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

.article-card {
    overflow: hidden;
    background: #ffffff;
    border: 1px solid var(--line);
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.article-card:hover {
    box-shadow: 0 18px 45px rgba(30, 27, 22, 0.08);
    transform: translateY(-4px);
}

.article-image {
    height: 230px;
    overflow: hidden;
    background: #ddd8ce;
}

.article-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.article-card:hover .article-image img {
    transform: scale(1.025);
}

.article-card-content {
    padding: 28px;
}

.article-card h2,
.article-card h3 {
    margin: 14px 0;
    color: var(--dark);
    font-size: 22px;
    line-height: 1.25;
    letter-spacing: -0.025em;
}

.article-card p {
    color: var(--muted);
    font-size: 14px;
    line-height: 1.7;
}

.article-meta {
    margin-top: 24px;
    color: #90958f;
    font-size: 11px;
}

.blog-sidebar,
.article-sidebar {
    min-width: 0;
}

.sidebar-box {
    padding: 28px;
    background: #ffffff;
    border: 1px solid var(--line);
}

.sidebar-box + .sidebar-box,
.sidebar-box + .sidebar-cta,
.sidebar-cta + .sidebar-box {
    margin-top: 22px;
}

.sidebar-title {
    margin-bottom: 18px;
    display: block;
    color: var(--gold-dark);
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.18em;
}

.sidebar-box > a,
.article-toc a {
    padding: 10px 0;
    display: block;
    border-bottom: 1px solid #ece8df;
    color: #545954;
    font-size: 13px;
}

.sidebar-box > a:last-child,
.article-toc a:last-child {
    border-bottom: 0;
}

.sidebar-box > a:hover,
.article-toc a:hover {
    color: var(--gold-dark);
}

.sidebar-cta {
    padding: 32px;
    background: var(--green);
    color: #ffffff;
}

.sidebar-cta > span {
    color: #c7a36e;
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.18em;
}

.sidebar-cta h3 {
    margin: 18px 0 14px;
    font-size: 24px;
    line-height: 1.2;
}

.sidebar-cta p {
    color: #bdc4bd;
    font-size: 13px;
    line-height: 1.7;
}

.sidebar-cta a {
    margin-top: 25px;
    display: inline-block;
    color: #ffffff;
    font-size: 13px;
    font-weight: 700;
}

/* =========================================================
   ARTIGO
========================================================= */

.article-hero {
    padding: 100px 0 80px;
}

.article-hero-inner {
    max-width: 980px;
}

.article-hero h1 {
    max-width: 950px;
    margin-top: 22px;
    font-size: clamp(3rem, 5vw, 5.4rem);
    font-weight: 600;
    line-height: 1.02;
    letter-spacing: -0.052em;
}

.article-summary {
    max-width: 800px;
    margin-top: 28px;
    color: #b4bab4;
    font-size: 19px;
    line-height: 1.75;
}

.article-header-meta {
    margin-top: 32px;
    display: flex;
    flex-wrap: wrap;
    gap: 22px;
    color: #8f968f;
    font-size: 12px;
}

.article-cover {
    padding: 55px 0 0;
}

.article-cover img {
    width: 100%;
    max-height: 660px;
    object-fit: cover;
}

.article-section {
    padding: 80px 0 120px;
}

.article-layout {
    display: grid;
    grid-template-columns: minmax(0, 850px) 290px;
    align-items: start;
    justify-content: space-between;
    gap: 75px;
}

.article-main {
    min-width: 0;
}

.article-content {
    font-size: 18px;
}

.sidebar-sticky {
    position: sticky;
    top: 175px;
}

.article-toc {
    display: flex;
    flex-direction: column;
}

.article-toc .toc-subitem {
    padding-left: 15px;
    color: #7a7f79;
    font-size: 12px;
}

.related-section {
    margin-top: 90px;
    padding-top: 65px;
    border-top: 1px solid var(--line);
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.related-card {
    padding: 28px;
    background: #ffffff;
    border: 1px solid var(--line);
}

.related-card h3 {
    margin: 12px 0;
    font-size: 19px;
    line-height: 1.3;
}

.related-card p {
    color: var(--muted);
    font-size: 13px;
}

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

@media (max-width: 980px) {
    .featured-article {
        grid-template-columns: 1fr;
    }

    .featured-image {
        min-height: 360px;
    }

    .blog-layout,
    .article-layout {
        grid-template-columns: 1fr;
        gap: 55px;
    }

    .blog-sidebar,
    .article-sidebar {
        max-width: 650px;
    }

    .sidebar-sticky {
        position: static;
    }
}

@media (max-width: 620px) {
    .blog-hero,
    .article-hero {
        padding: 75px 0 65px;
    }

    .blog-category-hero {
        padding: 70px 0 60px;
    }

    .blog-hero h1,
    .blog-category-hero h1,
    .article-hero h1 {
        font-size: 2.8rem;
    }

    .blog-hero p,
    .blog-category-hero p,
    .article-summary {
        font-size: 16px;
    }

    .blog-featured {
        padding-top: 45px;
    }

    .featured-image {
        min-height: 230px;
    }

    .featured-content {
        padding: 30px;
    }

    .article-grid,
    .related-grid {
        grid-template-columns: 1fr;
    }

    .article-image {
        height: 220px;
    }

    .blog-content,
    .article-section {
        padding: 55px 0 85px;
    }

    .article-cover {
        padding-top: 30px;
    }

    .article-content {
        font-size: 16px;
    }
}

/* =========================================================
   SOLICITAR DIAGNÓSTICO
========================================================= */

.diagnostico-hero {
    padding: 105px 0 90px;
    background: var(--dark);
    color: #ffffff;
}

.diagnostico-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
    align-items: start;
    gap: 70px;
}

.diagnostico-hero h1 {
    max-width: 850px;
    font-size: clamp(3rem, 5vw, 5.2rem);
    font-weight: 600;
    line-height: 1.02;
    letter-spacing: -0.05em;
}

.diagnostico-hero p {
    max-width: 760px;
    margin-top: 28px;
    color: #b5bbb5;
    font-size: 18px;
    line-height: 1.75;
}

.diagnostico-hero-note {
    padding: 34px;
    background: #1c211d;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.diagnostico-hero-note > span {
    display: block;
    margin-bottom: 16px;
    color: #c7a36e;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.18em;
}

.diagnostico-hero-note p {
    margin: 0 0 17px;
    color: #aeb4ae;
    font-size: 14px;
    line-height: 1.7;
}

.diagnostico-hero-note p:last-child {
    margin-bottom: 0;
}

.diagnostico-section {
    padding: 85px 0 120px;
}

.diagnostico-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    align-items: start;
    gap: 65px;
}

.diagnostico-form {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.diagnostico-block {
    padding: 42px;
    background: #ffffff;
    border: 1px solid var(--line);
}

.form-section-heading {
    margin-bottom: 34px;
    display: grid;
    grid-template-columns: 45px minmax(0, 1fr);
    align-items: start;
    gap: 18px;
}

.form-section-heading > span {
    padding-top: 5px;
    color: var(--gold-dark);
    font-family: "Manrope", sans-serif;
    font-size: 12px;
    font-weight: 800;
}

.form-section-heading h2 {
    color: var(--dark);
    font-size: 26px;
    font-weight: 650;
    line-height: 1.2;
    letter-spacing: -0.025em;
}

.form-section-heading p {
    max-width: 650px;
    margin-top: 9px;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.65;
}

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

.form-group {
    min-width: 0;
}

.form-group-full {
    grid-column: 1 / -1;
}

.form-group label {
    display: block;
    margin-bottom: 9px;
    color: #353935;
    font-size: 13px;
    font-weight: 700;
}

.form-control {
    width: 100%;
    min-height: 52px;
    padding: 0 15px;
    background: #faf9f6;
    border: 1px solid #d8d4cb;
    border-radius: 0;
    outline: none;
    color: var(--dark);
    font-family: "DM Sans", sans-serif;
    font-size: 14px;
    transition:
        border-color 0.2s ease,
        background 0.2s ease,
        box-shadow 0.2s ease;
}

textarea.form-control {
    min-height: 145px;
    padding-top: 14px;
    padding-bottom: 14px;
    resize: vertical;
    line-height: 1.6;
}

select.form-control {
    padding-right: 38px;
    cursor: pointer;
}

.form-control:focus {
    background: #ffffff;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(169, 132, 78, 0.08);
}

.form-control::placeholder {
    color: #9a9e98;
}

.field-error {
    display: block;
    margin-top: 7px;
    color: #9e2f2f;
    font-size: 12px;
    line-height: 1.4;
}

.form-general-errors {
    margin-bottom: 26px;
    padding: 18px 20px;
    background: #fff1ef;
    border: 1px solid #e4b2aa;
    color: #8d2929;
    font-size: 13px;
}

.form-general-errors p {
    margin: 0 0 6px;
}

.form-general-errors p:last-child {
    margin-bottom: 0;
}

/* =========================================================
   CHECKBOXES DO PERFIL
========================================================= */

.form-check-grid {
    margin-top: 28px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.check-card {
    min-height: 86px;
    padding: 17px 18px;
    display: flex;
    align-items: flex-start;
    gap: 13px;
    background: #faf9f6;
    border: 1px solid var(--line);
    cursor: pointer;
    transition:
        border-color 0.2s ease,
        background 0.2s ease,
        transform 0.2s ease;
}

.check-card:hover {
    background: #ffffff;
    border-color: #c8b28f;
}

.check-card input[type="checkbox"] {
    width: 18px;
    height: 18px;
    flex: 0 0 18px;
    margin-top: 2px;
    accent-color: var(--gold-dark);
    cursor: pointer;
}

.check-card span {
    min-width: 0;
    display: flex;
    flex-direction: column;
}

.check-card strong {
    color: var(--dark);
    font-size: 13px;
    line-height: 1.4;
}

.check-card small {
    margin-top: 4px;
    color: var(--muted);
    font-size: 11px;
    line-height: 1.5;
}

.check-card-wide {
    margin-top: 25px;
}

/* =========================================================
   CAMPO CMV CONDICIONAL
========================================================= */

.cmv-field {
    max-width: 300px;
    margin-top: 24px;
    display: none;
}

.cmv-field.active {
    display: block;
}

.percentage-input {
    position: relative;
}

.percentage-input .form-control {
    padding-right: 45px;
}

.percentage-input > span {
    position: absolute;
    top: 50%;
    right: 16px;
    color: var(--muted);
    font-size: 14px;
    transform: translateY(-50%);
    pointer-events: none;
}

/* =========================================================
   PROBLEMAS
========================================================= */

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

.problem-check-grid label {
    min-height: 57px;
    padding: 0 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    background: #faf9f6;
    border: 1px solid var(--line);
    color: #454a45;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition:
        border-color 0.2s ease,
        background 0.2s ease;
}

.problem-check-grid label:hover {
    background: #ffffff;
    border-color: #c8b28f;
}

.problem-check-grid input[type="checkbox"] {
    width: 17px;
    height: 17px;
    flex: 0 0 17px;
    accent-color: var(--gold-dark);
}

/* =========================================================
   ENVIO
========================================================= */

.diagnostico-submit {
    padding: 36px 42px;
    background: #ece8df;
    border: 1px solid #d7d2c8;
}

.privacy-check {
    display: flex;
    align-items: flex-start;
    gap: 11px;
    color: #4d524d;
    font-size: 13px;
    line-height: 1.55;
    cursor: pointer;
}

.privacy-check input[type="checkbox"] {
    width: 18px;
    height: 18px;
    flex: 0 0 18px;
    margin-top: 1px;
    accent-color: var(--gold-dark);
}

.privacy-check a {
    color: var(--gold-dark);
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.diagnostico-submit-button {
    width: 100%;
    min-height: 60px;
    margin-top: 26px;
    padding: 0 25px;
    background: var(--dark);
    border: 0;
    color: #ffffff;
    font-family: "DM Sans", sans-serif;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition:
        background 0.25s ease,
        transform 0.25s ease;
}

.diagnostico-submit-button:hover {
    background: var(--gold-dark);
    transform: translateY(-1px);
}

.submit-note {
    max-width: 650px;
    margin: 17px auto 0;
    color: #777c76;
    font-size: 11px;
    line-height: 1.6;
    text-align: center;
}

/* =========================================================
   SIDEBAR DO DIAGNÓSTICO
========================================================= */

.diagnostico-sidebar {
    min-width: 0;
}

.diagnostico-sidebar-sticky {
    position: sticky;
    top: 175px;
}

.diagnostico-info-card {
    padding: 30px;
    background: var(--dark);
    color: #ffffff;
}

.diagnostico-info-card > span,
.diagnostico-filter-card > span {
    display: block;
    margin-bottom: 22px;
    color: #c7a36e;
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.18em;
}

.diagnostico-info-card ol {
    margin: 0;
    padding: 0;
    list-style: none;
}

.diagnostico-info-card li {
    padding: 21px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.09);
}

.diagnostico-info-card li:first-child {
    padding-top: 0;
    border-top: 0;
}

.diagnostico-info-card li:last-child {
    padding-bottom: 0;
}

.diagnostico-info-card strong {
    display: block;
    color: #ffffff;
    font-size: 13px;
}

.diagnostico-info-card p {
    margin-top: 7px;
    color: #a5aba5;
    font-size: 12px;
    line-height: 1.65;
}

.diagnostico-filter-card {
    margin-top: 22px;
    padding: 30px;
    background: #ffffff;
    border: 1px solid var(--line);
}

.diagnostico-filter-card p {
    color: var(--muted);
    font-size: 13px;
    line-height: 1.75;
}

/* =========================================================
   SUCESSO
========================================================= */

.diagnostico-success {
    min-height: 680px;
    padding: 100px 0;
    display: flex;
    align-items: center;
    background: var(--dark);
}

.success-card {
    max-width: 780px;
    margin: 0 auto;
    padding: 65px;
    background: #ffffff;
}

.success-number {
    width: 54px;
    height: 54px;
    margin-bottom: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gold);
    color: #111111;
    font-family: "Manrope", sans-serif;
    font-size: 22px;
    font-weight: 800;
}

.success-card .eyebrow {
    margin-bottom: 20px;
    color: var(--gold-dark);
}

.success-card h1 {
    color: var(--dark);
    font-size: clamp(2.5rem, 4vw, 4.2rem);
    font-weight: 600;
    line-height: 1.04;
    letter-spacing: -0.045em;
}

.success-card p {
    max-width: 650px;
    margin-top: 23px;
    color: var(--muted);
    font-size: 16px;
    line-height: 1.75;
}

.success-card .btn-primary {
    margin-top: 35px;
}

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

@media (max-width: 980px) {
    .diagnostico-hero-grid,
    .diagnostico-layout {
        grid-template-columns: 1fr;
    }

    .diagnostico-hero-grid {
        gap: 45px;
    }

    .diagnostico-hero-note {
        max-width: 700px;
    }

    .diagnostico-layout {
        gap: 50px;
    }

    .diagnostico-sidebar {
        max-width: 700px;
    }

    .diagnostico-sidebar-sticky {
        position: static;
    }
}

@media (max-width: 700px) {
    .diagnostico-hero {
        padding: 75px 0 65px;
    }

    .diagnostico-hero h1 {
        font-size: 2.9rem;
    }

    .diagnostico-hero p {
        font-size: 16px;
    }

    .diagnostico-section {
        padding: 55px 0 85px;
    }

    .diagnostico-block {
        padding: 30px 24px;
    }

    .form-section-heading {
        grid-template-columns: 34px minmax(0, 1fr);
        gap: 11px;
    }

    .form-section-heading h2 {
        font-size: 22px;
    }

    .form-grid {
        grid-template-columns: 1fr;
        gap: 19px;
    }

    .form-group-full {
        grid-column: auto;
    }

    .form-check-grid,
    .problem-check-grid {
        grid-template-columns: 1fr;
    }

    .diagnostico-submit {
        padding: 30px 24px;
    }

    .success-card {
        padding: 45px 30px;
    }
}

@media (max-width: 420px) {
    .diagnostico-hero h1 {
        font-size: 2.55rem;
    }

    .diagnostico-hero-note {
        padding: 26px;
    }

    .diagnostico-block {
        padding: 26px 20px;
    }

    .form-section-heading {
        grid-template-columns: 1fr;
    }

    .form-section-heading > span {
        padding-top: 0;
    }

    .check-card {
        padding: 15px;
    }

    .diagnostico-submit {
        padding: 25px 20px;
    }

    .diagnostico-submit-button {
        min-height: 58px;
        padding: 12px 18px;
    }
}

/* =========================================================
   MODAL DE VALIDAÇÃO DO FORMULÁRIO
========================================================= */

.validation-modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 9999;
    padding: 24px;
    display: none;
    align-items: center;
    justify-content: center;
    background: rgba(10, 12, 10, 0.72);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.validation-modal-overlay.active {
    display: flex;
}

.validation-modal {
    position: relative;
    width: min(100%, 560px);
    max-height: calc(100vh - 48px);
    padding: 42px;
    overflow-y: auto;
    background: #ffffff;
    border: 1px solid var(--line);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.25);
}

.validation-modal-close {
    position: absolute;
    top: 16px;
    right: 18px;
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: 0;
    color: #6e736e;
    font-size: 27px;
    line-height: 1;
    cursor: pointer;
}

.validation-modal-close:hover {
    color: var(--dark);
}

.validation-modal-icon {
    width: 52px;
    height: 52px;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #9e2f2f;
    color: #ffffff;
    font-family: "Manrope", sans-serif;
    font-size: 24px;
    font-weight: 800;
}

.validation-modal h2 {
    max-width: 430px;
    color: var(--dark);
    font-family: "Manrope", sans-serif;
    font-size: 27px;
    font-weight: 650;
    line-height: 1.2;
    letter-spacing: -0.025em;
}

.validation-modal-intro {
    margin-top: 13px;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.65;
}

.validation-modal-errors {
    margin-top: 27px;
    border-top: 1px solid var(--line);
}

.validation-modal-error {
    padding: 17px 0;
    border-bottom: 1px solid var(--line);
}

.validation-modal-error strong {
    display: block;
    margin-bottom: 4px;
    color: var(--dark);
    font-size: 13px;
}

.validation-modal-error span {
    display: block;
    color: #9e2f2f;
    font-size: 13px;
    line-height: 1.5;
}

.validation-modal-button {
    width: 100%;
    min-height: 54px;
    margin-top: 28px;
    padding: 0 20px;
    background: var(--dark);
    border: 0;
    color: #ffffff;
    font-family: "DM Sans", sans-serif;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s ease;
}

.validation-modal-button:hover {
    background: var(--gold-dark);
}

@media (max-width: 620px) {
    .validation-modal-overlay {
        padding: 16px;
    }

    .validation-modal {
        padding: 34px 24px 26px;
    }

    .validation-modal h2 {
        padding-right: 25px;
        font-size: 23px;
    }

    .validation-modal-icon {
        width: 46px;
        height: 46px;
        font-size: 21px;
    }
}

.form-honeypot {
    position: absolute !important;
    left: -9999px !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
}


/* =========================================================
   PÁGINAS DE ERRO
========================================================= */

.error-page {
    min-height: 70vh;
    display: flex;
    align-items: center;
    padding: 100px 0;
}

.error-page-content {
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
}

.error-code {
    display: block;
    margin-bottom: 18px;
    color: var(--gold-dark);
    font-family: "Manrope", sans-serif;
    font-size: 72px;
    font-weight: 800;
    line-height: 1;
}

.error-page h1 {
    margin-bottom: 18px;
    font-family: "Manrope", sans-serif;
    font-size: 38px;
    line-height: 1.15;
}

.error-page p {
    max-width: 560px;
    margin: 0 auto 32px;
    color: var(--muted);
    font-size: 16px;
    line-height: 1.7;
}

@media (max-width: 620px) {
    .error-page {
        padding: 70px 0;
    }

    .error-code {
        font-size: 56px;
    }

    .error-page h1 {
        font-size: 30px;
    }
}