/* =============================================================
   MARIA LUIZA MIRANDA — ADVOCACIA DE FAMÍLIA E SUCESSÕES
   Linguagem visual: EDITORIAL PREMIUM
   (mesma identidade da marca — navy/dourado/off-white/Cormorant+Montserrat —
    com um layout próprio, distinto da landing page)
   Author: Yuri Augusto · yurideveloper.com.br
   ============================================================= */

/* -------------------------------------------------------------
   1. DESIGN TOKENS
   ------------------------------------------------------------- */
:root {
    --navy-dark: #0A1128;
    --navy-light: #162447;
    --gold: #D4AF37;
    --gold-soft: #B8962E;
    --gold-light: #F3E5AB;
    --cream: #F7F5EF;
    --white-soft: #FAF9F6;
    --gray-text: #4A4A4A;
    --line: #E7E3D8;
    --whatsapp-green: #25D366;
    --whatsapp-dark: #128C7E;

    --font-display: 'Cormorant Garamond', serif;
    --font-sans: 'Montserrat', sans-serif;

    --section-pad: 120px;
    --container-width: 1180px;
    --radius-lg: 18px;
    --radius-md: 10px;

    --shadow-soft: 0 12px 40px rgba(10, 17, 40, 0.06);
    --shadow-card: 0 24px 60px rgba(10, 17, 40, 0.10);
}

/* -------------------------------------------------------------
   2. RESET & BASE
   ------------------------------------------------------------- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; font-size: 16px; scroll-padding-top: 110px; }

body {
    background-color: var(--white-soft);
    color: var(--navy-dark);
    font-family: var(--font-sans);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 600; line-height: 1.12; }
a { text-decoration: none; color: inherit; transition: 0.3s; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

/* -------------------------------------------------------------
   3. LAYOUT UTILITIES
   ------------------------------------------------------------- */
.container { max-width: var(--container-width); margin: 0 auto; padding: 0 24px; }
.section-padding { padding: var(--section-pad) 0; }

/* Section header — editorial, left aligned with kicker */
.section-head { max-width: 720px; margin-bottom: 64px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }

.kicker {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--gold-soft);
    margin-bottom: 18px;
}
.kicker::before { content: ''; width: 32px; height: 1px; background: var(--gold); }
.section-head.center .kicker::after { content: ''; width: 32px; height: 1px; background: var(--gold); }

.section-title { font-size: 3rem; letter-spacing: -0.5px; }
.section-lead { margin-top: 18px; font-size: 1.12rem; color: var(--gray-text); max-width: 640px; }
.section-head.center .section-lead { margin-left: auto; margin-right: auto; }

.overline {
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--gold-soft);
    display: block;
    margin-bottom: 16px;
}

.bg-cream { background-color: var(--cream); }
.text-center { text-align: center; }
.logo-img { height: 60px; width: auto; object-fit: contain; }

/* -------------------------------------------------------------
   4. ANIMATIONS
   ------------------------------------------------------------- */
