/* ============================================================
   Biasi Advocacia Empresarial e Agrária — biasiadvocacia.com.br
   Redesign 2026 — tradicional-luxuoso: petróleo, dourado único,
   serifa editorial, filetes finos no lugar de sombras.
   Mantém o contrato de classes do site anterior: todas as
   páginas (home, áreas, artigos, privacidade) usam este arquivo.
   ============================================================ */

/* ---------- Fontes auto-hospedadas ---------- */
@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 100 900;
    font-display: swap;
    src: url('/fontes/inter-var-latin.woff2') format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 100 900;
    font-display: swap;
    src: url('/fontes/inter-var-latin-ext.woff2') format('woff2');
    unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
    font-family: 'Cormorant Garamond';
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url('/fontes/cormorant-700-latin.woff2') format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
    font-family: 'Cormorant Garamond';
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url('/fontes/cormorant-700-latin-ext.woff2') format('woff2');
    unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
    font-family: 'Cormorant Garamond';
    font-style: italic;
    font-weight: 700;
    font-display: swap;
    src: url('/fontes/cormorant-700-italic-latin.woff2') format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
    font-family: 'Cormorant Garamond';
    font-style: italic;
    font-weight: 700;
    font-display: swap;
    src: url('/fontes/cormorant-700-italic-latin-ext.woff2') format('woff2');
    unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

/* ---------- Tokens ---------- */
:root {
    --primary: #0F2027;
    --primary-deep: #0C1B22;
    --primary-dark: #081216;
    --primary-light: #16323C;
    --accent: #C5A059;
    --accent-dark: #886A30;
    --hairline-gold: rgba(197, 160, 89, 0.18);
    --hairline-gold-strong: rgba(197, 160, 89, 0.45);
    --bg-light: #F8FAFC;
    --border-color: #E2E8F0;
    --text-main: #334155;
    --text-strong: #0F2027;
    --text-muted: #64748B;
    --text-on-dark: #CBD5E1;
    --text-on-dark-muted: #94A3B8;
    --serif: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
    --sans: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
    --container: 1280px;
    --transition: all 0.25s ease;
}

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

html { scroll-behavior: smooth; }

body {
    margin: 0;
    font-family: var(--sans);
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-main);
    background: var(--bg-light);
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

img { max-width: 100%; height: auto; }

a { color: var(--accent-dark); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--accent); }

h1, h2, h3, h4 {
    font-family: var(--serif);
    font-weight: 700;
    color: var(--text-strong);
    line-height: 1.15;
    margin: 0 0 20px 0;
}

p { margin: 0 0 18px 0; }

::selection { background: rgba(197, 160, 89, 0.35); }

.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 32px;
}

.section { padding: 120px 0; }
.section.bg-dark { background: var(--primary-dark); }
.section.bg-dark h2, .section.bg-dark h3 { color: #FFFFFF; }
.section.bg-dark p { color: var(--text-on-dark-muted); }

/* Overline de seção: filete + versalete dourado */
.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--accent-dark);
    margin-bottom: 22px;
}
.section-tag::before {
    content: "";
    display: block;
    width: 40px;
    height: 1px;
    background: currentColor;
}
.bg-dark .section-tag, .hero .section-tag { color: var(--accent); }

.section-header { margin-bottom: 64px; }
.section-title { font-size: clamp(34px, 4vw, 50px); line-height: 1.12; }
.section-subtitle { font-size: 15.5px; color: var(--text-muted); max-width: 640px; margin-top: -6px; }

/* ---------- Botões ---------- */
.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: var(--accent);
    color: var(--primary);
    font-family: var(--sans);
    font-size: 12.5px;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    padding: 18px 36px;
    border: 1px solid var(--accent);
    border-radius: 0;
    cursor: pointer;
    transition: var(--transition);
}
.btn-primary:hover { background: #D2B06A; border-color: #D2B06A; color: var(--primary); }
.btn-primary svg { width: 18px; height: 18px; flex-shrink: 0; }

.btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: transparent;
    color: #F8FAFC;
    font-size: 12.5px;
    font-weight: 500;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    padding: 17px 30px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 0;
    cursor: pointer;
    transition: var(--transition);
}
.btn-outline:hover { border-color: var(--accent); color: var(--accent); }

