/* =========================================================
   Daniel Silas Advocacia | Landing Page
   Identidade: Navy #192D4C · Dourado #AF946A · Branco #FFFFFF
   ========================================================= */

:root{
  --navy: #192D4C;
  --navy-deep: #0F1B2E;
  --navy-soft: #24395C;
  --gold: #AF946A;
  --gold-light: #C7A876;
  --cream: #F5F3EF;
  --white: #FFFFFF;
  --ink: #1B2333;
  --ink-soft: #4A5266;
  --line-dark: rgba(255,255,255,0.18);
  --line-light: rgba(25,45,76,0.18);

  --font-serif: 'Playfair Display', 'Georgia', serif;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  --container: 1180px;
  --radius: 10px;
  --shadow-soft: 0 20px 60px -20px rgba(15,27,46,0.35);
  --ease: cubic-bezier(.19,1,.22,1);
}

*, *::before, *::after{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible, select:focus-visible, [tabindex]:focus-visible{
  outline: 2px solid var(--gold); outline-offset: 3px; border-radius: 2px;
}
body{
  margin:0;
  font-family: var(--font-sans);
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
}
img{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }
ul, ol{ list-style:none; margin:0; padding:0; }
h1,h2,h3,h4{ font-family: var(--font-serif); font-weight:600; line-height:1.15; margin:0; }
em{ font-style: italic; color: var(--gold); font-weight:700; }
p{ margin:0; }
button{ font-family: inherit; cursor:pointer; }

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

.skip-link{
  position:absolute; left:-9999px; top:0;
  background:var(--gold); color:var(--navy-deep); padding:12px 18px; z-index:999;
  font-weight:600;
}
.skip-link:focus{ left:12px; top:12px; }

/* ---------- Buttons ---------- */
.btn{
  display:inline-flex; align-items:center; gap:8px;
  padding: 13px 26px;
  border-radius: 8px;
  font-size: 14px; font-weight:700; letter-spacing:.02em;
  border: 1.5px solid transparent;
  transition: transform .35s var(--ease), background .3s ease, color .3s ease, border-color .3s ease, box-shadow .3s ease;
  white-space: nowrap;
}
.btn:hover{ transform: translateY(-2px); }
.btn span{ transition: transform .3s var(--ease); }
.btn:hover span{ transform: translateX(3px); }

.btn-gold{ background: var(--gold); color: var(--navy-deep); box-shadow: 0 10px 30px -10px rgba(175,148,106,.6); }
.btn-gold:hover{ background: var(--gold-light); }

.btn-outline-navy{ border-color: rgba(25,45,76,.55); color: var(--navy); background: transparent; }
.btn-outline-navy:hover{ border-color: var(--navy); background: rgba(25,45,76,.06); }

.btn-outline-gold{ border-color: rgba(175,148,106,.7); color: var(--gold); background: transparent; }
.btn-outline-gold:hover{ background: rgba(175,148,106,.14); }

.btn-ghost-gold{ background: rgba(175,148,106,.18); color: var(--gold-light); }
.btn-ghost-gold:hover{ background: rgba(175,148,106,.28); }

.btn-link{ padding: 13px 4px; color: var(--navy); border-bottom: 1px solid rgba(25,45,76,.3); border-radius:0; }
.btn-link:hover{ border-color: var(--navy); }

.btn-block{ width:100%; justify-content:center; }

/* ---------- Scroll progress ---------- */
.scroll-progress{
  position: fixed; top: 0; left: 0; right: 0; height: 3px; z-index: 600;
  background: linear-gradient(90deg, var(--gold) 0%, var(--gold-light) 100%);
  transform-origin: 0 50%;
  transform: scaleX(0);
  will-change: transform;
}
@media (prefers-reduced-motion: reduce){
  .scroll-progress{ transition: none; }
}

/* ---------- Header ---------- */
.site-header{
  position: fixed; inset: 0 0 auto 0; z-index: 500;
  padding: 18px 0;
  transition: background .4s var(--ease), padding .4s var(--ease), box-shadow .4s var(--ease), backdrop-filter .4s ease;
}
.site-header.scrolled{
  background: rgba(245,243,239,.9);
  backdrop-filter: blur(14px) saturate(1.2);
  -webkit-backdrop-filter: blur(14px) saturate(1.2);
  padding: 10px 0;
  box-shadow: 0 8px 30px -18px rgba(25,45,76,.3);
}
.site-header.on-dark:not(.scrolled) .nav-link{ color: rgba(255,255,255,.82); }
.site-header.on-dark:not(.scrolled) .nav-link:hover,
.site-header.on-dark:not(.scrolled) .nav-link.active{ color: var(--white); }

.site-header.scrolled .btn-ghost-gold{ background: rgba(25,45,76,.07); color: var(--navy); }
.site-header.scrolled .btn-ghost-gold:hover{ background: rgba(25,45,76,.13); }
.site-header.scrolled .btn-outline-gold{ border-color: rgba(25,45,76,.28); color: var(--navy); }
.site-header.scrolled .btn-outline-gold:hover{ border-color: var(--gold); background: rgba(175,148,106,.12); color: var(--gold); }

.header-inner{
  display:flex; align-items:center; justify-content:space-between; gap: 18px;
  max-width: 1360px; margin: 0 auto; padding: 0 12px;
}
.brand-logo{ height: 40px; width:auto; transition: height .4s var(--ease), opacity .25s ease; }
.scrolled .brand-logo{ height: 34px; }

.main-nav ul{ display:flex; gap: 24px; }
.nav-link{
  font-size: 13px; font-weight:600; letter-spacing:.02em; text-transform:uppercase;
  color: var(--navy); padding: 6px 0; position:relative; white-space:nowrap;
  transition: color .3s ease;
}
.nav-link::after{
  content:''; position:absolute; left:0; right:100%; bottom:-4px; height:2px; background: var(--gold);
  transition: right .35s var(--ease);
}
.nav-link:hover::after, .nav-link.active::after{ right:0; }
.nav-link.active{ color: var(--gold); }

.header-actions{ display:flex; align-items:center; gap:10px; }
.header-actions .btn{ padding: 10px 20px; font-size: 12.5px; }

.nav-toggle{
  display:none; flex-direction:column; justify-content:center; gap:5px;
  width: 38px; height: 38px; background:none; border:none; padding:0;
}
.nav-toggle span{ width: 100%; height: 2px; background: var(--navy); transition: transform .3s ease, opacity .3s ease; }
.site-header.on-dark:not(.scrolled) .nav-toggle span{ background: var(--white); }

/* ---------- Sections ---------- */
.section{ padding: 84px 0; position: relative; }
.section-light{ background: var(--white); }
.section-cream{
  background:
    radial-gradient(rgba(25,45,76,.05) 1px, transparent 1px) 0 0 / 28px 28px,
    var(--cream);
}
.section-navy{ background: var(--navy); color: rgba(255,255,255,.86); }
.section-navy h2, .section-navy h3, .section-navy h4{ color: var(--white); }

.section::before{
  content:''; position:absolute; top:0; left:50%; transform:translateX(-50%);
  width:140px; height:3px;
  background: linear-gradient(90deg, transparent, var(--gold) 50%, transparent);
  opacity:.75;
}

.eyebrow{
  display:inline-flex; align-items:center; gap: 10px;
  font-size: 12.5px; font-weight:700; letter-spacing:.18em; text-transform:uppercase;
  color: var(--gold-light); margin-bottom: 18px;
}
.eyebrow::before{ content:''; width: 22px; height: 1px; background: currentColor; opacity:.6; }
.eyebrow-dark{ color: var(--gold); }

.section-head{ max-width: 640px; margin-bottom: 46px; }
.section-head h2{ font-size: clamp(30px, 4vw, 44px); font-weight:700; margin-bottom: 18px; }
.section-head p{ color: var(--ink-soft); font-size: 17px; }
.section-navy .section-head p{ color: rgba(255,255,255,.68); }

/* ---------- Hero ---------- */
.hero{
  position: relative; overflow:hidden;
  min-height: 100vh;
  display:flex; align-items:center;
  padding: 140px 0 80px;
  background: radial-gradient(120% 120% at 15% 0%, var(--navy-soft) 0%, var(--navy) 45%, var(--navy-deep) 100%);
  color: var(--white);
}
.hero-bg{ position:absolute; inset:0; z-index:0; }
.hero-grid{
  position:absolute; inset:0;
  background-image:
    linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(80% 70% at 50% 30%, black, transparent);
}
.hero-glow{
  position:absolute; width: 700px; height: 700px; right: -200px; top: -200px;
  background: radial-gradient(circle, rgba(175,148,106,.28), transparent 70%);
  filter: blur(10px);
}
.hero-watermark{
  position:absolute; right: 4%; bottom: -8%; width: 420px; opacity:.06;
  pointer-events:none;
}
.hero-vignette{
  position:absolute; inset:0; pointer-events:none;
  background: radial-gradient(55% 65% at 82% 60%, rgba(4,8,16,.6), transparent 70%);
}

.hero-inner{
  position: relative; z-index: 1;
  display:grid; grid-template-columns: 1.15fr .85fr; gap: 60px; align-items:center;
}
.hero-title{
  font-size: clamp(38px, 5.2vw, 62px);
  font-weight: 700;
  letter-spacing: -.01em;
  margin-bottom: 24px;
}
.hero-lead{
  font-size: 18px; color: rgba(255,255,255,.72); max-width: 540px; margin-bottom: 36px;
}
.hero-cta{ display:flex; flex-direction:column; align-items:flex-start; gap: 36px; margin-bottom: 56px; }
.hero-cta-links{ display:flex; align-items:center; gap: 22px; flex-wrap:wrap; }
.hero-cta .btn-link{ color: rgba(255,255,255,.85); border-color: rgba(255,255,255,.3); }
.hero-cta .btn-link:hover{ border-color: var(--white); color: var(--white); }

.hero-stats{
  grid-column: 1 / -1;
  display:grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px 32px;
  margin:0; padding-top: 28px; border-top: 1px solid var(--line-dark);
}
.hero-stats .stat{ min-width: 0; }
.hero-stats .stat dt{
  font-size: 11px; letter-spacing:.12em; text-transform:uppercase; color: rgba(255,255,255,.5); margin-bottom:6px;
}
.hero-stats .stat dd{ margin:0; font-family: var(--font-serif); font-size: 19px; line-height:1.3; color: var(--gold-light); }

.hero-portrait{
  position:relative; align-self:stretch;
  display:flex; align-items:flex-end; justify-content:center;
  min-height: 460px;
}
.portrait-rings{ position:absolute; inset:0; z-index:0; pointer-events:none; transition: transform .4s ease-out; }
.ring{
  position:absolute; border:1px solid rgba(175,148,106,.28); border-radius:50%;
  animation: ringPulse 7s ease-in-out infinite;
}
.ring-1{ width: 360px; height: 360px; top: 4%; right: 6%; }
.ring-2{ width: 220px; height: 220px; bottom: 12%; left: -4%; border-color: rgba(255,255,255,.12); animation-delay: 1.2s; }

.p-dot{
  position:absolute; width: 9px; height: 9px; border-radius:50%; background: var(--gold);
  box-shadow: 0 0 16px 2px rgba(175,148,106,.55);
  animation: particleFloat 5.5s ease-in-out infinite;
}
.p-dot-1{ top: 10%; right: 30%; animation-delay: 0s; }
.p-dot-2{ top: 42%; left: 2%; width:6px; height:6px; animation-delay: 1.1s; }
.p-dot-3{ bottom: 30%; right: 2%; animation-delay: 2.2s; }
.p-dot-4{ top: 22%; left: 22%; width: 5px; height: 5px; background: var(--white); box-shadow: 0 0 12px 2px rgba(255,255,255,.5); animation-delay: 3.1s; }
.p-dot-5{ bottom: 12%; right: 38%; width: 7px; height: 7px; animation-delay: 1.8s; }
.p-dot-6{ top: 62%; right: 12%; width: 5px; height: 5px; background: var(--white); box-shadow: 0 0 12px 2px rgba(255,255,255,.5); animation-delay: 4s; }

@keyframes particleFloat{
  0%, 100%{ transform: translate(0, 0); opacity: .55; }
  50%{ transform: translate(6px, -16px); opacity: 1; }
}
@keyframes ringPulse{
  0%, 100%{ transform: scale(1); opacity: .7; }
  50%{ transform: scale(1.04); opacity: 1; }
}

.portrait-photo{
  position:relative; z-index:2;
  width: 100%; max-width: 380px; height:auto; display:block;
  filter: drop-shadow(0 30px 55px rgba(0,0,0,.5));
}
.portrait-badge{
  position:absolute; z-index:3; left: 6%; bottom: 4%;
  background: rgba(15,27,46,.55); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,.16); border-radius: 12px;
  padding: 14px 22px;
  box-shadow: var(--shadow-soft);
}
.portrait-badge strong{ display:block; font-family: var(--font-serif); font-size: 18px; color: var(--white); }
.portrait-badge span{ font-size: 11.5px; letter-spacing:.08em; text-transform:uppercase; color: var(--gold-light); }