@keyframes pulse {
    0%   { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
    70%  { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
    .reveal { opacity: 1; transform: none; transition: none; }
}

/* -------------------------------------------------------------
   5. BUTTONS
   ------------------------------------------------------------- */
.btn-whatsapp-nav, .btn-whatsapp-hero, .btn-whatsapp-small {
    background-color: var(--whatsapp-green);
    color: #fff;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 6px 18px rgba(37, 211, 102, 0.28);
    white-space: nowrap;
    border: 1px solid var(--whatsapp-green);
    cursor: pointer;
}
.btn-whatsapp-nav { padding: 10px 22px; font-size: 0.85rem; }
.btn-whatsapp-nav i { font-size: 1.1rem; }
.btn-whatsapp-hero { padding: 17px 34px; font-size: 1rem; letter-spacing: 0.3px; }
.btn-whatsapp-hero i { font-size: 1.4rem; }
.btn-whatsapp-small { padding: 13px 26px; font-size: 0.9rem; }
.btn-whatsapp-nav:hover, .btn-whatsapp-hero:hover, .btn-whatsapp-small:hover {
    background-color: var(--whatsapp-dark); border-color: var(--whatsapp-dark);
    transform: translateY(-2px); box-shadow: 0 10px 24px rgba(37, 211, 102, 0.36);
}

/* Ghost / link button with gold underline */
.btn-link {
    display: inline-flex; align-items: center; gap: 10px;
    font-weight: 600; font-size: 0.95rem; color: var(--navy-dark);
    padding-bottom: 4px; border-bottom: 1px solid var(--gold);
}
.btn-link i { color: var(--gold); transition: transform 0.3s; }
.btn-link:hover { color: var(--gold-soft); }
.btn-link:hover i { transform: translateX(5px); }

.btn-gold {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 14px 30px; border-radius: 50px;
    background: var(--gold); color: var(--navy-dark);
    font-weight: 600; letter-spacing: 0.3px;
    border: 1px solid var(--gold); transition: all 0.3s ease;
}
.btn-gold:hover { background: transparent; color: var(--gold-soft); transform: translateY(-2px); }

.btn-outline-dark {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 14px 30px; border-radius: 50px;
    border: 1px solid var(--navy-dark); color: var(--navy-dark);
    font-weight: 600; transition: all 0.3s ease;
}
.btn-outline-dark:hover { background: var(--navy-dark); color: #fff; }

.btn-outline-light {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 14px 30px; border-radius: 50px;
    border: 1px solid var(--gold); color: var(--gold);
    font-weight: 600; transition: all 0.3s ease;
}
.btn-outline-light:hover { background: var(--gold); color: var(--navy-dark); }

/* -------------------------------------------------------------
   6. NAVIGATION
   ------------------------------------------------------------- */
#navbar {
    position: fixed; top: 0; width: 100%; z-index: 1000;
    padding: 14px 0; transition: all 0.35s ease;
    background: rgba(250, 249, 246, 0.85); backdrop-filter: blur(12px);
}
#navbar.scrolled { padding: 8px 0; background: rgba(250, 249, 246, 0.97); box-shadow: 0 1px 0 var(--line); }

.nav-container { display: flex; justify-content: space-between; align-items: center; }
.brand { display: flex; align-items: center; gap: 12px; }
.nav-menu { display: flex; gap: 34px; align-items: center; }
.nav-menu > li > a {
    font-size: 0.82rem; font-weight: 600; color: var(--navy-dark);
    position: relative; text-transform: uppercase; letter-spacing: 1.5px;
}
.nav-menu > li > a:not(.btn-whatsapp-nav)::after {
    content: ''; position: absolute; width: 0; height: 1px; bottom: -5px; left: 0;
    background-color: var(--gold); transition: width 0.3s;
}
.nav-menu > li > a:not(.btn-whatsapp-nav):hover::after,
.nav-menu a.active::after { width: 100%; }
.nav-menu a.active { color: var(--gold-soft); }

.menu-toggle { display: none; flex-direction: column; gap: 6px; cursor: pointer; width: 30px; height: 22px; z-index: 1001; }
.bar { width: 100%; height: 2px; background-color: var(--navy-dark); transition: 0.3s; }
.menu-close { display: none !important; }

/* -------------------------------------------------------------
   7. HERO — editorial, light
   ------------------------------------------------------------- */
.hero-ed {
    position: relative;
    background: var(--cream);
    padding: 170px 0 0;
    overflow: hidden;
}
.hero-ed::before {
    content: ''; position: absolute; top: -180px; right: -160px;
    width: 620px; height: 620px; border-radius: 50%;
    background: radial-gradient(circle, rgba(212,175,55,0.14) 0%, transparent 68%);
    pointer-events: none;
}
.hero-ed-grid {
    display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 70px;
    align-items: center; position: relative; z-index: 1;
    padding-bottom: 70px;
}
.hero-ed-title {
    font-size: 4.2rem; line-height: 1.05; letter-spacing: -1px; margin-bottom: 26px;
}
.hero-ed-title em { font-style: italic; color: var(--gold-soft); }
.hero-ed-lead { font-size: 1.18rem; color: var(--gray-text); max-width: 90%; margin-bottom: 36px; }
.hero-ed-actions { display: flex; align-items: center; gap: 28px; flex-wrap: wrap; }

/* Photo with offset gold outline frame */
.hero-ed-photo { position: relative; justify-self: center; width: 100%; max-width: 420px; }
.hero-ed-photo .photo-frame {
    position: relative; z-index: 2; border-radius: 6px 6px 200px 200px; overflow: hidden;
    aspect-ratio: 4 / 5; box-shadow: var(--shadow-card); background: var(--navy-light);
}
.hero-ed-photo .photo-frame img { width: 100%; height: 100%; object-fit: cover; object-position: top center; }
.hero-ed-photo .photo-accent {
    position: absolute; z-index: 1; inset: 0; transform: translate(22px, 22px);
    border: 1.5px solid var(--gold); border-radius: 6px 6px 200px 200px; pointer-events: none;
}

/* Stats strip */
.hero-stats {
    position: relative; z-index: 1;
    display: grid; grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid var(--line);
}
.hero-stat { padding: 28px 24px; border-right: 1px solid var(--line); }
.hero-stat:last-child { border-right: none; }
.hero-stat .num { font-family: var(--font-display); font-size: 1.7rem; font-weight: 700; color: var(--navy-dark); }
.hero-stat .num span { color: var(--gold); }
.hero-stat .lbl { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 1.5px; color: var(--gray-text); margin-top: 4px; }

/* -------------------------------------------------------------
   8. ABOUT — asymmetric editorial
   ------------------------------------------------------------- */
.about-ed-grid { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 70px; align-items: start; }
.about-ed-side { position: sticky; top: 120px; }
.about-ed-side h2 { font-size: 2.6rem; margin: 6px 0 24px; }
.about-ed-side .signature-text {
    font-family: var(--font-display); font-style: italic; font-size: 1.7rem;
    font-weight: 600; color: var(--navy-dark); display: block;
}
.about-ed-side .oab {
    font-size: 0.8rem; text-transform: uppercase; letter-spacing: 1.5px;
    color: var(--gold-soft); font-weight: 700; display: block; margin: 6px 0 28px;
}
.about-ed-text .lead-quote {
    font-family: var(--font-display); font-size: 2rem; font-style: italic;
    line-height: 1.4; color: var(--navy-dark); margin-bottom: 30px;
    padding-left: 26px; border-left: 3px solid var(--gold);
}
.about-ed-text p { font-size: 1.1rem; color: var(--gray-text); line-height: 1.9; margin-bottom: 20px; }
.about-ed-text strong { color: var(--navy-dark); font-weight: 600; }

/* -------------------------------------------------------------
   9. ÁREAS — alternating editorial rows
   ------------------------------------------------------------- */
.area-row {
    display: grid; grid-template-columns: 140px 1fr; gap: 40px; align-items: center;
    padding: 56px 0; border-top: 1px solid var(--line);
}
.area-row:last-of-type { border-bottom: 1px solid var(--line); }
.area-num {
    font-family: var(--font-display); font-size: 5rem; font-weight: 700;
    color: transparent; -webkit-text-stroke: 1.5px var(--gold); line-height: 1;
}
.area-body { max-width: 720px; }
.area-body .area-ico { color: var(--gold); font-size: 1.6rem; margin-bottom: 14px; }
.area-body h3 { font-size: 2.2rem; margin-bottom: 14px; }
.area-body > p { font-size: 1.1rem; color: var(--gray-text); line-height: 1.8; margin-bottom: 22px; }
.area-chips { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 26px; }
.area-chips span {
    font-size: 0.82rem; font-weight: 500; color: var(--navy-light);
    background: var(--cream); border: 1px solid var(--line);
    padding: 7px 14px; border-radius: 50px;
}

/* CTA band */
.cta-band {
    margin-top: 64px; background: var(--navy-dark); color: #fff;
    border-radius: var(--radius-lg); text-align: center; padding: 64px 40px;
    position: relative; overflow: hidden;
}
.cta-band::after {
    content: ''; position: absolute; bottom: -120px; left: 50%; transform: translateX(-50%);
    width: 480px; height: 240px; background: radial-gradient(circle, rgba(212,175,55,0.18), transparent 70%);
}
.cta-band h3 { font-size: 2.2rem; margin-bottom: 14px; position: relative; }
.cta-band p { color: rgba(255,255,255,0.82); margin-bottom: 28px; font-size: 1.08rem; position: relative; }
.cta-band .btn-whatsapp-small { position: relative; }

/* -------------------------------------------------------------
   10. DIFERENCIAIS — split panel + numbered list
   ------------------------------------------------------------- */
.dif-ed-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 0; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-card); }
.dif-ed-panel {
    background: var(--navy-dark); color: #fff; padding: 60px 50px;
    display: flex; flex-direction: column; justify-content: center;
    position: relative; overflow: hidden;
}
.dif-ed-panel::before {
    content: ''; position: absolute; top: -120px; right: -120px; width: 360px; height: 360px;
    border-radius: 50%; background: radial-gradient(circle, rgba(100,149,237,0.2), transparent 70%);
}
.dif-ed-panel h2 { font-size: 2.6rem; margin: 8px 0 18px; position: relative; }
.dif-ed-panel p { color: rgba(255,255,255,0.8); font-size: 1.05rem; margin-bottom: 30px; position: relative; }
.dif-ed-panel .btn-outline-light { align-self: flex-start; position: relative; }