/* ---------- Navbar ---------- */
.navbar {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--primary);
    border-bottom: 1px solid var(--hairline-gold);
}
.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    height: 88px;
}
.nav-logo { height: 44px; width: auto; display: block; }
.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
    margin: 0;
    padding: 0;
}
.nav-link {
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.02em;
    color: var(--text-on-dark);
    padding: 6px 0;
    border-bottom: 1px solid transparent;
}
.nav-link:hover { color: #FFFFFF; border-bottom-color: var(--accent); }
.nav-links .btn-primary { padding: 13px 24px; font-size: 11.5px; background: transparent; color: var(--accent); }
.nav-links .btn-primary:hover { background: var(--accent); color: var(--primary); }

.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    width: 44px;
    height: 44px;
    padding: 8px;
    background: transparent;
    border: 1px solid var(--hairline-gold-strong);
    cursor: pointer;
}
.nav-toggle span { display: block; height: 1px; background: var(--accent); transition: var(--transition); }

/* ---------- Hero (base escura compartilhada) ---------- */
.hero {
    background: linear-gradient(180deg, var(--primary) 0%, var(--primary-deep) 100%);
    color: var(--text-on-dark);
    padding: 88px 0 0 0;
}
.hero h1, .hero h2 { color: #FFFFFF; }
.hero-title {
    font-size: clamp(42px, 5.4vw, 76px);
    line-height: 1.08;
    letter-spacing: -0.01em;
    margin-bottom: 26px;
}
.hero-title em { font-style: italic; color: var(--accent); }
.hero-subtitle {
    font-size: 17px;
    line-height: 1.75;
    color: var(--text-on-dark);
    max-width: 620px;
    margin-bottom: 34px;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 26px;
}
.hero-badge::before {
    content: "";
    display: block;
    width: 40px;
    height: 1px;
    background: var(--accent);
}
.hero-cta-group { display: flex; flex-wrap: wrap; align-items: center; gap: 20px; }

/* Hero da home: texto + retrato com moldura deslocada */
.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 440px;
    gap: 80px;
    align-items: center;
}
.hero-figure { position: relative; width: 100%; aspect-ratio: 47 / 56; }
.hero-figure::after {
    content: "";
    position: absolute;
    top: 22px;
    left: 22px;
    width: 100%;
    height: 100%;
    border: 1px solid var(--hairline-gold-strong);
    pointer-events: none;
}
.hero-figure .hero-photo-wrap {
    position: absolute;
    inset: 0;
    overflow: hidden;
    background: var(--primary-light);
}
.hero-figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 18%;
    filter: grayscale(100%) contrast(1.05) brightness(0.92);
    display: block;
}
.hero-figure .hero-photo-veil {
    position: absolute;
    inset: 0;
    background: linear-gradient(200deg, rgba(197, 160, 89, 0.16) 0%, rgba(15, 32, 39, 0.05) 45%, rgba(15, 32, 39, 0.72) 100%);
}

/* Faixa de confiança no rodapé do hero da home */
.hero-trust-badges {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 18px 28px;
    border-top: 1px solid var(--hairline-gold);
    margin-top: 84px;
    padding: 30px 0 34px 0;
}
.trust-item {
    font-size: 11.5px;
    font-weight: 500;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--text-on-dark-muted);
}
.trust-sep { width: 3px; height: 3px; background: var(--accent); flex-shrink: 0; }

