/* ============================================================
   SARAH MESSIAS ADVOCACIA — STYLE v2
   ============================================================ */

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

:root {
  /* Dourado — uso semântico: */
  --gold-dark: #8A5713;      /* texto dourado sobre fundo CLARO (5.4:1) */
  --gold: #B98227;           /* ícones/bordas dourados sobre fundo CLARO (3.34:1) */
  --gold-main: #C99536;      /* texto/ícones dourados sobre fundo ESCURO (7.6:1) */
  --gold-light: #E4B95B;     /* hover/brilho sobre fundo ESCURO (11:1) */
  --gold-highlight: #F3D37D; /* só em gradientes/realces pontuais */

  --black: #050505;
  --black-secondary: #0B0B0B;
  --black-soft: #111111;
  --charcoal: #181818;
  --white: #FFFFFF;
  --ivory: #F6F1E7;
  --cream: #FBF8F2;

  --text-dark: #171717;
  --text-body: #3A362F;
  --text-light: #EAEAEA;
  --text-muted: #AAA7A0;     /* só sobre fundo escuro — falha AA sobre ivory */
  --gray: #6B6B6B;
  --gray-light: #A0A0A0;
  --gray-border: #E7E1D6;

  --criminal-bg: #0B0B0B;

  --gradient-gold: linear-gradient(135deg, #8A5713 0%, #B98227 20%, #E4B95B 45%, #F3D37D 55%, #C99536 72%, #8A5713 100%);
  --gradient-gold-btn: linear-gradient(135deg, #986317, #D7A842, #F0CB73, #B47A20);
  --gradient-gold-line: linear-gradient(90deg, var(--gold-dark), var(--gold-light));

  --overlay-hero: linear-gradient(90deg, rgba(0,0,0,.94) 0%, rgba(0,0,0,.78) 38%, rgba(0,0,0,.40) 68%, rgba(0,0,0,.18) 100%);
  --overlay-cta: linear-gradient(135deg, rgba(5,5,5,.92), rgba(5,5,5,.78));
  --overlay-parallax: rgba(5,5,5,.80);

  --shadow-gold: 0 10px 30px rgba(185,130,39,.18), inset 0 1px 0 rgba(255,255,255,.25);
  --shadow-gold-hover: 0 16px 42px rgba(185,130,39,.28), inset 0 1px 0 rgba(255,255,255,.3);
  --shadow-card: 0 10px 35px rgba(0,0,0,.035);
  --shadow-card-hover: 0 20px 50px rgba(0,0,0,.08), 0 0 0 1px rgba(201,149,54,.08);
  --shadow-soft: 0 8px 30px rgba(0,0,0,.10);

  --font-title: 'Playfair Display', Georgia, serif;
  --font-body: 'Manrope', 'Segoe UI', sans-serif;
  --font-accent: 'Cormorant Garamond', Georgia, serif;

  --transition: 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
  --radius: 12px;
  --radius-sm: 8px;
  --radius-lg: 20px;
  --radius-full: 50px;
}

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

body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--text-body);
  overflow-x: hidden;
  line-height: 1.7;
  width: 100%;
  max-width: 100vw;
}

a { text-decoration: none; color: inherit; transition: color var(--transition); }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

/* ---------- LOADER ---------- */
#loader {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: var(--black);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}
#loader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
#loader .loader-logo { width: 130px; animation: loaderPulse 1.2s ease-in-out infinite; }
#loader .loader-bar { width: 200px; height: 3px; background: rgba(255,255,255,.1); margin-top: 30px; border-radius: 10px; overflow: hidden; }
#loader .loader-bar::after { content: ''; display: block; width: 0%; height: 100%; background: var(--gradient-gold-line); border-radius: 10px; animation: loaderProgress 1.5s ease-in-out forwards; }
@keyframes loaderPulse { 0%, 100% { opacity: 0.6; transform: scale(1); } 50% { opacity: 1; transform: scale(1.04); } }
@keyframes loaderProgress { 0% { width: 0%; } 100% { width: 100%; } }

