/* ============================================================
   LAÍS ALENCAR ADVOCACIA TRABALHISTA
   Design: Escritório premium — elegante, sóbrio, autoritário
   Tipografia: Cormorant Garamond (display) + DM Sans (body)
   Paleta: Vinho profundo · Dourado · Creme · Preto editorial
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400;1,600&family=DM+Sans:wght@300;400;500;600&display=swap');

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

:root {
  --vinho:        #4a1c06;
  --vinho-mid:    #5e2508;
  --vinho-light:  #7a3510;
  --dourado:      #c9973a;
  --dourado-lt:   #ddb96a;
  --dourado-pale: #f4e8cc;
  --creme:        #faf7f2;
  --cinza-f:      #f2ede6;
  --cinza-e:      #e6e0d6;
  --cinza-txt:    #8a7f74;
  --preto:        #1a1208;
  --texto:        #2c2418;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'DM Sans', system-ui, sans-serif;
  --trans:        0.3s cubic-bezier(.4,0,.2,1);
  --shadow-sm:    0 2px 12px rgba(74,28,6,.07);
  --shadow-md:    0 6px 28px rgba(74,28,6,.13);
  --shadow-lg:    0 16px 56px rgba(74,28,6,.18);
}

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

body {
  font-family: var(--font-body);
  color: var(--texto);
  background: var(--creme);
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.2;
}

.container {
  width: 90%;
  max-width: 1160px;
  margin: 0 auto;
}

img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }

/* ===== ACESSIBILIDADE ===== */
.acessibilidade-topo {
  display: flex;
  align-items: center;
  gap: 6px;
}

.acessibilidade-topo a {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.55);
  cursor: pointer;
  letter-spacing: 0.04em;
  transition: color var(--trans);
  padding: 4px 2px;
}

.acessibilidade-topo a:hover { color: var(--dourado-lt); }

/* ===== ALTO CONTRASTE ===== */
body.alto-contraste {
  background: #000 !important;
  color: #ff0 !important;
}
body.alto-contraste header,
body.alto-contraste footer { background: #111 !important; }
body.alto-contraste a { color: #ff0 !important; }

/* ===== HEADER ===== */
header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  background: var(--vinho);
  transition: background var(--trans), box-shadow var(--trans);
}

header.scrolled {
  background: rgba(74,28,6,0.97);
  box-shadow: 0 2px 20px rgba(0,0,0,0.25);
  backdrop-filter: blur(8px);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 0;
  height: 76px;
}

.logo a { display: flex; align-items: center; }
.logo img { height: 54px; transition: opacity var(--trans); }
.logo img:hover { opacity: 0.88; }

/* NAV LINKS */
nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

nav a {
  color: rgba(255,255,255,0.78);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 8px 12px;
  border-radius: 4px;
  transition: color var(--trans), background var(--trans);
  position: relative;
}

nav a::after {
  content: '';
  position: absolute;
  bottom: 2px; left: 12px; right: 12px;
  height: 1px;
  background: var(--dourado);
  transform: scaleX(0);
  transition: transform var(--trans);
  transform-origin: left;
}

nav a:hover { color: #fff; }
nav a:hover::after { transform: scaleX(1); }

.btn-header {
  background: var(--dourado) !important;
  color: #fff !important;
  padding: 9px 20px !important;
  border-radius: 4px !important;
  font-weight: 600 !important;
  letter-spacing: 0.08em !important;
  transition: background var(--trans), transform var(--trans), box-shadow var(--trans) !important;
}

.btn-header:hover {
  background: var(--dourado-lt) !important;
  transform: translateY(-1px) !important;
  box-shadow: 0 4px 14px rgba(201,151,58,0.4) !important;
}

.btn-header::after { display: none !important; }

/* HAMBURGER */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: 6px;
}

.menu-toggle span {
  display: block;
  width: 22px; height: 2px;
  background: rgba(255,255,255,0.8);
  border-radius: 2px;
  transition: var(--trans);
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  background: url("img/predio1.png") no-repeat center center / cover;
  display: flex;
  align-items: flex-end;
  padding-bottom: 0;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(26,8,0,0.72) 0%,
    rgba(74,28,6,0.45) 50%,
    rgba(0,0,0,0.15) 100%
  );
  z-index: 1;
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 0 0 0 0;
  display: flex;
  align-items: flex-end;
}