/* Hero de página interna (áreas, artigos, privacidade) */
.hero-content-single { max-width: 900px; padding-bottom: 88px; }
.hero-content-single .hero-title { font-size: clamp(38px, 4.6vw, 62px); }
.breadcrumb-list {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px;
    list-style: none;
    margin: 0 0 44px 0;
    padding: 40px 0 0 0;
    font-size: 11.5px;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--text-on-dark-muted);
}
.breadcrumb-list a { color: var(--text-on-dark-muted); }
.breadcrumb-list a:hover { color: var(--accent); }
.breadcrumb-list li:last-child { color: var(--accent); }

/* ---------- Home: os quatro momentos (lista editorial) ---------- */
.areas-section { background: var(--bg-light); padding: 130px 0; }
.areas-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 60px;
    margin-bottom: 64px;
}
.areas-header .section-title { max-width: 640px; margin-bottom: 0; }
.areas-intro { font-size: 15px; line-height: 1.7; color: var(--text-muted); max-width: 380px; padding-bottom: 6px; }

.areas-list { display: flex; flex-direction: column; }
.area-row {
    display: grid;
    grid-template-columns: 90px minmax(0, 5fr) minmax(0, 6fr) auto;
    gap: 40px;
    align-items: start;
    border-top: 1px solid var(--border-color);
    padding: 44px 0;
}
.areas-list .area-row:last-child { border-bottom: 1px solid var(--border-color); }
.area-num {
    font-family: var(--serif);
    font-weight: 700;
    font-size: 24px;
    color: var(--accent-dark);
    font-variant-numeric: lining-nums;
    line-height: 1.2;
}
.area-title-group { display: flex; flex-direction: column; gap: 10px; }
.area-momento {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--accent-dark);
}
.area-row h3 { font-size: clamp(24px, 2.2vw, 30px); line-height: 1.2; margin: 0; }
.area-row .service-summary { font-size: 15px; line-height: 1.75; color: #475569; margin: 0; }
.area-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 11.5px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--accent-dark);
    padding-top: 8px;
    white-space: nowrap;
}
.area-link::after {
    content: "";
    display: block;
    width: 22px;
    height: 1px;
    background: currentColor;
    transition: var(--transition);
}
.area-link:hover::after { width: 34px; }

/* ---------- Home: o fundador ---------- */
.about-section { background: var(--primary); padding: 130px 0; }
.about-grid {
    display: grid;
    grid-template-columns: 460px minmax(0, 1fr);
    gap: 90px;
    align-items: center;
}
.profile-frame { position: relative; width: 100%; aspect-ratio: 5 / 6; }
.profile-frame::after {
    content: "";
    position: absolute;
    top: 22px;
    left: -22px;
    width: 100%;
    height: 100%;
    border: 1px solid var(--hairline-gold-strong);
    pointer-events: none;
}
.profile-frame .profile-photo-wrap {
    position: absolute;
    inset: 0;
    overflow: hidden;
    background: var(--primary-light);
}
.profile-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 12%;
    filter: grayscale(35%) contrast(1.02);
    display: block;
}
.about-text h2 { color: #FFFFFF; font-size: clamp(38px, 4vw, 56px); }
.about-text p { color: var(--text-on-dark); font-size: 16px; line-height: 1.8; max-width: 600px; }
.about-quote {
    border-left: 1px solid var(--hairline-gold-strong);
    padding-left: 24px;
    margin: 26px 0 30px 0;
}
.about-quote p {
    font-family: var(--serif);
    font-style: italic;
    font-weight: 700;
    font-size: 22px;
    line-height: 1.45;
    color: var(--accent);
    max-width: 560px;
    margin: 0;
}

/* ---------- Home: metodologia (Um lado só da mesa) ---------- */
.diff-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 56px;
}
.diff-card {
    border-top: 1px solid rgba(197, 160, 89, 0.3);
    padding-top: 32px;
}
.diff-number {
    font-family: var(--serif);
    font-weight: 700;
    font-size: 64px;
    line-height: 1;
    color: rgba(197, 160, 89, 0.4);
    font-variant-numeric: lining-nums;
    margin-bottom: 18px;
}
.diff-card h3 { color: #FFFFFF; font-size: 26px; line-height: 1.25; margin-bottom: 14px; }
.diff-card p { font-size: 14.5px; line-height: 1.75; color: var(--text-on-dark-muted); margin: 0; }

/* ---------- FAQ ---------- */
.faq-grid {
    display: grid;
    grid-template-columns: 380px minmax(0, 1fr);
    gap: 100px;
    align-items: start;
}
.faq-aside .section-title { font-size: clamp(30px, 3.2vw, 44px); }
.faq-aside p { font-size: 15px; color: var(--text-muted); }
.faq-list { display: flex; flex-direction: column; }
.faq-item {
    border-top: 1px solid var(--border-color);
    padding: 8px 0;
}
.faq-list .faq-item:last-child { border-bottom: 1px solid var(--border-color); }
.faq-item summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    font-family: var(--serif);
    font-weight: 700;
    font-size: 22px;
    color: var(--text-strong);
    padding: 20px 0;
    cursor: pointer;
    list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
    content: "+";
    font-family: var(--sans);
    font-weight: 400;
    font-size: 22px;
    line-height: 1;
    color: var(--accent-dark);
    flex-shrink: 0;
    transition: var(--transition);
}
.faq-item[open] summary::after { content: "−"; }
.faq-item p {
    font-family: var(--sans);
    font-size: 15px;
    line-height: 1.75;
    color: #475569;
    max-width: 680px;
    margin: 0 0 22px 0;
}