/* ---------- NAVBAR ---------- */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 20px 0;
  background: rgba(5,5,5,.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(201,149,54,.22);
  transition: padding var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.navbar.scrolled {
  padding: 12px 0;
  border-bottom-color: rgba(201,149,54,.35);
  box-shadow: 0 10px 30px rgba(0,0,0,.35);
}
.navbar .container { display: flex; align-items: center; justify-content: space-between; }
.navbar-logo img { height: 68px; width: auto; transition: height var(--transition); }
.navbar.scrolled .navbar-logo img { height: 54px; }

.navbar-links { display: flex; gap: 28px; align-items: center; }
.navbar-links a {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-light);
  opacity: .82;
  position: relative;
  padding: 4px 0;
}
.navbar-links a::after { content: ''; position: absolute; bottom: -2px; left: 0; width: 0; height: 2px; background: var(--gold-main); border-radius: 2px; transition: width var(--transition); }
.navbar-links a:hover { color: var(--gold-main); opacity: 1; }
.navbar-links a:hover::after { width: 100%; }
.navbar-cta { display: inline-flex !important; align-items: center; gap: 8px; background: var(--gradient-gold-btn) !important; color: var(--text-dark) !important; padding: 11px 24px !important; border-radius: var(--radius-full); font-size: 0.75rem !important; font-weight: 700 !important; box-shadow: var(--shadow-gold); }
.navbar-cta svg { flex-shrink: 0; }
.navbar-cta:hover { transform: translateY(-2px); box-shadow: var(--shadow-gold-hover); }
.navbar-cta::after { display: none !important; }

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; z-index: 1001; padding: 5px; }
.hamburger span { width: 28px; height: 2px; background: var(--white); transition: all 0.3s ease; display: block; }
.hamburger.active span { background: var(--white) !important; }
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(15,15,15,0.98);
  backdrop-filter: blur(30px);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}
.mobile-menu.active { opacity: 1; visibility: visible; }
.mobile-menu a { font-family: var(--font-title); font-size: 1.5rem; color: var(--white); letter-spacing: 2px; }
.mobile-menu a:hover { color: var(--gold-main); }
.mobile-whatsapp {
  display: flex !important;
  align-items: center;
  gap: 10px;
  background: #25D366;
  color: var(--white) !important;
  padding: 14px 30px;
  border-radius: var(--radius-full);
  font-family: var(--font-body) !important;
  font-size: 0.95rem !important;
  letter-spacing: 0.5px !important;
  margin-top: 10px;
}