/* ---------- Áreas de atuação ---------- */
.areas-grid{
  display:grid; grid-template-columns: repeat(2, 1fr); gap: 26px;
}
.area-card{
  background: var(--white);
  border: 1px solid var(--line-light);
  border-radius: var(--radius);
  padding: 30px 26px;
  display:flex; flex-direction:column;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s ease;
}
.area-card .area-matters{ flex-grow:1; }
.area-card .card-link{ margin-top:auto; }
.area-card:hover{ transform: translateY(-8px); box-shadow: var(--shadow-soft); border-color: rgba(175,148,106,.4); }
.area-icon{
  width: 64px; height: 64px; border-radius: 50%;
  background: var(--navy); color: var(--gold-light);
  display:flex; align-items:center; justify-content:center; margin-bottom: 20px;
  transition: transform .4s var(--ease), background .4s ease, color .4s ease;
}
.area-icon svg{ width: 30px; height:30px; }
.area-card:hover .area-icon,
.specialty-card:hover .area-icon{
  transform: scale(1.08) rotate(-6deg);
  background: var(--gold); color: var(--white);
}
.area-card h3{ font-size: 19px; margin-bottom: 14px; color: var(--navy); transition: color .3s ease; }
.area-card:hover h3{ color: var(--gold); }
.area-matters{ display:flex; flex-direction:column; gap: 14px; }
.matter-name{ display:block; font-weight:700; font-size: 14.5px; color: var(--navy); margin-bottom:4px; }
.matter-desc{ display:block; font-size: 14.5px; color: var(--ink-soft); line-height:1.55; }