/* ---------- CTA banner ---------- */
.cta-banner {
    background: linear-gradient(180deg, var(--primary) 0%, var(--primary-deep) 100%);
    text-align: center;
    padding: 110px 48px;
}
.cta-banner h2 {
    color: #FFFFFF;
    font-size: clamp(34px, 4vw, 54px);
    line-height: 1.12;
    max-width: 820px;
    margin: 0 auto 22px auto;
}
.cta-banner p {
    color: var(--text-on-dark);
    font-size: 16px;
    line-height: 1.75;
    max-width: 640px;
    margin: 0 auto 34px auto;
}

/* ---------- Páginas de área e artigos ---------- */
.article-section { background: var(--bg-light); padding: 100px 0; }
.article-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 380px;
    gap: 90px;
    align-items: start;
}
.article-body h2 {
    font-size: clamp(27px, 2.8vw, 35px);
    line-height: 1.2;
    margin: 56px 0 20px 0;
}
.article-body h2:first-child { margin-top: 0; }
.article-body h3 { font-size: 23px; margin: 36px 0 14px 0; }
.article-body p { font-size: 15.5px; line-height: 1.8; color: #475569; }
.article-body strong { color: var(--text-strong); }

.service-list { list-style: none; margin: 8px 0 24px 0; padding: 0; }
.service-list li {
    position: relative;
    border-top: 1px solid var(--border-color);
    padding: 16px 0 16px 44px;
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-main);
}
.service-list li:last-child { border-bottom: 1px solid var(--border-color); }
.service-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 29px;
    width: 22px;
    height: 1px;
    background: var(--accent-dark);
}

.table-wrap { overflow-x: auto; margin: 24px 0; border: 1px solid var(--border-color); }
.table-wrap table { width: 100%; border-collapse: collapse; font-size: 14.5px; }
.table-wrap th {
    font-family: var(--sans);
    font-size: 11.5px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    text-align: left;
    color: var(--accent);
    background: var(--primary);
    padding: 14px 18px;
}
.table-wrap td { padding: 14px 18px; border-top: 1px solid var(--border-color); color: var(--text-main); vertical-align: top; }

.article-assinatura {
    border-top: 1px solid var(--border-color);
    margin-top: 48px;
    padding-top: 24px;
    font-size: 14px;
    color: var(--text-muted);
}