/* ---------- HERO ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center top;
  z-index: 0;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--overlay-hero);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  padding: 130px 0 90px;
}
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold-main);
  margin-bottom: 24px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.7s 1.8s forwards;
}
.hero-tag::before { content: ''; width: 40px; height: 2px; background: var(--gold-main); border-radius: 2px; }
.hero-title {
  font-family: var(--font-title);
  font-size: clamp(2.6rem, 5vw, 4.6rem);
  font-weight: 600;
  line-height: 0.98;
  color: var(--white);
  margin-bottom: 20px;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.7s 2.0s forwards;
}
.hero-title span { color: var(--gold-light); }
.hero-subtitle {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.72);
  line-height: 1.8;
  margin-bottom: 30px;
  max-width: 580px;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.7s 2.2s forwards;
}
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 36px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.7s 2.4s forwards;
}
.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.8);
}
.hero-trust-item svg { color: var(--gold-light); flex-shrink: 0; }
.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.7s 2.6s forwards;
}
.hero-urgency {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-top: 24px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  max-width: 520px;
  line-height: 1.6;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.7s 2.8s forwards;
}
.hero-urgency svg { color: var(--gold-main); flex-shrink: 0; margin-top: 2px; }

.scroll-indicator {
  position: absolute;
  bottom: 40px; right: 40px;
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0;
  animation: fadeUp 0.7s 3.0s forwards;
}
.scroll-indicator span { font-size: 0.62rem; letter-spacing: 3px; text-transform: uppercase; color: rgba(255,255,255,0.45); writing-mode: vertical-rl; }
.scroll-indicator::after { content: ''; width: 1px; height: 50px; background: var(--gold-main); animation: scrollLine 2s ease-in-out infinite; }
@keyframes scrollLine { 0%, 100% { transform: scaleY(0); transform-origin: top; } 50% { transform: scaleY(1); transform-origin: top; } 51% { transform-origin: bottom; } }

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 34px;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  border-radius: var(--radius-full);
  position: relative;
  overflow: hidden;
}
.btn-primary, .btn-gold, .btn-whatsapp { background: var(--gradient-gold-btn); color: var(--text-dark); box-shadow: var(--shadow-gold); }
.btn-primary:hover, .btn-gold:hover, .btn-whatsapp:hover { transform: translateY(-2px); box-shadow: var(--shadow-gold-hover); }
.btn-outline { background: transparent; color: var(--gold-light); border: 1px solid rgba(218,172,75,.65); }
.btn-outline:hover { background: rgba(201,149,54,.08); border-color: var(--gold-light); color: var(--gold-highlight); transform: translateY(-2px); }
.section-white .btn-outline, .section-cream .btn-outline { color: var(--gold-dark); border-color: rgba(138,87,19,.4); }
.section-white .btn-outline:hover, .section-cream .btn-outline:hover { background: rgba(201,149,54,.06); border-color: var(--gold-dark); color: var(--gold-dark); }

/* ---------- SECTION COMMON ---------- */
.section { padding: 100px 0; position: relative; }
.section-white { background: var(--white); }
.section-cream { background: var(--cream); }
.section-dark { background: var(--black); position: relative; overflow: hidden; }
.section-header { text-align: center; margin-bottom: 60px; }
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 16px;
}
.section-tag::before, .section-tag::after { content: ''; width: 30px; height: 2px; background: var(--gold-dark); border-radius: 2px; }
.section-tag.light { color: var(--gold-main); }
.section-tag.light::before, .section-tag.light::after { background: var(--gold-main); }
.section-title { font-family: var(--font-title); font-size: clamp(2.2rem, 4vw, 3.6rem); font-weight: 600; color: var(--text-dark); margin-bottom: 16px; line-height: 1.15; }
.section-title span { color: var(--gold-dark); }
.section-desc { font-size: 1rem; color: var(--gray); max-width: 600px; margin: 0 auto; line-height: 1.8; }
.gold-line { width: 60px; height: 2px; background: var(--gradient-gold-line); margin: 0 auto 20px; border-radius: 2px; }