.hero-card {
  background: var(--vinho);
  color: #fff;
  width: 520px;
  max-width: 90%;
  padding: 64px 56px 72px;
  margin-left: 8%;
  position: relative;
  bottom: -64px;
  box-shadow: var(--shadow-lg);
  border-top: 4px solid var(--dourado);
}

.hero-eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--dourado-lt);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero-eyebrow::before {
  content: '';
  display: block;
  width: 28px; height: 1px;
  background: var(--dourado);
}

.hero-card h1 {
  font-size: 2.6rem;
  line-height: 1.18;
  margin-bottom: 22px;
  font-weight: 600;
}

.hero-card p {
  font-size: 0.95rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.75);
  margin-bottom: 36px;
}

.btn-hero {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--dourado);
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 15px 30px;
  border: none;
  cursor: pointer;
  transition: background var(--trans), transform var(--trans), box-shadow var(--trans);
}

.btn-hero:hover {
  background: var(--dourado-lt);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(201,151,58,0.4);
}

.btn-hero svg { transition: transform var(--trans); }
.btn-hero:hover svg { transform: translateX(3px); }

/* ===== SOBRE HOME (missão) ===== */
.missao {
  background: var(--creme);
  padding: 160px 0 100px;
}

.missao-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: center;
}

.missao-label {
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--dourado);
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.missao-label::before {
  content: '';
  display: block;
  width: 24px; height: 1px;
  background: var(--dourado);
}

.missao h2 {
  font-size: 2.6rem;
  color: var(--preto);
  margin-bottom: 28px;
  line-height: 1.15;
}

.missao-divider {
  width: 48px; height: 3px;
  background: var(--dourado);
  margin-bottom: 28px;
  border-radius: 2px;
}

.missao p {
  font-size: 1rem;
  line-height: 1.85;
  color: var(--cinza-txt);
}

.missao-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--cinza-e);
  border: 1px solid var(--cinza-e);
}

.stat-box {
  background: var(--creme);
  padding: 36px 32px;
  text-align: center;
}

.stat-box .num {
  font-family: var(--font-display);
  font-size: 3.2rem;
  font-weight: 700;
  color: var(--vinho);
  line-height: 1;
  display: block;
}

.stat-box .desc {
  font-size: 0.8rem;
  color: var(--cinza-txt);
  margin-top: 8px;
  letter-spacing: 0.06em;
  line-height: 1.4;
  text-transform: uppercase;
}

/* ===== ÁREAS DE ATUAÇÃO ===== */
.areas {
  background: var(--preto);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.areas::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 380px; height: 380px;
  border-radius: 50%;
  border: 1px solid rgba(201,151,58,0.06);
}

.areas::after {
  content: '';
  position: absolute;
  bottom: -80px; left: 40px;
  width: 240px; height: 240px;
  border-radius: 50%;
  border: 1px solid rgba(201,151,58,0.04);
}

.section-head {
  text-align: center;
  margin-bottom: 64px;
}

.section-label {
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--dourado);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.section-label::before,
.section-label::after {
  content: '';
  display: block;
  width: 24px; height: 1px;
  background: var(--dourado);
}

.section-head h2 {
  font-size: 2.8rem;
  color: #fff;
  margin-bottom: 0;
}

.areas-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.06);
}

.area-card {
  background: var(--preto);
  padding: 44px 36px;
  transition: background var(--trans);
  position: relative;
  overflow: hidden;
}

.area-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 3px;
  background: var(--dourado);
  transition: width var(--trans);
}

.area-card:hover { background: #231610; }
.area-card:hover::before { width: 100%; }

.area-icon {
  font-size: 2rem;
  margin-bottom: 22px;
  display: block;
}

.area-card h3 {
  font-size: 1.18rem;
  color: #fff;
  margin-bottom: 14px;
  font-weight: 600;
}

.area-card p {
  font-size: 0.88rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.5);
}

/* ===== DESTAQUES / DIFERENCIAIS ===== */
.diferenciais {
  background: var(--cinza-f);
  padding: 100px 0;
}

.diferenciais .section-head h2 { color: var(--preto); }
.diferenciais .section-label { justify-content: center; }