.dif-ed-list { background: #fff; padding: 20px 50px; }
.dif-ed-list li {
    display: grid; grid-template-columns: 56px 1fr; gap: 18px; align-items: start;
    padding: 26px 0; border-bottom: 1px solid var(--line);
}
.dif-ed-list li:last-child { border-bottom: none; }
.dif-ed-list .d-num {
    font-family: var(--font-display); font-size: 1.5rem; font-weight: 700;
    color: var(--gold); border: 1px solid var(--gold); border-radius: 50%;
    width: 48px; height: 48px; display: flex; align-items: center; justify-content: center;
}
.dif-ed-list h4 { font-size: 1.4rem; margin-bottom: 6px; }
.dif-ed-list p { font-size: 0.98rem; color: var(--gray-text); line-height: 1.6; }

/* -------------------------------------------------------------
   11. PROCESSO — vertical timeline
   ------------------------------------------------------------- */
.proc-timeline { max-width: 760px; margin: 0 auto; position: relative; padding-left: 20px; }
.proc-timeline::before {
    content: ''; position: absolute; left: 43px; top: 20px; bottom: 20px;
    width: 2px; background: linear-gradient(var(--gold), var(--line));
}
.proc-step { display: grid; grid-template-columns: 70px 1fr; gap: 28px; align-items: start; padding: 22px 0; position: relative; }
.proc-dot {
    width: 66px; height: 66px; border-radius: 50%;
    background: var(--cream); border: 2px solid var(--gold);
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-display); font-size: 1.6rem; font-weight: 700; color: var(--navy-dark);
    position: relative; z-index: 1;
}
.proc-step .p-body { padding-top: 8px; }
.proc-step h4 { font-size: 1.6rem; margin-bottom: 8px; }
.proc-step p { color: var(--gray-text); font-size: 1.05rem; line-height: 1.75; }