/* ---------- SEÇÃO DOR / PROBLEMA ---------- */
.section.section-dark#problema {
  background: radial-gradient(circle at 80% 40%, rgba(193,139,45,.08), transparent 30%), var(--black);
}
.section.section-dark#problema::after {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 45%; height: 100%;
  background-image: repeating-linear-gradient(115deg, rgba(201,149,54,.05) 0px, rgba(201,149,54,.05) 1px, transparent 1px, transparent 26px);
  opacity: .5;
  pointer-events: none;
}
.dor-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 70px;
  align-items: start;
}
.dor-title { font-family: var(--font-title); font-size: clamp(1.6rem, 3vw, 2.2rem); color: var(--white); line-height: 1.25; margin-bottom: 16px; font-weight: 600; }
.dor-desc { color: var(--text-muted); font-size: 0.95rem; line-height: 1.8; }
.dor-items { display: flex; flex-direction: column; gap: 0; }
.dor-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
  transition: background var(--transition);
}
.dor-item:first-child { border-top: 1px solid rgba(255,255,255,.08); }
.dor-item:hover { background: linear-gradient(90deg, rgba(201,149,54,.06), transparent); }
.dor-icon {
  width: 40px; height: 40px;
  background: rgba(201,149,54,.06);
  border: 1px solid rgba(201,149,54,.35);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.dor-icon svg { width: 18px; height: 18px; stroke: var(--gold-main); fill: none; stroke-width: 1.5; }
.dor-item h4 { font-family: var(--font-accent); font-style: italic; font-size: 0.95rem; color: var(--text-light); opacity: .85; line-height: 1.6; font-weight: 500; }

/* ---------- ABOUT ---------- */
.section.section-cream#sobre {
  background: radial-gradient(circle at 10% 30%, rgba(201,149,54,.06), transparent 25%), var(--ivory);
}
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-image-wrapper { position: relative; }
.about-image { width: 100%; max-width: 450px; object-fit: cover; border-radius: var(--radius-lg); transition: transform var(--transition); }
.about-image:hover { transform: scale(1.02); }
.about-image-wrapper::before { content: ''; position: absolute; top: -12px; left: -12px; width: 100%; height: 100%; border: 1px solid rgba(180,125,32,.45); border-radius: var(--radius-lg); opacity: 1; z-index: -1; }
.about-badge {
  position: absolute;
  bottom: 20px;
  right: -20px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 12px 20px;
  box-shadow: var(--shadow-soft);
  text-align: center;
}
.about-badge-stars { color: #FBBC05; font-size: 1rem; letter-spacing: 2px; }
.about-badge-text { font-size: 0.72rem; color: var(--gray); font-weight: 600; text-transform: uppercase; letter-spacing: 1px; margin-top: 4px; }
.about-tag { font-size: 0.72rem; font-weight: 600; letter-spacing: 4px; text-transform: uppercase; color: var(--gold-dark); margin-bottom: 16px; display: flex; align-items: center; gap: 10px; }
.about-tag::before { content: ''; width: 30px; height: 2px; background: var(--gold-dark); border-radius: 2px; }
.about-title { font-family: var(--font-title); font-size: clamp(1.9rem, 3.2vw, 2.8rem); font-weight: 600; color: var(--text-dark); margin-bottom: 20px; line-height: 1.15; }
.about-title span { color: var(--gold-dark); }
.about-text { color: var(--text-body); line-height: 1.9; margin-bottom: 16px; font-size: 0.95rem; }
.about-quote { font-family: var(--font-accent); font-style: italic; font-size: 1.15rem; color: var(--text-dark); border-left: 2px solid var(--gold-main); padding-left: 22px; margin: 24px 0; }
.about-stats { display: flex; gap: 40px; margin-top: 30px; }
.about-stat { position: relative; padding-right: 40px; }
.about-stat:not(:last-child)::after { content: ''; position: absolute; right: 0; top: 4px; bottom: 4px; width: 1px; background: rgba(138,87,19,.2); }
.about-stat h3 { font-family: var(--font-title); font-size: 2.6rem; font-weight: 600; color: var(--gold-dark); line-height: 1; }
.about-stat p { font-size: 0.78rem; color: var(--gray); text-transform: uppercase; letter-spacing: 1px; margin-top: 4px; }

/* ---------- EXPERTISE / AREAS ---------- */
.expertise-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.expertise-card { background: rgba(255,255,255,.65); border: 1px solid rgba(130,100,50,.16); padding: 36px 28px; border-radius: 14px; box-shadow: var(--shadow-card); transition: all var(--transition); position: relative; overflow: hidden; }
.expertise-card::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 2px; background: var(--gradient-gold-line); opacity: 0; transition: opacity var(--transition); }
.expertise-card:hover { transform: translateY(-6px); border-color: rgba(201,149,54,.6); box-shadow: var(--shadow-card-hover); }
.expertise-card:hover::before { opacity: 1; }
.expertise-icon { width: 48px; height: 48px; display: flex; align-items: center; justify-content: center; margin-bottom: 18px; background: linear-gradient(135deg, rgba(201,149,54,.10), rgba(201,149,54,.02)); border-radius: var(--radius-sm); }
.expertise-icon svg { width: 26px; height: 26px; stroke: var(--gold); fill: none; stroke-width: 1.5; }
.expertise-card h3 { font-family: var(--font-title); font-weight: 600; font-size: 1.15rem; color: var(--text-dark); margin-bottom: 10px; }
.expertise-card p { font-size: 0.88rem; color: var(--gray); line-height: 1.7; }
.expertise-card ul { margin-top: 12px; }
.expertise-card ul li { font-size: 0.83rem; color: var(--text-body); padding: 4px 0 4px 16px; position: relative; }
.expertise-card ul li::before { content: ''; position: absolute; left: 0; top: 12px; width: 6px; height: 2px; background: var(--gold); border-radius: 2px; }