.diferenciais-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-top: 56px;
}

.dif-card {
  background: #fff;
  padding: 36px 28px;
  border-bottom: 3px solid transparent;
  transition: border-color var(--trans), transform var(--trans), box-shadow var(--trans);
  box-shadow: var(--shadow-sm);
}

.dif-card:hover {
  border-bottom-color: var(--dourado);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.dif-card .ico {
  font-size: 2rem;
  margin-bottom: 18px;
}

.dif-card h4 {
  font-size: 1.05rem;
  color: var(--preto);
  margin-bottom: 10px;
}

.dif-card p {
  font-size: 0.85rem;
  line-height: 1.7;
  color: var(--cinza-txt);
}

/* ===== CONTATO ===== */
.contato {
  background: var(--creme);
  padding: 100px 0;
}

.contato-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}

.contato-info .section-label { justify-content: flex-start; }
.contato-info h2 { font-size: 2.4rem; color: var(--preto); margin-bottom: 32px; }

.contato-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
}

.contato-item-icon {
  width: 42px; height: 42px;
  background: var(--vinho);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
  color: #fff;
}

.contato-item-text strong {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cinza-txt);
  margin-bottom: 4px;
}

.contato-item-text span {
  font-size: 0.95rem;
  color: var(--texto);
  line-height: 1.4;
}

.mapa {
  margin-top: 28px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.mapa iframe {
  display: block;
  width: 100%;
  height: 220px;
  border: 0;
}

/* FORMULÁRIO */
.contato-form-wrap {
  background: #fff;
  padding: 48px 44px;
  box-shadow: var(--shadow-md);
  border-top: 4px solid var(--dourado);
}

.contato-form-wrap h3 {
  font-size: 1.6rem;
  margin-bottom: 8px;
  color: var(--preto);
}

.contato-form-wrap p {
  font-size: 0.85rem;
  color: var(--cinza-txt);
  margin-bottom: 28px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.field {
  margin-bottom: 18px;
}

.field label {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cinza-txt);
  margin-bottom: 8px;
}

.field input,
.field textarea,
.field select {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--cinza-e);
  background: var(--cinza-f);
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: var(--texto);
  border-radius: 4px;
  transition: border-color var(--trans), background var(--trans), box-shadow var(--trans);
  outline: none;
  -webkit-appearance: none;
}

.field input:focus,
.field textarea:focus,
.field select:focus {
  border-color: var(--dourado);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(201,151,58,0.12);
}

.field textarea { resize: vertical; min-height: 110px; }

.btn-submit {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--vinho);
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 15px 32px;
  border: none;
  cursor: pointer;
  width: 100%;
  justify-content: center;
  border-radius: 4px;
  transition: background var(--trans), transform var(--trans);
}

.btn-submit:hover {
  background: var(--vinho-light);
  transform: translateY(-1px);
}

.msg-sucesso {
  display: none;
  margin-top: 12px;
  background: #f0fdf4;
  color: #166534;
  border: 1px solid #bbf7d0;
  padding: 12px 16px;
  border-radius: 4px;
  font-size: 0.875rem;
  font-weight: 500;
  text-align: center;
}

/* ===== FOOTER ===== */
footer {
  background: var(--preto);
  color: rgba(255,255,255,0.55);
  padding: 0;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 60px;
  padding: 64px 0 56px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.footer-brand img { height: 48px; margin-bottom: 20px; filter: brightness(0) invert(1); opacity: 0.85; }
.footer-brand p { font-size: 0.85rem; line-height: 1.75; max-width: 260px; }

.footer-col h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  color: #fff;
  margin-bottom: 20px;
  font-weight: 600;
}

.footer-col a {
  display: block;
  font-size: 0.83rem;
  color: rgba(255,255,255,0.45);
  margin-bottom: 10px;
  transition: color var(--trans);
}

.footer-col a:hover { color: var(--dourado-lt); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 0;
  font-size: 0.78rem;
}

.footer-social {
  display: flex;
  gap: 14px;
}

.footer-social a {
  width: 36px; height: 36px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.45);
  font-size: 0.9rem;
  transition: background var(--trans), border-color var(--trans), color var(--trans);
}