/* Sidebar escura com moldura deslocada */
.article-sidebar {
    position: sticky;
    top: 120px;
    background: var(--primary);
    padding: 44px 40px;
    margin: 14px 14px 0 0;
    box-shadow: 14px 14px 0 -13px var(--hairline-gold-strong);
}
.article-sidebar h3 { color: #FFFFFF; font-size: 27px; line-height: 1.2; }
.article-sidebar p { color: var(--text-on-dark); font-size: 14.5px; line-height: 1.75; }
.article-sidebar .btn-primary { width: 100%; }

/* Cards da listagem de artigos */
.artigo-card {
    display: block;
    border: 1px solid var(--border-color);
    background: #FFFFFF;
    padding: 34px 36px;
    margin-bottom: 24px;
    transition: var(--transition);
}
.artigo-card:hover { border-color: var(--accent); }
.artigo-tema {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--accent-dark);
    margin-bottom: 12px;
}
.artigo-card h2, .artigo-card h3 { font-size: 26px; line-height: 1.22; margin-bottom: 12px; }
.artigo-card p { font-size: 15px; color: #475569; margin-bottom: 10px; }
.artigo-tags { font-size: 12.5px; color: var(--text-muted); }

/* Outras áreas (banda escura) */
.related-areas {
    background: var(--primary);
    padding: 90px 0;
}
.related-areas h3 {
    color: #FFFFFF;
    font-size: clamp(28px, 3vw, 38px);
    margin-bottom: 44px;
}
.related-links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 40px;
}
.related-links li { border-top: 1px solid rgba(197, 160, 89, 0.3); }
.related-links a {
    display: block;
    font-family: var(--serif);
    font-weight: 700;
    font-size: 23px;
    line-height: 1.3;
    color: #FFFFFF;
    padding: 24px 0;
}
.related-links a:hover { color: var(--accent); }

/* ---------- Formulário (legado / conversão) ---------- */
.hero-card {
    background: #FFFFFF;
    border: 1px solid var(--border-color);
    padding: 40px;
}
.hero-card-title { font-size: 27px; margin-bottom: 8px; }
.hero-card-desc { font-size: 14px; color: var(--text-muted); margin-bottom: 24px; }
.form-group { margin-bottom: 18px; }
.form-label {
    display: block;
    font-size: 11.5px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--text-strong);
    margin-bottom: 8px;
}
.form-input, .form-select, .form-textarea {
    width: 100%;
    font-family: var(--sans);
    font-size: 15px;
    color: var(--text-strong);
    background: var(--bg-light);
    border: 1px solid var(--border-color);
    border-radius: 0;
    padding: 13px 14px;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
    outline: none;
    border-color: var(--accent);
}

/* ---------- WhatsApp flutuante ---------- */
.floating-whatsapp {
    position: fixed;
    right: 28px;
    bottom: 28px;
    z-index: 90;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 58px;
    height: 58px;
    background: var(--accent);
    border: 1px solid var(--accent);
    transition: var(--transition);
}
.floating-whatsapp svg { width: 26px; height: 26px; fill: var(--primary); }
.floating-whatsapp:hover { background: #D2B06A; }

/* ---------- Footer ---------- */
.footer {
    background: var(--primary-dark);
    color: var(--text-on-dark-muted);
    padding: 90px 0 0 0;
}
.footer-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 280px 280px;
    gap: 70px;
    padding-bottom: 64px;
}
.footer-brand img { height: 50px; width: auto; display: block; margin-bottom: 22px; }
.footer-tagline {
    font-family: var(--serif);
    font-style: italic;
    font-weight: 700;
    font-size: 22px;
    color: var(--accent);
    margin-bottom: 14px;
}
.footer-brand p { font-size: 14.5px; line-height: 1.75; max-width: 380px; }
.footer-address { font-style: normal; font-size: 13.5px; line-height: 1.8; color: var(--text-muted); }
.footer-col h3 {
    font-family: var(--sans);
    font-size: 11.5px;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 20px;
}
.footer-links { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 13px; }
.footer-links a { font-size: 14px; color: var(--text-on-dark); }
.footer-links a:hover { color: var(--accent); }
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px 40px;
    border-top: 1px solid rgba(197, 160, 89, 0.15);
    padding: 26px 0 32px 0;
}
.footer-bottom p { font-size: 12.5px; color: var(--text-muted); margin: 0; }
.footer-legal a { color: var(--text-muted); text-decoration: underline; }
.footer-legal a:hover { color: var(--accent); }