.card-link{
  display:inline-flex; align-items:center; gap:6px;
  margin-top: 20px; font-size: 14px; font-weight:700; color: var(--gold);
  border-top: 1px solid var(--line-light); padding-top: 16px; width:100%;
}
.card-link span{ transition: transform .3s var(--ease); display:inline-block; }
.card-link:hover span{ transform: translateX(4px); }

/* ---------- Especialidades ---------- */
.specialty-grid{
  display:grid; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); gap: 22px;
}
/* Sobre: cards sem rodapé fixo, então não travamos a altura de todos pelo mais alto */
#sobre .specialty-grid{ align-items: start; }
.specialty-card{
  background: var(--white);
  border: 1px solid var(--line-light);
  border-radius: var(--radius);
  padding: 30px 26px;
  display:flex; flex-direction:column;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s ease;
}
.specialty-card:hover{ transform: translateY(-6px); box-shadow: var(--shadow-soft); border-color: rgba(175,148,106,.4); }
.specialty-card .area-icon{ width: 64px; height: 64px; margin-bottom: 20px; }
.specialty-card .area-icon svg{ width: 30px; height: 30px; }
.specialty-card h3{ font-size: 19px; color: var(--navy); font-family: var(--font-serif); font-weight:600; transition: color .3s ease; }
.specialty-card:hover h3{ color: var(--gold); }
.specialty-card p{ margin-top: 10px; font-size: 15px; color: var(--ink-soft); line-height:1.6; flex-grow:1; }
.specialty-card .card-link{ margin-top:auto; padding-top:18px; }
.specialty-list{ margin-top: 12px; display:flex; flex-direction:column; gap: 7px; flex-grow:1; }
.specialty-list li{
  font-size: 14.5px; color: var(--ink-soft); padding-left: 16px; position:relative; line-height:1.5;
}
.specialty-list li::before{ content:''; position:absolute; left:0; top:7px; width:5px; height:5px; border-radius:50%; background: var(--gold); }