.footer-social a:hover {
  background: var(--dourado);
  border-color: var(--dourado);
  color: #fff;
}

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
  position: fixed;
  right: 28px;
  bottom: 28px;
  width: 60px; height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(37,211,102,0.45);
  z-index: 800;
  transition: transform var(--trans), box-shadow var(--trans);
  animation: pulse 1.8s infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1) translateY(-2px);
  box-shadow: 0 10px 32px rgba(37,211,102,0.55);
}

/* Animação */
@keyframes pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
  }
  70% {
    transform: scale(1.08);
    box-shadow: 0 0 0 12px rgba(37, 211, 102, 0);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

/* ===== VLIBRAS ===== */
[vw-access-button] { bottom: 100px !important; right: 16px !important; }

/* ===== BLOG PAGE ===== */
.blog-hero {
  background: var(--vinho);
  padding: 140px 0 80px;
  text-align: center;
}

.blog-hero h1 {
  font-size: 3rem;
  color: #fff;
  margin-bottom: 16px;
}

.blog-hero p {
  color: rgba(255,255,255,0.65);
  font-size: 1rem;
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.7;
}

.blog-grid-section {
  padding: 80px 0;
  background: var(--cinza-f);
}

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

.post-card {
  background: #fff;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: var(--texto);
  box-shadow: var(--shadow-sm);
  border-bottom: 3px solid transparent;
  transition: box-shadow var(--trans), transform var(--trans), border-color var(--trans);
  overflow: hidden;
}

.post-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
  border-bottom-color: var(--dourado);
}

.post-card-img {
  width: 100%; height: 200px;
  object-fit: cover;
}

.post-card-body {
  padding: 28px 24px 32px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.post-tag {
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--dourado);
  font-weight: 600;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.post-tag::before {
  content: '';
  display: block;
  width: 16px; height: 1px;
  background: var(--dourado);
}

.post-card h2 {
  font-size: 1.2rem;
  line-height: 1.3;
  margin-bottom: 12px;
  color: var(--preto);
}

.post-card p {
  font-size: 0.875rem;
  line-height: 1.7;
  color: var(--cinza-txt);
  flex: 1;
}

.post-card-footer {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid var(--cinza-f);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.78rem;
  color: var(--cinza-txt);
}

.post-card-footer .read-link {
  color: var(--vinho);
  font-weight: 600;
  font-size: 0.78rem;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: gap var(--trans);
}

.post-card:hover .read-link { gap: 9px; }

/* ===== ARTIGO (post individual) ===== */
.post-header {
  background: var(--vinho);
  padding: 140px 0 64px;
}

.post-header .post-tag { color: var(--dourado-lt); margin-bottom: 16px; }
.post-header h1 { font-size: 2.6rem; color: #fff; max-width: 700px; line-height: 1.2; margin-bottom: 24px; }

.post-meta-bar {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.post-meta-bar .author {
  display: flex;
  align-items: center;
  gap: 10px;
}

.post-meta-bar .author img {
  width: 38px; height: 38px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255,255,255,0.3);
}

.post-meta-bar .author span {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.8);
  font-weight: 500;
}

.post-meta-bar .sep {
  width: 1px; height: 14px;
  background: rgba(255,255,255,0.2);
}

.post-meta-bar .date {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
}

.post-body {
  background: var(--creme);
  padding: 72px 0 80px;
}

.post-container {
  max-width: 740px;
  margin: 0 auto;
}

.post-intro {
  font-family: var(--font-display);
  font-size: 1.3rem;
  line-height: 1.65;
  color: var(--vinho-mid);
  border-left: 4px solid var(--dourado);
  padding-left: 24px;
  margin-bottom: 40px;
  font-style: italic;
}

.post-container p {
  font-size: 1rem;
  line-height: 1.9;
  color: #3c3226;
  margin-bottom: 24px;
}

.post-container h2 {
  font-size: 1.7rem;
  color: var(--preto);
  margin: 40px 0 16px;
}

.post-container h3 {
  font-size: 1.25rem;
  color: var(--vinho);
  margin: 32px 0 12px;
}

.post-container ul, .post-container ol {
  margin: 0 0 28px 24px;
}

.post-container li {
  font-size: 1rem;
  line-height: 1.8;
  color: #3c3226;
  margin-bottom: 8px;
}

.post-container strong { font-weight: 600; color: var(--preto); }

.btn-artigo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--dourado);
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 16px 32px;
  border-radius: 4px;
  margin: 32px auto;
  display: flex;
  width: fit-content;
  transition: background var(--trans), transform var(--trans);
}