/* ---------- BLOCO CRIMINAL ---------- */
.section-criminal { background: var(--criminal-bg); }
.criminal-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 70px; align-items: center; }
.criminal-title { font-family: var(--font-title); font-size: clamp(1.9rem, 3.2vw, 2.8rem); font-weight: 600; color: var(--white); line-height: 1.15; margin-bottom: 20px; }
.criminal-text { font-size: 0.95rem; color: var(--text-muted); line-height: 1.9; margin-bottom: 14px; }
.criminal-aviso {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: rgba(201,149,54,.08);
  border: 1px solid rgba(201,149,54,.25);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  margin: 24px 0;
}
.criminal-aviso svg { color: var(--gold-main); flex-shrink: 0; margin-top: 2px; }
.criminal-aviso span { font-size: 0.85rem; color: var(--text-light); opacity: .85; line-height: 1.6; }
.criminal-areas { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.criminal-area-item { display: flex; align-items: center; gap: 10px; }
.criminal-check { color: var(--gold-main); font-size: 0.85rem; font-weight: 700; flex-shrink: 0; }
.criminal-area-item span:last-child { font-size: 0.88rem; color: var(--text-light); opacity: .82; }
.criminal-image { position: relative; }
.criminal-image img { width: 100%; border-radius: var(--radius-lg); object-fit: cover; filter: brightness(.85) contrast(1.05) saturate(1.02); }
.criminal-disclaimer {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  margin-top: 16px;
}
.criminal-disclaimer svg { color: var(--gray-light); flex-shrink: 0; margin-top: 2px; }
.criminal-disclaimer span { font-size: 0.78rem; color: rgba(255,255,255,0.4); line-height: 1.6; font-style: italic; }

/* ---------- CTA BANNER ---------- */
.cta-banner { position: relative; padding: 80px 0; background-size: cover; background-position: center; background-attachment: fixed; }
.cta-banner::before { content: ''; position: absolute; inset: 0; background: var(--overlay-cta); }
.cta-banner .container { position: relative; z-index: 2; text-align: center; }
.cta-banner h2 { font-family: var(--font-title); font-size: clamp(1.9rem, 3.5vw, 2.9rem); font-weight: 600; color: var(--white); margin-bottom: 14px; }
.cta-banner h2 span { color: var(--gold-light); }
.cta-banner p { color: var(--text-light); opacity: .78; font-size: 1rem; max-width: 580px; margin: 0 auto 28px; line-height: 1.8; }

/* ---------- VALUES ---------- */
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.value-card { text-align: center; padding: 46px 28px; background: rgba(255,255,255,.65); border: 1px solid rgba(130,100,50,.16); border-radius: 14px; box-shadow: var(--shadow-card); transition: all var(--transition); }
.value-card:hover { transform: translateY(-6px); border-color: rgba(201,149,54,.6); box-shadow: var(--shadow-card-hover); }
.value-icon { width: 60px; height: 60px; margin: 0 auto 18px; display: flex; align-items: center; justify-content: center; border: 1.5px solid var(--gold); border-radius: 50%; background: linear-gradient(135deg, rgba(201,149,54,.08), transparent); }
.value-icon svg { width: 24px; height: 24px; stroke: var(--gold); fill: none; stroke-width: 1.5; }
.value-card h3 { font-family: var(--font-title); font-weight: 600; font-size: 1.15rem; color: var(--text-dark); margin-bottom: 8px; }
.value-card p { font-size: 0.88rem; color: var(--gray); line-height: 1.7; }

/* ---------- PROCESS ---------- */
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; position: relative; }
.process-grid::before { content: ''; position: absolute; top: 45px; left: 12.5%; right: 12.5%; height: 1px; background: var(--gradient-gold-line); opacity: 0.3; }
.process-step { text-align: center; position: relative; }
.process-number { width: 70px; height: 70px; margin: 0 auto 20px; display: flex; align-items: center; justify-content: center; background: var(--white); border: 2px solid var(--gold); border-radius: 50%; font-family: var(--font-title); font-weight: 600; font-size: 1.4rem; color: var(--gold-dark); position: relative; z-index: 2; transition: all var(--transition); }
.process-step:hover .process-number { background: var(--gradient-gold-btn); color: var(--text-dark); border-color: transparent; box-shadow: var(--shadow-gold); }
.process-step h3 { font-family: var(--font-title); font-weight: 600; font-size: 1.1rem; color: var(--text-dark); margin-bottom: 10px; }
.process-step p { font-size: 0.84rem; color: var(--gray); line-height: 1.7; }