/* ============================================================
   Responsivo
   ============================================================ */
@media (max-width: 1100px) {
    .hero-grid { grid-template-columns: minmax(0, 1fr) 360px; gap: 56px; }
    .about-grid { grid-template-columns: 380px minmax(0, 1fr); gap: 60px; }
    .faq-grid { grid-template-columns: 320px minmax(0, 1fr); gap: 60px; }
    .article-grid { grid-template-columns: minmax(0, 1fr) 330px; gap: 56px; }
    .footer-grid { grid-template-columns: minmax(0, 1fr) 240px 240px; gap: 48px; }
    .area-row { grid-template-columns: 70px minmax(0, 5fr) minmax(0, 6fr); }
    .area-row .area-link { grid-column: 2 / -1; padding-top: 0; }
}

@media (max-width: 992px) {
    .nav-toggle { display: flex; }
    .nav-links {
        position: absolute;
        top: 88px;
        left: 0;
        right: 0;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        background: var(--primary-deep);
        border-bottom: 1px solid var(--hairline-gold);
        padding: 12px 32px 24px 32px;
    }
    .nav-links.aberto { display: flex; }
    .nav-links li { border-top: 1px solid var(--hairline-gold); }
    .nav-links li:first-child { border-top: none; }
    .nav-link { display: block; padding: 16px 0; border-bottom: none; }
    .nav-links .btn-primary { margin-top: 16px; width: 100%; }

    .hero-grid { grid-template-columns: 1fr; gap: 56px; }
    .hero-figure { max-width: 440px; }
    .hero-trust-badges { justify-content: flex-start; }
    .trust-sep { display: none; }
    .trust-item { border-left: 1px solid var(--hairline-gold-strong); padding-left: 14px; }
    .trust-item:first-child { border-left: none; padding-left: 0; }

    .about-grid { grid-template-columns: 1fr; gap: 64px; }
    .profile-frame { max-width: 440px; }
    .profile-frame::after { left: 22px; }
    .diff-grid { grid-template-columns: 1fr; gap: 40px; }
    .faq-grid { grid-template-columns: 1fr; gap: 48px; }
    .article-grid { grid-template-columns: 1fr; gap: 56px; }
    .article-sidebar { position: static; }
    .areas-header { flex-direction: column; align-items: flex-start; gap: 20px; }
    .footer-grid { grid-template-columns: 1fr; gap: 44px; }
}

@media (max-width: 640px) {
    .container { padding: 0 20px; }
    .section { padding: 80px 0; }
    .areas-section, .about-section { padding: 80px 0; }
    .article-section { padding: 64px 0; }
    .hero-content-single { padding-bottom: 64px; }
    .hero-trust-badges { margin-top: 56px; }
    .area-row { grid-template-columns: 1fr; gap: 14px; padding: 32px 0; }
    .area-num { font-size: 20px; }
    .area-row .area-link { grid-column: auto; }
    .cta-banner { padding: 72px 24px; }
    .btn-primary, .btn-outline { width: 100%; }
    .hero-cta-group { flex-direction: column; align-items: stretch; }
    .floating-whatsapp { right: 18px; bottom: 18px; width: 52px; height: 52px; }
    .footer-bottom { flex-direction: column; align-items: flex-start; }
}