.btn-artigo:hover { background: var(--vinho); transform: translateY(-2px); }

.post-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 48px;
  padding-top: 28px;
  border-top: 1px solid var(--cinza-e);
  flex-wrap: wrap;
}

.btn-like, .btn-share {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 4px;
  font-family: var(--font-body);
  font-size: 0.83rem;
  font-weight: 500;
  cursor: pointer;
  border: 1.5px solid var(--cinza-e);
  background: #fff;
  color: var(--texto);
  transition: var(--trans);
}

.btn-like:hover { border-color: #e11d48; color: #e11d48; background: #fff1f2; }
.btn-share:hover { border-color: var(--vinho); color: var(--vinho); }

.posts-recentes {
  background: var(--cinza-f);
  padding: 80px 0;
}

.posts-recentes h3 {
  font-size: 1.8rem;
  color: var(--preto);
  margin-bottom: 40px;
  text-align: center;
}

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

.mini-post {
  background: #fff;
  text-decoration: none;
  color: var(--texto);
  box-shadow: var(--shadow-sm);
  transition: transform var(--trans), box-shadow var(--trans);
  overflow: hidden;
}

.mini-post:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }

.mini-post img { width: 100%; height: 130px; object-fit: cover; }

.mini-post p {
  padding: 14px 16px;
  font-size: 0.85rem;
  line-height: 1.5;
  color: var(--texto);
  font-weight: 500;
}

/* ===== SOBRE PAGE ===== */
.sobre-hero {
  position: relative;
  min-height: 75vh;
  background: url("img/predio2.png") no-repeat center center / cover;
  display: flex;
  align-items: flex-end;
}

.sobre-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(105deg, rgba(26,8,0,0.7) 0%, rgba(74,28,6,0.4) 60%, transparent 100%);
  z-index: 1;
}

.sobre-card {
  position: relative;
  z-index: 2;
  background: var(--vinho);
  color: #fff;
  width: 480px;
  max-width: 90%;
  padding: 60px 52px 68px;
  margin-left: 8%;
  bottom: -56px;
  border-top: 4px solid var(--dourado);
  box-shadow: var(--shadow-lg);
}

.sobre-card h1 { font-size: 2.6rem; margin-bottom: 20px; }
.sobre-card p { font-size: 0.93rem; line-height: 1.75; color: rgba(255,255,255,0.72); }

.sobre-texto {
  background: var(--cinza-f);
  padding: 136px 0 96px;
}

.sobre-texto-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.sobre-col p {
  font-size: 0.93rem;
  line-height: 1.85;
  color: var(--cinza-txt);
}

.dra-section {
  background: var(--vinho);
  padding: 96px 0;
  color: #fff;
}

.dra-grid {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 64px;
  align-items: center;
}

.dra-img {
  position: relative;
}

.dra-img img {
  width: 340px;
  max-width: 90%;
  position: relative;
  z-index: 1;
  box-shadow: var(--shadow-lg);
}

.dra-img::before {
  content: '';
  position: absolute;
  top: 20px; left: 20px;
  right: -20px; bottom: -20px;
  border: 2px solid rgba(201,151,58,0.3);
  z-index: 0;
}

.dra-info .label {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--dourado-lt);
  margin-bottom: 14px;
}

.dra-info h2 { font-size: 2.6rem; margin-bottom: 4px; }
.dra-info .oab { font-size: 0.85rem; color: rgba(255,255,255,0.5); letter-spacing: 0.1em; margin-bottom: 32px; display: block; }
.dra-info p { font-size: 0.93rem; line-height: 1.85; color: rgba(255,255,255,0.7); margin-bottom: 16px; }
.dra-frase { font-family: var(--font-display); font-size: 1.25rem; font-style: italic; color: var(--dourado-lt) !important; margin-top: 28px !important; }

.depoimentos {
  background: var(--cinza-f);
  padding: 96px 0;
}

.dep-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 56px;
}