/* -------------------------------------------------------------
   12. DEPOIMENTOS — light, quote cards
   ------------------------------------------------------------- */
.reviews-ed { background: linear-gradient(180deg, #fff 0%, var(--cream) 100%); }
.reviews-rating {
    display: flex; align-items: center; gap: 14px; margin-top: 22px;
}
.reviews-rating .score { font-family: var(--font-display); font-size: 2.6rem; font-weight: 700; color: var(--navy-dark); }
.reviews-rating .rstars { color: #F4B400; font-size: 1.2rem; }
.reviews-rating .rmeta { font-size: 0.86rem; color: var(--gray-text); }
.reviews-rating .rmeta strong { color: var(--navy-dark); }

.testimonials-slider { padding: 12px 0 56px; }
.review-card {
    background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
    padding: 36px 32px; height: auto; box-shadow: var(--shadow-soft);
    position: relative;
}
.review-card .q-mark {
    font-family: var(--font-display); font-size: 4rem; line-height: 0.6;
    color: var(--gold-light); display: block; margin-bottom: 6px;
}
.review-text { color: var(--navy-dark); font-size: 1.05rem; line-height: 1.7; margin-bottom: 24px; min-height: 92px; }
.review-foot { display: flex; align-items: center; gap: 14px; border-top: 1px solid var(--line); padding-top: 18px; }
.avatar-circle {
    width: 46px; height: 46px; border-radius: 50%;
    background: var(--navy-dark); color: var(--gold);
    display: flex; align-items: center; justify-content: center;
    font-weight: 700; font-size: 1.1rem; flex-shrink: 0;
}
.review-foot .who { flex: 1; }
.review-foot .who strong { display: block; font-size: 0.98rem; color: var(--navy-dark); }
.review-foot .who span { font-size: 0.8rem; color: var(--gray-text); }
.review-foot .who .stars { color: #F4B400; font-size: 0.82rem; margin-top: 2px; }
.google-icon { width: 22px; height: 22px; object-fit: contain; }

.swiper-pagination-bullet-active { background: var(--gold) !important; }
.swiper-button-next, .swiper-button-prev { color: var(--gold) !important; }
.swiper-button-next::after, .swiper-button-prev::after { font-size: 1.4rem !important; font-weight: 700; }

/* -------------------------------------------------------------
   13. FAQ — boxed accordion
   ------------------------------------------------------------- */
.faq-wrapper { max-width: 860px; margin: 0 auto; display: flex; flex-direction: column; gap: 14px; }
.accordion-item { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-md); overflow: hidden; transition: border-color 0.3s, box-shadow 0.3s; }
.accordion-item.active { border-color: var(--gold); box-shadow: var(--shadow-soft); }
.accordion-header {
    width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 20px;
    padding: 24px 28px; background: none; border: none;
    font-family: var(--font-display); font-size: 1.4rem; color: var(--navy-dark);
    cursor: pointer; text-align: left; transition: color 0.3s;
}
.accordion-header:hover { color: var(--gold-soft); }
.accordion-header i { color: var(--gold); transition: transform 0.3s; font-size: 1rem; flex-shrink: 0; }
.accordion-item.active .accordion-header i { transform: rotate(180deg); }
.accordion-body { max-height: 0; overflow: hidden; transition: max-height 0.4s cubic-bezier(0.4,0,0.2,1); }
.accordion-body p { padding: 0 28px 26px; margin: 0; color: var(--gray-text); font-size: 1.02rem; line-height: 1.75; }
.accordion-body a { color: var(--whatsapp-dark); font-weight: 600; }

/* -------------------------------------------------------------
   14. LOCALIZAÇÃO
   ------------------------------------------------------------- */
.localizacao-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 0; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-card); }
.localizacao-endereco { background: var(--navy-dark); color: #fff; padding: 56px 48px; display: flex; flex-direction: column; justify-content: center; }
.localizacao-endereco h3 { font-size: 2rem; margin-bottom: 26px; }
.address-line { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 20px; font-size: 1.02rem; color: rgba(255,255,255,0.88); }
.address-line i { color: var(--gold); font-size: 1.15rem; margin-top: 4px; }
.address-line a:hover { color: var(--gold); }
.localizacao-mapa { min-height: 420px; background: var(--cream); }
.localizacao-mapa iframe { width: 100%; height: 100%; min-height: 420px; border: 0; display: block; }

/* -------------------------------------------------------------
   15. CONTACT FORM
   ------------------------------------------------------------- */
.contact-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 50px; align-items: start; }
.contact-form { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 44px; box-shadow: var(--shadow-soft); }
.form-group { margin-bottom: 22px; }
.form-group label { display: block; font-size: 0.78rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 8px; color: var(--navy-light); }
.form-group input, .form-group select, .form-group textarea {
    width: 100%; padding: 14px 16px; border: 1px solid var(--line); border-radius: var(--radius-md);
    font-family: var(--font-sans); font-size: 1rem; color: var(--navy-dark); background: var(--white-soft);
    transition: border-color 0.3s, box-shadow 0.3s;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(212,175,55,0.15);
}
.form-group textarea { resize: vertical; min-height: 130px; }
.contact-aside { display: flex; flex-direction: column; gap: 18px; }
.contact-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 28px; box-shadow: var(--shadow-soft); display: flex; align-items: center; gap: 18px; }
.contact-card .c-ico { width: 50px; height: 50px; border-radius: 12px; background: rgba(212,175,55,0.16); color: var(--gold-soft); display: flex; align-items: center; justify-content: center; font-size: 1.3rem; flex-shrink: 0; }
.contact-card h4 { font-size: 1.2rem; margin-bottom: 4px; }
.contact-card p, .contact-card a { color: var(--gray-text); font-size: 0.98rem; }
.contact-card a:hover { color: var(--gold-soft); }