/* ---------- PARALLAX ---------- */
.parallax-section { position: relative; height: 400px; background-size: cover; background-position: center; background-attachment: fixed; display: flex; align-items: center; justify-content: center; }
.parallax-section::before { content: ''; position: absolute; inset: 0; background: var(--overlay-parallax); }
.parallax-content { position: relative; z-index: 2; text-align: center; }
.parallax-content h2 { font-family: var(--font-title); font-size: clamp(2.1rem, 4vw, 3.4rem); font-weight: 600; color: var(--white); margin-bottom: 10px; }
.parallax-content h2 span { color: var(--gold-light); }
.parallax-content p { font-family: var(--font-accent); font-style: italic; font-size: 1.15rem; color: var(--text-muted); }

/* ---------- GOOGLE REVIEWS ---------- */
.google-rating-bar {
  display: flex;
  gap: 50px;
  align-items: center;
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 36px 44px;
  margin-bottom: 48px;
  border: 1px solid var(--gray-border);
}
.google-overall { text-align: center; flex-shrink: 0; }
.google-score { font-family: var(--font-title); font-size: 3.5rem; color: var(--text-dark); line-height: 1; font-weight: 600; }
.google-stars-big { color: #FBBC05; font-size: 1.3rem; letter-spacing: 3px; margin: 6px 0; }
.google-count { font-size: 0.8rem; color: var(--gray); margin-bottom: 12px; }
.google-logo { margin: 0 auto; }
.google-bars { flex: 1; display: flex; flex-direction: column; gap: 8px; }
.google-bar-row { display: flex; align-items: center; gap: 10px; font-size: 0.82rem; color: var(--gray); }
.google-bar-row span:first-child { min-width: 24px; text-align: right; color: var(--text-dark); font-weight: 500; }
.google-bar-row span:last-child { min-width: 32px; color: var(--gray); }
.google-bar-track { flex: 1; height: 8px; background: var(--gray-border); border-radius: 4px; overflow: hidden; }
.google-bar-fill { height: 100%; background: #FBBC05; border-radius: 4px; transition: width 1.2s ease; }

.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.review-card { background: var(--white); border: 1px solid var(--gray-border); border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow-card); transition: all var(--transition); }
.review-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card-hover); border-color: rgba(201,149,54,.35); }
.review-header { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.review-avatar { width: 42px; height: 42px; border-radius: 50%; background: var(--gold-dark); display: flex; align-items: center; justify-content: center; font-size: 0.8rem; font-weight: 700; color: var(--white); flex-shrink: 0; }
.review-name { font-size: 0.9rem; font-weight: 600; color: var(--text-dark); }
.review-stars { color: #FBBC05; font-size: 0.85rem; letter-spacing: 1px; margin-top: 2px; }
.review-google-icon { margin-left: auto; }
.review-text { font-size: 0.88rem; color: var(--text-body); line-height: 1.8; margin-bottom: 14px; font-style: italic; }
.review-area { display: inline-block; font-size: 0.72rem; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; color: var(--gold-dark); background: rgba(201,149,54,.08); padding: 4px 12px; border-radius: var(--radius-full); }

/* ---------- BLOG — ÚLTIMAS PUBLICAÇÕES (carrossel) ---------- */
.blog-carousel { position: relative; padding: 0 8px; }
.blog-carousel-track {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  min-height: 60px;
  padding: 4px 4px 12px;
}
.blog-carousel-track::-webkit-scrollbar { display: none; }
.blog-grid-loading { color: var(--text-muted); font-size: 0.9rem; margin: 0 auto; }

.blog-carousel-arrow {
  position: absolute; top: 42%; transform: translateY(-50%);
  width: 46px; height: 46px; flex-shrink: 0;
  border-radius: 50%; border: 1px solid rgba(201,149,54,.35);
  background: rgba(5,5,5,.7); backdrop-filter: blur(6px);
  color: var(--gold-main);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; z-index: 5; transition: all var(--transition);
}
.blog-carousel-arrow svg { width: 20px; height: 20px; }
.blog-carousel-arrow:hover { background: var(--gradient-gold-btn); color: var(--text-dark); border-color: transparent; box-shadow: var(--shadow-gold); }
.blog-carousel-arrow:disabled { opacity: .3; cursor: default; pointer-events: none; }
.blog-carousel-prev { left: -14px; }
.blog-carousel-next { right: -14px; }

.blog-carousel-dots { display: flex; align-items: center; justify-content: center; gap: 8px; margin-top: 30px; }
.blog-carousel-dot { width: 8px; height: 8px; padding: 0; border-radius: 50%; border: none; background: rgba(255,255,255,.15); cursor: pointer; transition: all var(--transition); }
.blog-carousel-dot:hover { background: rgba(201,149,54,.5); }
.blog-carousel-dot.active { width: 26px; border-radius: 4px; background: var(--gradient-gold-line); }

.blog-post-card {
  display: flex; flex-direction: column;
  flex: 0 0 calc((100% - 48px) / 3);
  scroll-snap-align: start;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(201,149,54,.16);
  border-radius: 14px;
  padding: 22px 22px 26px;
  position: relative; overflow: hidden;
  transition: all var(--transition);
}
.blog-post-card::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 2px; background: var(--gradient-gold-line); opacity: 0; transition: opacity var(--transition); }
.blog-post-card:hover { transform: translateY(-6px); border-color: rgba(201,149,54,.5); background: rgba(255,255,255,.045); }
.blog-post-card:hover::before { opacity: 1; }
.blog-post-media {
  height: 130px;
  border-radius: 10px;
  margin-bottom: 18px;
  display: flex; align-items: center; justify-content: center;
  background: radial-gradient(circle at 30% 20%, rgba(201,149,54,.20), transparent 60%), linear-gradient(135deg, var(--black-soft), var(--charcoal));
  border: 1px solid rgba(201,149,54,.15);
  flex-shrink: 0;
}
.blog-post-media svg { width: 38px; height: 38px; stroke: var(--gold-main); fill: none; stroke-width: 1.4; opacity: .95; }
.blog-post-category { font-size: 0.68rem; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: var(--gold-main); margin-bottom: 10px; }
.blog-post-title { font-family: var(--font-title); font-weight: 600; font-size: 1.08rem; color: var(--white); line-height: 1.35; margin-bottom: 10px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.blog-post-excerpt { font-size: 0.85rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 18px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; flex: 1; }
.blog-post-meta { display: flex; align-items: center; justify-content: space-between; font-size: 0.75rem; color: rgba(255,255,255,.4); margin-top: auto; padding-top: 14px; border-top: 1px solid rgba(255,255,255,.07); }
.blog-post-read { color: var(--gold-main); font-weight: 600; }
.blog-post-card:hover .blog-post-read { color: var(--gold-light); }

/* ---------- CONTACT / FAQ ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: start; }
.contact-info h3 { font-family: var(--font-title); font-weight: 600; font-size: 1.9rem; color: var(--text-dark); margin-bottom: 16px; }
.contact-info > p { color: var(--gray); line-height: 1.8; margin-bottom: 28px; }
.contact-item { display: flex; align-items: center; gap: 16px; margin-bottom: 18px; }
.contact-item-icon { width: 48px; height: 48px; display: flex; align-items: center; justify-content: center; border: 1px solid var(--gray-border); border-radius: var(--radius-sm); flex-shrink: 0; background: linear-gradient(135deg, rgba(201,149,54,.06), transparent); }
.contact-item-icon svg { width: 20px; height: 20px; stroke: var(--gold); fill: none; stroke-width: 1.5; }
.contact-item-text h4 { font-size: 0.88rem; color: var(--text-dark); margin-bottom: 2px; }
.contact-item-text p { font-size: 0.83rem; color: var(--gray); margin: 0; }

.faq-list { display: flex; flex-direction: column; gap: 10px; }
.faq-item { border: 1px solid var(--gray-border); background: var(--white); border-radius: var(--radius-sm); overflow: hidden; }
.faq-question { display: flex; justify-content: space-between; align-items: center; padding: 18px 22px; cursor: pointer; transition: background var(--transition); }
.faq-question:hover { background: rgba(201,149,54,.04); }
.faq-question h4 { font-size: 0.92rem; font-weight: 500; color: var(--text-dark); }
.faq-question .faq-toggle { color: var(--gold-dark); font-size: 1.3rem; transition: transform 0.3s ease; font-weight: 300; }
.faq-item.active .faq-toggle { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.4s ease; }
.faq-item.active .faq-answer { max-height: 300px; padding: 0 22px 18px; }
.faq-answer p { font-size: 0.88rem; color: var(--gray); line-height: 1.8; }

/* ---------- FOOTER ---------- */
.footer { background: var(--black); border-top: 1px solid rgba(201,149,54,.25); padding: 60px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px; padding-bottom: 40px; }
.footer-brand img { height: 100px; margin-bottom: 16px; }
.footer-brand p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.8; max-width: 350px; }
.footer h4 { font-family: var(--font-title); font-weight: 600; font-size: 1rem; color: var(--gold-main); margin-bottom: 14px; }
.footer-links a { display: block; font-size: 0.85rem; color: rgba(234,234,234,.6); padding: 4px 0; transition: color var(--transition), padding-left var(--transition); }
.footer-links a:hover { color: var(--gold-light); padding-left: 8px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding: 20px 0; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px; }
.footer-bottom p { font-size: 0.78rem; color: var(--text-muted); }
.footer-bottom a { color: var(--gold-main); }
.footer-bottom a:hover { color: var(--gold-light); }

/* ---------- WHATSAPP FLOAT ---------- */
.whatsapp-float { position: fixed; bottom: 30px; right: 30px; z-index: 900; width: 60px; height: 60px; background: #25D366; border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 6px 30px rgba(37,211,102,0.4); transition: all var(--transition); animation: whatsappPulse 2s infinite; }
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 8px 40px rgba(37,211,102,0.5); }
.whatsapp-float svg { width: 30px; height: 30px; fill: white; }
@keyframes whatsappPulse { 0%, 100% { box-shadow: 0 6px 30px rgba(37,211,102,0.4); } 50% { box-shadow: 0 6px 30px rgba(37,211,102,0.7), 0 0 0 14px rgba(37,211,102,0.1); } }

/* ---------- ANIMATIONS ---------- */
@keyframes fadeUp { to { opacity: 1; transform: translateY(0); } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.reveal { opacity: 0; transform: translateY(40px); transition: opacity 0.8s ease, transform 0.8s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-left { opacity: 0; transform: translateX(-40px); transition: opacity 0.8s ease, transform 0.8s ease; }
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right { opacity: 0; transform: translateX(40px); transition: opacity 0.8s ease, transform 0.8s ease; }
.reveal-right.visible { opacity: 1; transform: translateX(0); }
.counter { display: inline-block; }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1024px) {
  .expertise-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid::before { display: none; }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-post-card { flex-basis: calc((100% - 24px) / 2); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .dor-grid { grid-template-columns: 1fr; gap: 40px; }
  .criminal-grid { grid-template-columns: 1fr; gap: 40px; }
  .google-rating-bar { flex-direction: column; gap: 24px; }
}

@media (max-width: 768px) {
  .navbar-links { display: none; }
  .hamburger { display: flex; }
  .mobile-menu { display: flex; }
  .navbar-logo img { height: 62px; }
  .navbar.scrolled .navbar-logo img { height: 50px; }

  .hero-content { padding: 100px 0 60px; }
  .hero-buttons { flex-direction: column; }
  .hero-buttons .btn { width: 100%; justify-content: center; }
  .hero-trust { flex-direction: column; gap: 10px; }
  .scroll-indicator { display: none; }

  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-image-wrapper { order: -1; }
  .about-image { max-width: 100%; }
  .about-badge { right: 0; }

  .expertise-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .criminal-areas { grid-template-columns: 1fr; }

  .blog-carousel { padding: 0; }
  .blog-post-card { flex-basis: 82%; }
  .blog-carousel-prev { left: 4px; }
  .blog-carousel-next { right: 4px; }
  .blog-carousel-arrow { width: 40px; height: 40px; }

  .section { padding: 70px 0; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .parallax-section { background-attachment: scroll; height: 280px; }
  .cta-banner { background-attachment: scroll; }
}

@media (max-width: 480px) {
  html, body { width: 100%; overflow-x: hidden; }
  .container { padding: 0 16px; }
  .hero-title { font-size: 2.1rem; }
  .about-stats { flex-direction: column; gap: 20px; }
  .about-stat { padding-right: 0; }
  .about-stat::after { display: none; }
  .process-grid { grid-template-columns: 1fr; }
  .google-rating-bar { padding: 24px 20px; }
}