.dep-card {
  background: #fff;
  padding: 40px 32px;
  box-shadow: var(--shadow-sm);
  position: relative;
  transition: box-shadow var(--trans), transform var(--trans);
}

.dep-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }

.dep-card::before {
  content: '\201C';
  font-family: var(--font-display);
  font-size: 5rem;
  color: var(--dourado-pale);
  position: absolute;
  top: 12px; left: 24px;
  line-height: 1;
}

.dep-card .stars { color: var(--dourado); font-size: 0.85rem; margin-bottom: 16px; }
.dep-card p { font-size: 0.9rem; line-height: 1.75; color: var(--cinza-txt); margin-bottom: 20px; font-style: italic; }
.dep-card .dep-name { font-family: var(--font-display); font-size: 1rem; font-weight: 600; color: var(--preto); }

.redes-cta {
  background: var(--dourado);
  padding: 72px 0;
  text-align: center;
}

.redes-cta h2 { font-size: 2.4rem; color: #fff; margin-bottom: 14px; }
.redes-cta p { font-size: 0.95rem; color: rgba(255,255,255,0.8); margin-bottom: 28px; line-height: 1.65; }

.btn-redes {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--vinho);
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 15px 30px;
  border-radius: 4px;
  transition: background var(--trans), transform var(--trans);
}

.btn-redes:hover { background: var(--vinho-mid); transform: translateY(-2px); }

/* ===== TERMOS / PRIVACIDADE ===== */
.doc-page { padding: 140px 0 100px; background: var(--creme); }
.doc-page h1 { font-size: 2.4rem; margin-bottom: 40px; color: var(--preto); }
.doc-page h2 { font-size: 1.4rem; margin: 32px 0 12px; color: var(--vinho); }
.doc-page p { font-size: 0.95rem; line-height: 1.85; color: var(--cinza-txt); margin-bottom: 16px; }
.doc-page ul { margin: 0 0 20px 24px; }
.doc-page li { font-size: 0.95rem; line-height: 1.8; color: var(--cinza-txt); margin-bottom: 6px; }

/* ===== RESPONSIVO ===== */
@media (max-width: 1100px) {
  .diferenciais-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-top .footer-brand { grid-column: 1/-1; }
}

@media (max-width: 900px) {
  .missao-inner { grid-template-columns: 1fr; gap: 48px; }
  .missao-stats { grid-template-columns: repeat(2, 1fr); }
  .areas-grid { grid-template-columns: repeat(2, 1fr); }
  .contato-grid { grid-template-columns: 1fr; gap: 48px; }
  .sobre-texto-grid { grid-template-columns: 1fr; }
  .dra-grid { grid-template-columns: 1fr; text-align: center; }
  .dra-img { display: flex; justify-content: center; }
  .dra-img::before { display: none; }
  .dep-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .mini-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-card { margin-left: 4%; padding: 48px 36px 60px; }
  .hero-card h1 { font-size: 2rem; }
}

@media (max-width: 768px) {
  nav { display: none; position: absolute; top: 76px; left: 0; right: 0; background: var(--vinho); flex-direction: column; padding: 20px 0; gap: 0; border-top: 1px solid rgba(255,255,255,0.1); }
  nav.open { display: flex; }
  nav a { padding: 12px 24px; border-radius: 0; border-bottom: 1px solid rgba(255,255,255,0.06); }
  nav a::after { display: none; }
  .btn-header { margin: 12px 24px !important; border-radius: 4px !important; }
  .menu-toggle { display: flex; }
  .acessibilidade-topo { display: none; }
  .hero-card { width: 100%; margin: 0; border-radius: 0; padding: 48px 28px 64px; border-top: none; border-left: 4px solid var(--dourado); }
  .areas-grid { grid-template-columns: 1fr; }
  .diferenciais-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .mini-grid { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .contato-form-wrap { padding: 32px 24px; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
  .sobre-card { width: 100%; margin: 0; padding: 40px 28px 56px; }
  .post-header h1 { font-size: 2rem; }
  .post-header { padding: 120px 0 48px; }
}

@media (max-width: 480px) {
  .missao-stats { grid-template-columns: 1fr 1fr; }
  .mini-grid { grid-template-columns: 1fr; }
}

/* ===== SCROLL ANIMATIONS ===== */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