/* -------------------------------------------------------------
   16. PAGE HERO (internal pages)
   ------------------------------------------------------------- */
.page-hero { background: var(--navy-dark); color: #fff; padding: 165px 0 84px; position: relative; overflow: hidden; }
.page-hero::before { content: ''; position: absolute; width: 620px; height: 620px; border-radius: 50%; background: radial-gradient(circle, rgba(100,149,237,0.18) 0%, transparent 70%); filter: blur(60px); top: -280px; right: -180px; }
.page-hero .breadcrumb { display: flex; gap: 10px; margin-bottom: 22px; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 1.5px; color: rgba(255,255,255,0.6); position: relative; z-index: 1; }
.page-hero .breadcrumb a:hover { color: var(--gold); }
.page-hero .breadcrumb span.sep { color: var(--gold); }
.page-hero .overline { margin-bottom: 14px; }
.page-hero h1 { font-size: 3.4rem; margin-bottom: 16px; position: relative; z-index: 1; }
.page-hero p { font-size: 1.18rem; max-width: 680px; opacity: 0.9; position: relative; z-index: 1; }

/* Prose */
.prose { max-width: 820px; }
.prose h2 { font-size: 2.1rem; margin: 40px 0 16px; }
.prose h3 { font-size: 1.5rem; margin: 28px 0 12px; color: var(--navy-light); }
.prose p { font-size: 1.1rem; color: var(--gray-text); line-height: 1.85; margin-bottom: 20px; }
.prose ul { margin: 0 0 24px; }
.prose ul li { position: relative; padding-left: 28px; margin-bottom: 12px; font-size: 1.06rem; color: var(--gray-text); line-height: 1.6; }
.prose ul li::before { content: '\f0da'; font-family: 'Font Awesome 6 Free'; font-weight: 900; position: absolute; left: 4px; top: 2px; color: var(--gold); }

/* Topic cards (área pages) */
.topic-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; margin: 44px 0; }
.topic-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 32px; box-shadow: var(--shadow-soft); transition: transform 0.3s, box-shadow 0.3s; }
.topic-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-card); }
.topic-card .t-ico { width: 54px; height: 54px; border-radius: 14px; background: rgba(212,175,55,0.16); color: var(--gold-soft); display: flex; align-items: center; justify-content: center; font-size: 1.4rem; margin-bottom: 18px; }
.topic-card h3 { font-size: 1.4rem; margin-bottom: 10px; }
.topic-card p { color: var(--gray-text); font-size: 1rem; line-height: 1.65; }