/* ---------- Demais áreas de atuação ---------- */
.section-compact{ padding: 52px 0; }
.section-compact .section-head{ margin-bottom: 30px; }
.tag-row{ display:flex; flex-wrap:wrap; gap: 14px; }
.tag-row li{
  padding: 14px 28px; border-radius: 8px;
  border: 1.5px solid rgba(25,45,76,.22);
  font-family: var(--font-serif); font-size: 17px; color: var(--navy);
  background: var(--white);
  transition: transform .35s var(--ease), border-color .3s ease, background .3s ease, color .3s ease;
}
.tag-row li:hover{ transform: translateY(-3px); border-color: var(--gold); background: var(--navy); color: var(--white); }

/* ---------- Notícias ---------- */
.news-grid{ display:grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.news-card{
  background: rgba(255,255,255,.04);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  overflow:hidden;
  display:flex; flex-direction:column;
  transition: transform .4s var(--ease), background .4s ease, border-color .4s ease;
}
.news-card:hover{ transform: translateY(-6px); background: rgba(255,255,255,.07); border-color: rgba(175,148,106,.4); }

.news-thumb{
  position:relative; aspect-ratio: 16 / 10; width:100%; overflow:hidden;
  background: linear-gradient(135deg, var(--navy-soft), var(--navy-deep));
}
.news-thumb::before{
  content:'';
  position:absolute; inset:0;
  background-image:
    linear-gradient(rgba(255,255,255,.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.06) 1px, transparent 1px);
  background-size: 22px 22px;
}
.news-thumb img{
  width:100%; height:100%; object-fit:cover; position:relative; z-index:1;
}
.news-thumb-mark{
  position:absolute; top:50%; left:50%; width: 72px; height:auto; z-index:1;
  transform: translate(-50%,-50%); opacity:.4;
  transition: transform .6s var(--ease);
}
.news-card:hover .news-thumb-mark{ transform: translate(-50%,-50%) scale(1.1); }

.news-body{ padding: 26px 28px 30px; display:flex; flex-direction:column; gap: 12px; flex-grow:1; }
.news-tag{
  align-self:flex-start; font-size: 11px; font-weight:700; letter-spacing:.08em; text-transform:uppercase;
  color: var(--gold-light); background: rgba(175,148,106,.18); padding: 5px 12px; border-radius: 6px;
}
.news-date{ font-size: 12.5px; color: rgba(255,255,255,.5); }
.news-card h3{ font-size: 20px; color: var(--white); }
.news-card p{ font-size: 15px; color: rgba(255,255,255,.65); flex-grow:1; }
.news-link{ font-size: 14px; font-weight:700; color: var(--gold-light); }
.news-link span{ transition: transform .3s var(--ease); display:inline-block; }
.news-link:hover span{ transform: translateX(4px); }

.news-grid-footer{ display:flex; justify-content:center; margin-top: 44px; }

/* ---------- Página "Todas as notícias" ---------- */
.page-intro{ padding-top: 160px; }
.page-back-link{
  display:inline-flex; align-items:center; gap:8px; font-size:13px; font-weight:600;
  color: rgba(255,255,255,.6); margin-bottom: 22px; transition: color .3s ease;
}
.page-back-link:hover{ color: var(--gold-light); }

.pagination{ display:flex; flex-wrap:wrap; align-items:center; justify-content:center; gap:10px; margin-top: 56px; }
.page-btn{
  min-width: 40px; height: 40px; padding: 0 14px;
  display:inline-flex; align-items:center; justify-content:center;
  border: 1.5px solid rgba(255,255,255,.18); border-radius: 8px;
  background: transparent; color: rgba(255,255,255,.75);
  font-size: 13.5px; font-weight:600; font-family: var(--font-sans); cursor:pointer;
  transition: border-color .3s ease, color .3s ease, background .3s ease;
}
.page-btn:hover:not(:disabled){ border-color: var(--gold); color: var(--gold-light); }
.page-btn.active{ background: var(--gold); border-color: var(--gold); color: var(--navy-deep); }
.page-btn:disabled{ opacity:.35; cursor:not-allowed; }

/* ---------- Assessoria continuada ---------- */
.timeline{
  display:grid; grid-template-columns: repeat(3,1fr); gap: 26px;
  margin: 0 0 64px; padding: 0; counter-reset: step;
}
.timeline li{
  position:relative; padding: 26px 24px 24px; border: 1px solid var(--line-light); border-radius: var(--radius);
  background: var(--white);
}
.timeline-when{
  display:inline-block; font-size: 11.5px; font-weight:700; letter-spacing:.1em; text-transform:uppercase;
  color: var(--gold); background: rgba(175,148,106,.16); padding: 5px 12px; border-radius: 6px; margin-bottom: 14px;
}
.timeline h4{ font-size: 20px; color: var(--navy); margin-bottom: 8px; }
.timeline p{ font-size: 15px; color: var(--ink-soft); }

.plan-toggle{
  display:inline-flex; padding: 5px; border-radius: 8px; background: rgba(25,45,76,.08);
  margin-bottom: 40px; gap: 4px;
}
.toggle-btn{
  border:none; background:none; padding: 11px 26px; border-radius: 6px;
  font-size: 13.5px; font-weight:700; color: var(--ink-soft);
  transition: background .3s ease, color .3s ease;
}
.toggle-btn.active{ background: var(--navy); color: var(--white); }

.plans-grid{ display:grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.plans-grid[hidden]{ display:none; }
.plan-card{
  position:relative;
  background: var(--white); border: 1px solid var(--line-light); border-radius: var(--radius);
  padding: 36px 30px; display:flex; flex-direction:column; gap: 20px;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.plan-card:hover{ transform: translateY(-6px); box-shadow: var(--shadow-soft); }
.plan-featured{ border-color: var(--gold); box-shadow: 0 20px 50px -25px rgba(175,148,106,.5); }
.plan-badge{
  position:absolute; top: -14px; left: 30px;
  background: var(--gold); color: var(--navy-deep); font-size: 11px; font-weight:700;
  letter-spacing:.06em; text-transform:uppercase; padding: 6px 14px; border-radius: 6px;
}
.plan-card h3{ font-size: 24px; color: var(--navy); }
.plan-tagline{ font-size: 15px; color: var(--ink-soft); margin-top:-10px; }
.plan-highlights{ display:flex; flex-direction:column; gap: 10px; flex-grow:1; }
.plan-highlights li{
  font-size: 15px; color: var(--ink); padding-left: 22px; position:relative;
}
.plan-highlights li::before{
  content:''; position:absolute; left:0; top:7px; width:9px; height:9px;
  border: 1.5px solid var(--gold); border-radius:2px; transform: rotate(45deg);
}
.plans-footnote{ font-size: 12.5px; color: var(--ink-soft); margin-top: 22px; }

.conditions{
  margin-top: 70px; padding-top: 46px; border-top: 1px solid var(--line-light);
  display:grid; grid-template-columns: 240px 1fr; gap: 30px; align-items:start;
}
.conditions h4{ font-size: 19px; color: var(--navy); }
.conditions ul{ display:grid; grid-template-columns: repeat(2, 1fr); gap: 12px 30px; }
.conditions li{ font-size: 15px; color: var(--ink-soft); padding-left: 18px; position:relative; }
.conditions li::before{ content:'—'; position:absolute; left:0; color: var(--gold); }

/* ---------- Eventos & Blog ---------- */
.split-grid{ display:grid; grid-template-columns: 1fr 1fr; gap: 70px; }
.col-title{ font-size: 22px; color: var(--navy); margin-bottom: 30px; }

.event-list{ display:flex; flex-direction:column; gap: 26px; }
.event-item{ display:flex; gap: 20px; align-items:flex-start; }
.event-date{
  flex-shrink:0; width: 62px; height:62px; border-radius: 12px; background: var(--navy);
  color: var(--white); display:flex; flex-direction:column; align-items:center; justify-content:center;
  font-size: 11px; font-weight:700; letter-spacing:.06em;
}
.event-date span{ font-family: var(--font-serif); font-size: 22px; line-height:1; margin-bottom:2px; }
.event-body h4{ font-size: 17.5px; color: var(--navy); margin-bottom:6px; }
.event-body p{ font-size: 14.5px; color: var(--ink-soft); }

.blog-list{ display:flex; flex-direction:column; }
.blog-item a{
  display:flex; justify-content:space-between; align-items:center; gap: 20px;
  padding: 18px 0; border-bottom: 1px solid var(--line-light);
  transition: padding-left .3s var(--ease), color .3s ease;
}
.blog-item a:hover{ padding-left: 10px; color: var(--gold); }
.blog-item-title{ font-size: 16px; font-weight:600; color: var(--navy); }
.blog-item a:hover .blog-item-title{ color: var(--gold); }
.blog-item-date{ font-size: 12px; color: var(--ink-soft); white-space:nowrap; }

/* ---------- Contato ---------- */
.contact-grid{ display:grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items:start; }
.contact-copy h2{ margin-bottom: 16px; }
.contact-list{ margin: 34px 0; display:flex; flex-direction:column; gap: 18px; }
.contact-list li{ display:flex; gap: 18px; align-items:baseline; font-size: 16.5px; }
.contact-label{
  width: 110px; flex-shrink:0; font-size: 11px; letter-spacing:.1em; text-transform:uppercase; color: rgba(255,255,255,.45);
}
.contact-list a{ color: var(--gold-light); font-weight:600; transition: color .3s ease; }
.contact-list a:hover{ color: var(--white); }
.contact-list li span{ line-height:1.5; }
.map-link{
  display:inline-block; margin-left: 8px; font-size: 12.5px; font-weight:700;
  color: var(--gold); text-decoration: underline; text-underline-offset: 3px; white-space:nowrap;
}
.map-link:hover{ color: var(--white); }
.contact-logo{ height: 64px; width:auto; opacity:.95; margin: 32px auto 36px; display:block; }

.contact-form{
  background: rgba(255,255,255,.04);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  padding: 40px;
  display:flex; flex-direction:column; gap: 20px;
}
.form-row label{ display:block; font-size: 12.5px; font-weight:600; letter-spacing:.04em; text-transform:uppercase; color: rgba(255,255,255,.6); margin-bottom:8px; }
.form-row input, .form-row select, .form-row textarea{
  width:100%; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.16);
  border-radius: 10px; padding: 13px 16px; color: var(--white); font-family: inherit; font-size: 15.5px;
  transition: border-color .3s ease, background .3s ease;
}
.form-row select option{ color: var(--ink); }
.form-row input:focus, .form-row select:focus, .form-row textarea:focus{
  outline:none; border-color: var(--gold); background: rgba(255,255,255,.09);
}
.form-row-split{ display:grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-note{ font-size: 12.5px; color: rgba(255,255,255,.45); text-align:center; }

/* ---------- Footer ---------- */
.site-footer{ background: var(--navy-deep); color: rgba(255,255,255,.6); padding: 56px 0 30px; }
.footer-inner{
  display:grid; grid-template-columns: repeat(3, 1fr); gap: 40px; align-items:start;
  padding-bottom: 34px; border-bottom: 1px solid var(--line-dark);
}
.footer-brand{ max-width: none; text-align:left; }
.footer-brand p{ font-size: 13px; line-height:1.5; }
.footer-brand p + p{ margin-top: 8px; opacity:.75; }
.footer-nav{ display:flex; flex-wrap:wrap; gap: 16px 26px; justify-content:center; align-self:center; }
.footer-nav a{ font-size: 13.5px; transition: color .3s ease; }
.footer-nav a:hover{ color: var(--gold-light); }
.footer-legal{ font-size: 12px; text-align:right; display:flex; flex-direction:column; gap:6px; justify-self:end; }
.site-footer .footer-legal p{ opacity:.7; }

/* ---------- Back to top ---------- */
.back-to-top{
  position: fixed; right: 26px; bottom: 26px; z-index: 400;
  width: 46px; height:46px; border-radius:50%; border:none;
  background: var(--gold); color: var(--navy-deep); font-size: 18px;
  box-shadow: var(--shadow-soft);
  opacity:0; transform: translateY(12px); pointer-events:none;
  transition: opacity .35s var(--ease), transform .35s var(--ease), background .3s ease;
}
.back-to-top.visible{ opacity:1; transform:translateY(0); pointer-events:auto; }
.back-to-top:hover{ background: var(--gold-light); }

/* ---------- WhatsApp float ---------- */
.whatsapp-float{
  position: fixed; left: 26px; bottom: 26px; z-index: 400;
  width: 54px; height: 54px; border-radius: 50%;
  background: #25D366; color: var(--navy-deep);
  display:flex; align-items:center; justify-content:center;
  box-shadow: 0 14px 34px -12px rgba(37,211,102,.65);
  transition: transform .3s var(--ease), box-shadow .3s ease;
}
.whatsapp-float svg{ width: 30px; height: 30px; }
.whatsapp-float:hover{ transform: translateY(-3px) scale(1.05); box-shadow: 0 18px 40px -12px rgba(37,211,102,.8); }

/* ---------- Post modal (leitura de notícias/blog do WordPress) ---------- */
.post-modal{
  position: fixed; inset: 0; z-index: 700;
  display: flex; align-items:center; justify-content:center; padding: 24px;
  opacity:0; pointer-events:none;
  transition: opacity .3s ease;
}
.post-modal.open{ opacity:1; pointer-events:auto; }
.post-modal-backdrop{
  position:absolute; inset:0; background: rgba(9,15,26,.72); backdrop-filter: blur(4px);
}
.post-modal-panel{
  position:relative; z-index:1; width:100%; max-width: 720px; max-height: 86vh; overflow-y:auto;
  background: var(--white); border-radius: var(--radius);
  box-shadow: 0 40px 80px -20px rgba(0,0,0,.5);
  transform: translateY(16px) scale(.98); transition: transform .3s var(--ease);
}
.post-modal.open .post-modal-panel{ transform:none; }
.post-modal-close{
  position:absolute; top: 16px; right: 16px; z-index:2;
  width: 38px; height:38px; border-radius:8px; border:none;
  background: rgba(15,27,46,.55); color: var(--white); font-size: 22px; line-height:1;
  display:flex; align-items:center; justify-content:center;
  transition: background .3s ease;
}
.post-modal-close:hover{ background: var(--navy-deep); }
.post-modal-thumb{
  width:100%; aspect-ratio: 16/8; background: linear-gradient(135deg, var(--navy-soft), var(--navy-deep));
  background-size: cover; background-position:center;
}
.post-modal-body{ padding: 30px 34px 40px; }
.post-modal-tag{
  display:inline-block; font-size: 11px; font-weight:700; letter-spacing:.08em; text-transform:uppercase;
  color: var(--gold); background: rgba(175,148,106,.14); padding: 5px 12px; border-radius: 6px; margin-bottom: 14px;
}
.post-modal-date{ display:block; font-size: 12.5px; color: var(--ink-soft); margin-bottom: 10px; }
.post-modal-panel h3{ font-size: 26px; color: var(--navy); margin-bottom: 20px; }
.post-modal-content{ font-size: 15.5px; color: var(--ink-soft); line-height:1.75; }
.post-modal-content p{ margin-bottom: 16px; }
.post-modal-content a{ color: var(--gold); text-decoration:underline; }
.post-modal-process{
  margin-top: 24px !important; padding-top: 16px;
  border-top: 1px solid var(--line-light);
  font-size: 12.5px !important; color: rgba(25,45,76,.45) !important; letter-spacing: .01em;
}
body.modal-open{ overflow:hidden; }

/* ---------- Reveal on scroll ---------- */
.reveal{ opacity:0; transform: translateY(28px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.in-view{ opacity:1; transform:none; }
@media (prefers-reduced-motion: reduce){
  .reveal{ opacity:1; transform:none; transition:none; }
  html{ scroll-behavior:auto; }
  .p-dot, .ring{ animation:none; }
}

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 1080px){
  .areas-grid{ grid-template-columns: repeat(2, 1fr); }
  .specialty-grid{ grid-template-columns: repeat(2, 1fr); }
  .news-grid{ grid-template-columns: repeat(2,1fr); }
  .timeline{ grid-template-columns: 1fr; }
  .plans-grid{ grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; }
  .split-grid{ grid-template-columns: 1fr; gap: 50px; }
  .contact-grid{ grid-template-columns: 1fr; gap: 50px; }
  .conditions{ grid-template-columns: 1fr; }
}

@media (max-width: 1024px){
  .main-nav{
    position: fixed; inset: 0; z-index: 480;
    background: var(--navy-deep);
    display:flex; align-items:center; justify-content:center;
    opacity:0; pointer-events:none; transform: translateY(-16px);
    transition: opacity .35s var(--ease), transform .35s var(--ease);
  }
  .main-nav.open{ opacity:1; pointer-events:auto; transform:none; }
  .main-nav ul{ flex-direction:column; align-items:center; gap: 28px; }
  .main-nav .nav-link{ color: var(--white); font-size: 20px; }
  .nav-toggle{ display:flex; }
  .header-actions .btn{ display:none; }
  .hero-inner{ grid-template-columns: 1.25fr 1fr; gap: 24px; align-items:stretch; }
  .hero-title{ font-size: clamp(26px, 4.6vw, 36px); }
  .hero-lead{ font-size: 14.5px; max-width: none; }
  .hero-cta{ gap: 14px; }
  .hero-stats{ grid-template-columns: repeat(3, minmax(0,1fr)); gap: 16px 14px; }
  .hero-portrait{ order:0; min-height: auto; align-self:stretch; margin-top: 4px; }
  .portrait-photo{ max-width: 100%; }
  .portrait-badge{ left: 4%; bottom: 4%; padding: 10px 14px; }
  .portrait-badge strong{ font-size: 14px; }
  .portrait-badge span{ font-size: 9.5px; }
  .ring-1{ width: 180px; height: 180px; }
  .ring-2{ width: 120px; height: 120px; }
  .footer-inner{ grid-template-columns: 1fr; text-align:center; }
  .footer-brand{ text-align:center; }
  .footer-nav{ justify-content:center; }
  .footer-legal{ text-align:center !important; align-items:center; justify-self:center; }
  .page-intro{ padding-top: 130px; }
}

@media (max-width: 600px){
  .section{ padding: 60px 0; }
  .areas-grid, .news-grid, .specialty-grid{ grid-template-columns: 1fr; }
  .form-row-split{ grid-template-columns: 1fr; }
  .conditions ul{ grid-template-columns: 1fr; }

  .hero{ padding-top: 110px; padding-bottom: 48px; min-height: auto; }
  .hero-inner{ grid-template-columns: 1fr; gap: 32px; }
  .hero-title{ font-size: clamp(26px, 7vw, 32px); margin-bottom: 16px; }
  .hero-lead{ font-size: 14.5px; margin-bottom: 24px; }
  .hero-cta{ align-items:stretch; gap: 24px; margin-bottom: 32px; }
  .hero-cta-links{ flex-direction:column; align-items:stretch; gap: 10px; width:100%; }
  .btn{ padding: 12px 18px; font-size: 12.5px; }
  .hero-stats{ grid-template-columns: 1fr; gap: 12px; padding-top:20px; }
  .hero-stats .stat dd{ font-size: 16px; }
  .hero-portrait{ order:-1; min-height:auto; max-width: 300px; margin:0 auto 8px; align-self:center; }
  .portrait-photo{ max-width: 100%; }
  .portrait-badge{ left: 6%; bottom: 4%; padding: 8px 10px; border-radius:6px; }
  .portrait-badge strong{ font-size: 12px; }
  .portrait-badge span{ font-size: 8px; letter-spacing:.04em; }
  .ring-1, .ring-2, .p-dot{ display:none; }
}