/* -------------------------------------------------------------
   17. BLOG
   ------------------------------------------------------------- */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.blog-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-soft); transition: transform 0.3s, box-shadow 0.3s; display: flex; flex-direction: column; }
.blog-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-card); }
.blog-card .thumb { height: 180px; background: linear-gradient(135deg, var(--navy-light), var(--navy-dark)); display: flex; align-items: center; justify-content: center; color: var(--gold); font-size: 2.2rem; }
.blog-card .blog-body { padding: 28px; display: flex; flex-direction: column; flex: 1; }
.blog-card .tag { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 1.5px; font-weight: 700; color: var(--gold-soft); margin-bottom: 12px; }
.blog-card h3 { font-size: 1.35rem; margin-bottom: 12px; }
.blog-card p { color: var(--gray-text); font-size: 0.96rem; line-height: 1.6; margin-bottom: 18px; flex: 1; }
.blog-card .btn-link { font-size: 0.88rem; align-self: flex-start; }
.blog-empty { text-align: center; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 70px 40px; box-shadow: var(--shadow-soft); margin-top: 36px; }
.blog-empty i { font-size: 2.6rem; color: var(--gold); margin-bottom: 18px; }
.blog-empty h3 { font-size: 1.7rem; margin-bottom: 12px; }
.blog-empty p { color: var(--gray-text); max-width: 520px; margin: 0 auto 26px; }

/* -------------------------------------------------------------
   18. FOOTER
   ------------------------------------------------------------- */
.main-footer { background: var(--navy-dark); color: #fff; padding: 84px 0 28px; border-top: 4px solid var(--gold); }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 56px; margin-bottom: 56px; }
.footer-brand img { height: 84px; margin-bottom: 22px; }
.footer-brand p { font-size: 1rem; margin-bottom: 8px; color: rgba(255,255,255,0.82); max-width: 320px; }
.footer-brand .oab-tag { color: var(--gold); font-weight: 600; letter-spacing: 1px; }
.footer-col h4 { color: #fff; font-size: 1.2rem; margin-bottom: 22px; padding-bottom: 10px; border-bottom: 1px solid rgba(255,255,255,0.12); display: inline-block; }
.footer-col a { color: rgba(255,255,255,0.82); display: block; margin-bottom: 12px; font-size: 0.98rem; }
.footer-col a:hover { color: var(--gold); }
.contact-link { display: flex; align-items: center; gap: 14px; margin-bottom: 16px; color: rgba(255,255,255,0.88); font-size: 0.98rem; }
.contact-link i { color: var(--gold); width: 20px; }
.contact-link:hover { color: var(--gold); }
.footer-copy { text-align: center; border-top: 1px solid rgba(255,255,255,0.1); padding-top: 26px; opacity: 0.6; font-size: 0.88rem; font-weight: 300; }
.footer-copy a { color: var(--gold); }

/* -------------------------------------------------------------
   19. FLOATING WHATSAPP
   ------------------------------------------------------------- */
.floating-whatsapp { position: fixed; bottom: 28px; right: 28px; width: 60px; height: 60px; background: var(--whatsapp-green); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #fff; box-shadow: 0 8px 24px rgba(37,211,102,0.55); z-index: 999; animation: pulse 2.4s infinite; transition: transform 0.3s; }
.floating-whatsapp:hover { transform: scale(1.1); }
.floating-whatsapp i { font-size: 2rem; }

/* -------------------------------------------------------------
   20. RESPONSIVE
   ------------------------------------------------------------- */
@media (max-width: 1024px) {
    :root { --section-pad: 84px; }
    .section-title { font-size: 2.6rem; }
    .hero-ed-grid { grid-template-columns: 1fr; gap: 44px; text-align: center; padding-bottom: 50px; }
    .hero-ed-title { font-size: 3.2rem; }
    .hero-ed-lead { margin-left: auto; margin-right: auto; }
    .hero-ed-actions { justify-content: center; }
    .hero-ed-photo { max-width: 360px; }
    .hero-stats { grid-template-columns: repeat(2, 1fr); }
    .hero-stat:nth-child(2) { border-right: none; }
    .hero-stat:nth-child(1), .hero-stat:nth-child(2) { border-bottom: 1px solid var(--line); }
    .about-ed-grid { grid-template-columns: 1fr; gap: 36px; }
    .about-ed-side { position: static; }
    .dif-ed-grid { grid-template-columns: 1fr; }
    .localizacao-grid { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    .blog-grid { grid-template-columns: 1fr 1fr; }

    .nav-menu {
        display: none; flex-direction: column; position: fixed; inset: 0; height: 100vh;
        background: linear-gradient(135deg, var(--navy-dark) 0%, rgba(10,17,40,0.98) 100%);
        padding: 100px 30px 30px; z-index: 1000; text-align: center; align-items: center; gap: 0; overflow-y: auto;
    }
    .nav-menu.active { display: flex; }
    .nav-menu.active li { border-bottom: 1px solid rgba(212,175,55,0.2); padding: 20px 0; width: 100%; }
    .nav-menu.active > li > a { color: #fff; font-size: 1.2rem; letter-spacing: 2px; }
    .menu-toggle { display: flex; }
    .menu-toggle.active .bar:nth-child(1) { transform: rotate(45deg) translate(6px, 6px); }
    .menu-toggle.active .bar:nth-child(2) { opacity: 0; }
    .menu-toggle.active .bar:nth-child(3) { transform: rotate(-45deg) translate(6px, -6px); }
}

@media (max-width: 768px) {
    .section-title { font-size: 2.3rem; }
    .section-head { margin-bottom: 44px; }
    .hero-ed-title { font-size: 2.6rem; }
    .area-row { grid-template-columns: 1fr; gap: 16px; padding: 40px 0; text-align: left; }
    .area-num { font-size: 3.4rem; }
    .dif-ed-panel { padding: 44px 32px; }
    .dif-ed-list { padding: 10px 32px; }
    .about-ed-text .lead-quote { font-size: 1.6rem; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
    .contact-form, .localizacao-endereco { padding: 32px; }
    .page-hero h1 { font-size: 2.5rem; }
    .topic-grid { grid-template-columns: 1fr; }
    .blog-grid { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
    body { font-size: 15px; }
    .container { padding: 0 18px; }
    .section-title { font-size: 2rem; }
    .hero-ed { padding-top: 140px; }
    .hero-ed-title { font-size: 2.2rem; }
    .hero-ed-actions { flex-direction: column; gap: 16px; width: 100%; }
    .hero-ed-actions .btn-whatsapp-hero { width: 100%; justify-content: center; }
    .hero-stats { grid-template-columns: 1fr; }
    .hero-stat { border-right: none !important; border-bottom: 1px solid var(--line); }
    .hero-stat:last-child { border-bottom: none; }
    .btn-whatsapp-nav { display: none; }
    .dif-ed-list li { grid-template-columns: 44px 1fr; gap: 14px; }
    .dif-ed-list .d-num { width: 40px; height: 40px; font-size: 1.2rem; }
    .proc-timeline { padding-left: 0; }
    .proc-timeline::before { left: 32px; }
    .proc-step { grid-template-columns: 52px 1fr; gap: 18px; }
    .proc-dot { width: 52px; height: 52px; font-size: 1.3rem; }
    .footer-grid { grid-template-columns: 1fr; gap: 26px; text-align: center; }
    .footer-brand { display: flex; flex-direction: column; align-items: center; }
    .contact-link { justify-content: center; }
    .accordion-header { font-size: 1.15rem; padding: 18px 20px; }
    .accordion-body p { padding: 0 20px 20px; }
    .page-hero h1 { font-size: 2.1rem; }
    .floating-whatsapp { width: 54px; height: 54px; }
    .floating-whatsapp i { font-size: 1.7rem; }
}
