/* ========== RESET & BASE ========== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: auto; font-size: 16px; }
body {
  font-family: var(--sans);
  background: var(--bg-primary);
  color: var(--text-primary);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { border: none; cursor: pointer; font-family: inherit; }

/* ========== DESIGN TOKENS ========== */
:root {
  --bg-primary: #F8F8F8;
  --bg-secondary: #FFFFFF;
  --bg-tertiary: #F1EAE3;
  --bg-card: #FFFFFF;
  --bg-light: #FFFFFF;
  --bg-warm: #E3D5C7;
  --bg-dark: #3B0124;
  --text-primary: #403F3D;
  --text-dark: #3B0124;
  --text-muted: #7A7672;
  --text-muted-light: #55524F;
  --text-on-dark: #F8F8F8;
  --accent: #3B0124;
  --accent-hover: #6A1B42;
  --accent-dark: #BD8EAB;
  --accent-soft: #BD8EAB;
  --accent-glow: rgba(189, 142, 171, 0.15);
  --accent-glow-strong: rgba(189, 142, 171, 0.28);
  --hairline: rgba(64, 63, 61, 0.10);
  --danger: #E85D5D;
  --warning: #E8A33D;
  --whatsapp: #25D366;
  --whatsapp-hover: #20BD5A;
  --serif: 'DM Serif Display', Georgia, serif;
  --sans: 'Jost', system-ui, sans-serif;
  --serif-reflect: 'Lora', Georgia, serif;
  --max-w: 1200px;
  --px: clamp(1.25rem, 4vw, 3rem);
  --section-py: clamp(5rem, 10vw, 8rem);
  --radius: 16px;
  --radius-sm: 10px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ========== TYPOGRAPHY ========== */
h1, h2, h3 { font-family: var(--serif); line-height: 1.15; }
h1 { font-size: clamp(2.5rem, 5.5vw, 4rem); font-weight: 400; letter-spacing: -0.01em; }
h2 { font-size: clamp(1.875rem, 3.5vw, 2.625rem); font-weight: 400; letter-spacing: -0.005em; }
h3 { font-size: clamp(1.25rem, 2vw, 1.5rem); font-weight: 600; font-family: var(--sans); }
p { line-height: 1.7; color: var(--text-muted-light); }
.accent-text { color: var(--accent); }
.reflect { font-family: var(--serif-reflect); font-style: italic; }
.section-label {
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent);
  margin-bottom: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.section-label::before {
  content: '';
  width: 24px; height: 1px;
  background: var(--accent);
}
.section-title { margin-bottom: 1.25rem; }
.section-subtitle {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  max-width: 600px;
  color: var(--text-muted-light);
  line-height: 1.7;
}

/* ========== UTILITIES ========== */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--px);
}
.section-padding { padding: var(--section-py) 0; }
.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }
.visually-hidden {
  position: absolute; width: 1px; height: 1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap;
}

/* ========== GOLD DECORATIVE LINE ========== */
.gold-line {
  width: 60px; height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--accent-dark));
  margin: 1.25rem auto;
  border-radius: 1px;
}

/* ========== BUTTONS ========== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  padding: 0.875rem 2rem;
  font-size: 0.9375rem;
  font-weight: 600;
  border-radius: 50px;
  transition: all var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: var(--bg-primary);
  box-shadow: 0 4px 20px rgba(59, 1, 36, 0.3);
}
.btn-primary:hover {
  background: linear-gradient(135deg, var(--accent-hover), var(--accent));
  box-shadow: 0 6px 30px rgba(59, 1, 36, 0.45);
  transform: translateY(-2px);
}
.btn-outline {
  background: transparent;
  color: var(--text-primary);
  border: 1.5px solid rgba(59, 1, 36, 0.4);
}
.btn-outline:hover {
  border-color: var(--accent);
  background: var(--accent-glow);
  transform: translateY(-2px);
}
.btn-whatsapp {
  background: var(--whatsapp);
  color: #fff;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
}
.btn-whatsapp:hover {
  background: var(--whatsapp-hover);
  box-shadow: 0 6px 30px rgba(37, 211, 102, 0.45);
  transform: translateY(-2px);
}
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }

/* ========== HEADER ========== */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1rem 0;
  transition: all var(--transition);
}
.header.scrolled {
  background: rgba(248, 248, 248, 0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(59, 1, 36, 0.1);
  box-shadow: 0 2px 20px rgba(64, 63, 61, 0.06);
  padding: 0.75rem 0;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--px);
}
.logo {
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-primary);
  letter-spacing: -0.01em;
}
.logo span { color: var(--accent); }
.nav { display: flex; align-items: center; gap: 2rem; }
.nav a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-muted-light);
  transition: color var(--transition);
  position: relative;
}
.nav a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1.5px;
  background: var(--accent);
  transition: width var(--transition);
}
.nav a:hover { color: var(--text-primary); }
.nav a:hover::after { width: 100%; }
.nav .btn { font-size: 0.8125rem; padding: 0.625rem 1.5rem; }
.mobile-toggle {
  display: none;
  background: none;
  color: var(--text-primary);
  font-size: 1.5rem;
  padding: 0.5rem;
}

/* ========== MOBILE MENU ========== */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(248, 248, 248, 0.98);
  backdrop-filter: blur(30px);
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
}
.mobile-menu.active { opacity: 1; visibility: visible; }
.mobile-menu a {
  font-family: var(--serif);
  font-size: 1.75rem;
  font-weight: 500;
  color: var(--text-primary);
  transition: color var(--transition);
}
.mobile-menu a:hover { color: var(--accent); }
.mobile-close {
  position: absolute;
  top: 1.25rem; right: 1.5rem;
  background: none;
  color: var(--text-primary);
  font-size: 2rem;
  padding: 0.5rem;
}

/* ========== NR-1 URGENCY BANNER ========== */
.urgency-banner {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1001;
  background: linear-gradient(90deg, #EFE7DF 0%, #E3D5C7 50%, #EFE7DF 100%);
  border-bottom: 1px solid rgba(59, 1, 36, 0.15);
  padding: 0.5rem 0;
  text-align: center;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--accent);
  letter-spacing: 0.02em;
  transition: transform 0.3s ease;
}
.urgency-banner .urgency-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}
.urgency-banner svg { width: 14px; height: 14px; flex-shrink: 0; }
.urgency-banner strong { color: var(--accent); font-weight: 700; }
.urgency-banner a { color: var(--accent); text-decoration: underline; text-underline-offset: 2px; margin-left: 0.25rem; }
.urgency-banner a:hover { color: var(--accent-hover); }
.has-banner .header { top: 32px; }
.has-banner .hero { padding-top: calc(5rem + 32px); }

/* ========== HERO ========== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 5rem;
}
.hero-bg {
  position: absolute;
  top: 0; right: 0;
  width: 55%;
  height: 100%;
  overflow: hidden;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--bg-primary) 0%, transparent 40%, transparent 70%, rgba(59, 1, 36, 0.05) 100%);
  z-index: 1;
}
.hero-bg-placeholder {
  width: 100%; height: 100%;
  background: linear-gradient(160deg, rgba(189, 142, 171, 0.18) 0%, #F1EAE3 50%, #E3D5C7 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.hero-bg-placeholder::before {
  content: '';
  position: absolute;
  width: 340px; height: 340px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(59, 1, 36,0.12) 0%, transparent 70%);
  top: 25%; left: 50%;
  transform: translateX(-50%);
}
.hero-bg-placeholder .photo-frame {
  width: 280px; height: 360px;
  border: 2px solid rgba(59, 1, 36,0.15);
  border-radius: 200px 200px 20px 20px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(59, 1, 36,0.03);
}
.hero-bg-placeholder .photo-frame svg { width: 80px; height: 80px; color: rgba(59, 1, 36,0.2); }
/* Foto real do hero (injetada pelo CMS). Regras inertes enquanto não existir <img>. */
.hero-bg-placeholder .photo-frame:has(.photo-frame-img) {
  /* só recorta quando há foto: sem img, a .photo-label vive fora do frame (bottom:-2rem) */
  overflow: hidden;
  background: transparent;
}
/* silhueta e legenda somem quando a foto real está presente */
.hero-bg-placeholder .photo-frame:has(.photo-frame-img) > svg,
.hero-bg-placeholder .photo-frame:has(.photo-frame-img) > .photo-label { display: none; }
.photo-frame-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* retrato: mantém o rosto (terço superior) dentro do arco, sem cortar a testa */
  object-position: 50% 22%;
  display: block;
  /* acompanha o raio assimétrico do arco; o overflow:hidden acima é a rede de segurança */
  border-radius: 198px 198px 18px 18px;
}
.hero-bg-placeholder .photo-label {
  position: absolute;
  bottom: -2rem;
  font-size: 0.6875rem;
  color: var(--text-muted);
  font-style: italic;
  letter-spacing: 0.05em;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 620px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(59, 1, 36, 0.1);
  border: 1px solid rgba(59, 1, 36, 0.2);
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1.5rem;
}
.hero-badge svg { width: 14px; height: 14px; }
.hero h1 { margin-bottom: 1.25rem; }
.hero h1 .highlight {
  color: var(--accent);
  position: relative;
}
.hero h1 .highlight::after {
  content: '';
  position: absolute;
  bottom: 2px; left: 0;
  width: 100%;
  height: 8px;
  background: rgba(59, 1, 36, 0.2);
  z-index: -1;
  border-radius: 2px;
}
.hero-subtitle {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  color: var(--text-muted-light);
  line-height: 1.8;
  margin-bottom: 2rem;
  max-width: 520px;
}
.hero-ctas { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-trust {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(64, 63, 61,0.06);
}
.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  color: var(--text-muted);
}
.hero-trust-item svg { width: 16px; height: 16px; color: var(--accent); flex-shrink: 0; }
.hero-scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-muted);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--accent), transparent);
}

/* ========== NUMBERS / IMPACT ========== */
.numbers {
  background: var(--bg-secondary);
  border-top: 1px solid rgba(59, 1, 36, 0.06);
  border-bottom: 1px solid rgba(59, 1, 36, 0.06);
}
.numbers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}
.number-item {
  padding: 2rem 0;
  position: relative;
}
.number-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0; top: 25%; height: 50%;
  width: 1px;
  background: rgba(64, 63, 61,0.06);
}
.number-icon {
  width: 44px; height: 44px;
  margin: 0 auto 1rem;
  background: var(--accent-glow);
  border: 1px solid rgba(59, 1, 36,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
}
.number-icon svg { width: 20px; height: 20px; }
.number-value {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.number-label {
  font-size: 0.8125rem;
  color: var(--text-muted);
  line-height: 1.5;
  max-width: 180px;
  margin: 0 auto;
}

/* ========== PROBLEM SECTION ========== */
.problem { background: var(--bg-primary); }
.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.problem-stat {
  background: var(--bg-secondary);
  border: 1px solid rgba(64, 63, 61,0.05);
  border-radius: var(--radius);
  padding: 2rem;
  text-align: center;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.problem-stat::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--danger), var(--warning));
  opacity: 0;
  transition: opacity var(--transition);
}
.problem-stat:hover {
  border-color: rgba(232, 93, 93, 0.2);
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.3);
}
.problem-stat:hover::before { opacity: 1; }
.problem-icon {
  width: 52px; height: 52px;
  margin: 0 auto 1.25rem;
  background: rgba(232, 93, 93, 0.08);
  border: 1px solid rgba(232, 93, 93, 0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--danger);
}
.problem-icon svg { width: 24px; height: 24px; }
.problem-number {
  font-family: var(--serif);
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 700;
  color: var(--danger);
  line-height: 1;
  margin-bottom: 0.75rem;
}
.problem-stat h3 {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}
.problem-stat p {
  font-size: 0.8125rem;
  color: var(--text-muted);
  line-height: 1.6;
}
.problem-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  margin-top: 3rem;
  flex-wrap: wrap;
}
.problem-quote {
  font-size: 1.0625rem;
  font-style: italic;
  color: var(--text-muted-light);
  font-family: var(--serif);
}
.problem-roi {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1.5rem;
  background: rgba(59, 1, 36,0.08);
  border: 1px solid rgba(59, 1, 36,0.15);
  border-radius: 50px;
}
.problem-roi-value {
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--accent);
}
.problem-roi-text {
  font-size: 0.75rem;
  color: var(--text-muted);
  line-height: 1.3;
}
.problem-roi-text strong { color: var(--text-muted-light); }

/* ========== SERVICES ========== */
.services { background: var(--bg-secondary); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.service-card {
  background: var(--bg-card);
  border: 1px solid rgba(64, 63, 61,0.05);
  border-radius: var(--radius);
  padding: 2.5rem 2rem;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent-dark));
  opacity: 0;
  transition: opacity var(--transition);
}
.service-card:hover {
  border-color: rgba(59, 1, 36, 0.2);
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.4);
}
.service-card:hover::before { opacity: 1; }
.service-icon {
  width: 56px; height: 56px;
  background: var(--accent-glow);
  border: 1px solid rgba(59, 1, 36, 0.2);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: var(--accent);
}
.service-icon svg { width: 28px; height: 28px; }
.service-tag {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
  background: var(--accent-glow);
  padding: 0.25rem 0.75rem;
  border-radius: 50px;
  margin-bottom: 1rem;
}
.service-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: var(--text-primary);
}
.service-card p {
  font-size: 0.9375rem;
  color: var(--text-muted-light);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}
.service-details {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}
.service-detail {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.75rem;
  color: var(--text-muted);
  background: rgba(64, 63, 61,0.03);
  padding: 0.375rem 0.75rem;
  border-radius: 50px;
  border: 1px solid rgba(64, 63, 61,0.05);
}
.service-detail svg { width: 12px; height: 12px; color: var(--accent); }
.service-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--accent);
  transition: gap var(--transition);
}
.service-link:hover { gap: 0.75rem; }
.service-link svg { width: 16px; height: 16px; }

/* ========== MÉTODO SECTION ========== */
.method { background: var(--bg-primary); position: relative; overflow: hidden; }
.method::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(59, 1, 36,0.04) 0%, transparent 70%);
}
.method-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-top: 3rem;
}
.method-visual {
  position: relative;
}
.method-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.method-step {
  display: flex;
  gap: 1.25rem;
  padding: 1.75rem 0;
  position: relative;
}
.method-step:not(:last-child) { border-bottom: 1px solid rgba(64, 63, 61,0.05); }
.method-step-number {
  width: 48px; height: 48px;
  background: var(--accent-glow);
  border: 1.5px solid rgba(59, 1, 36,0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--accent);
  flex-shrink: 0;
}
.method-step h3 {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.375rem;
  font-family: var(--sans);
}
.method-step p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.6;
}
.method-text h2 { margin-bottom: 1rem; }
.method-text > p {
  font-size: 1rem;
  color: var(--text-muted-light);
  line-height: 1.8;
  margin-bottom: 2rem;
}
.method-highlight {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  background: var(--accent-glow);
  border: 1px solid rgba(59, 1, 36,0.15);
  border-radius: var(--radius-sm);
  margin-top: 2rem;
}
.method-highlight svg { width: 24px; height: 24px; color: var(--accent); flex-shrink: 0; }
.method-highlight p {
  font-size: 0.875rem;
  color: var(--text-muted-light);
  line-height: 1.5;
}
.method-highlight strong { color: var(--accent); }

/* ========== ABOUT MINI ========== */
.about-mini { background: var(--bg-secondary); }
.about-inner {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 4rem;
  align-items: center;
}
.about-photo {
  width: 300px; height: 380px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(59, 1, 36,0.08), var(--bg-tertiary));
  border: 1px solid rgba(59, 1, 36,0.12);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  position: relative;
  overflow: hidden;
}
.about-photo svg { width: 64px; height: 64px; color: rgba(59, 1, 36,0.2); }
.about-photo-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-style: italic;
}
.about-photo::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 40%;
  background: linear-gradient(to top, rgba(189, 142, 171, 0.28), transparent);
  z-index: 1;
}
/* Foto real do About (injetada pelo CMS). Inerte enquanto não existir <img>. */
.about-photo:has(.about-photo-img) { background: transparent; }
.about-photo:has(.about-photo-img) > svg,
.about-photo:has(.about-photo-img) > .about-photo-label { display: none; }
/* sobre foto real o véu rosé fica só como assinatura de cor: mais curto e bem mais leve */
.about-photo:has(.about-photo-img)::after {
  height: 30%;
  background: linear-gradient(to top, rgba(189, 142, 171, 0.12), transparent);
}
.about-photo-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* retrato vertical 300x380: rosto no terço superior */
  object-position: 50% 25%;
  display: block;
  /* .about-photo já tem overflow:hidden; o raio aqui evita hairline nos cantos */
  border-radius: inherit;
  z-index: 0;
}
.about-text h2 { margin-bottom: 1rem; }
.about-text > p {
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 1.25rem;
}
.about-credentials {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}
.about-credential {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(64, 63, 61,0.03);
  border: 1px solid rgba(64, 63, 61,0.06);
  border-radius: 50px;
  font-size: 0.8125rem;
  color: var(--text-muted-light);
}
.about-credential svg { width: 16px; height: 16px; color: var(--accent); }

/* ========== TESTIMONIALS ========== */
.testimonials { background: var(--bg-primary); position: relative; }
.testimonials-track {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-bottom: 1rem;
  margin-top: 3rem;
}
.testimonials-track::-webkit-scrollbar { display: none; }
.testimonial-card {
  flex: 0 0 calc(33.333% - 1rem);
  min-width: 320px;
  scroll-snap-align: start;
  background: var(--bg-secondary);
  border: 1px solid rgba(64, 63, 61,0.05);
  border-radius: var(--radius);
  padding: 2rem;
  position: relative;
  transition: all var(--transition);
}
.testimonial-card:hover {
  border-color: rgba(59, 1, 36,0.12);
  transform: translateY(-2px);
}
.testimonial-service {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--accent);
  margin-bottom: 0.75rem;
}
.testimonial-quote-mark {
  font-family: var(--serif);
  font-size: 3.5rem;
  color: var(--accent);
  opacity: 0.25;
  line-height: 1;
  margin-bottom: -0.25rem;
}
.testimonial-text {
  font-family: var(--serif-reflect);
  font-size: 1.0625rem;
  color: var(--text-muted-light);
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 1.5rem;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.testimonial-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 1rem;
  font-weight: 700;
  color: var(--bg-primary);
  flex-shrink: 0;
}
.testimonial-name {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-primary);
}
.testimonial-role {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 2px;
}
.testimonial-rating {
  display: flex;
  gap: 2px;
  margin-top: 4px;
}
.testimonial-rating svg {
  width: 14px; height: 14px;
  fill: var(--accent);
}

/* ========== CREDENTIALS ========== */
.credentials { background: var(--bg-secondary); }
.credentials-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.credential-item {
  text-align: center;
  padding: 2rem 1.25rem;
  background: var(--bg-card);
  border: 1px solid rgba(64, 63, 61,0.05);
  border-radius: var(--radius);
  transition: all var(--transition);
}
.credential-item:hover {
  border-color: rgba(59, 1, 36, 0.15);
  transform: translateY(-4px);
}
.credential-icon {
  width: 64px; height: 64px;
  margin: 0 auto 1.25rem;
  background: var(--accent-glow);
  border: 1px solid rgba(59, 1, 36, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
}
.credential-icon svg { width: 28px; height: 28px; }
.credential-item h3 {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.375rem;
}
.credential-item p {
  font-size: 0.8125rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ========== AUDIENCE SECTION ========== */
.audience { background: var(--bg-primary); }
.audience-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-top: 3rem;
}
.audience-card {
  background: var(--bg-secondary);
  border: 1px solid rgba(64, 63, 61,0.05);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: all var(--transition);
}
.audience-card:hover {
  border-color: rgba(59, 1, 36,0.15);
  transform: translateY(-4px);
}
.audience-icon {
  width: 56px; height: 56px;
  margin: 0 auto 1rem;
  background: var(--accent-glow);
  border: 1px solid rgba(59, 1, 36,0.12);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
}
.audience-icon svg { width: 26px; height: 26px; }
.audience-card h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
  font-family: var(--sans);
}
.audience-card p {
  font-size: 0.8125rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ========== SOCIAL FEED ========== */
.social-feed { background: var(--bg-secondary); }
.feed-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 3rem;
}
.feed-item {
  aspect-ratio: 9/16;
  background: var(--bg-card);
  border: 1px solid rgba(64, 63, 61,0.05);
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: all var(--transition);
}
.feed-item:hover { transform: translateY(-4px); box-shadow: 0 8px 30px rgba(0,0,0,0.4); }
.feed-item-bg {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, var(--bg-tertiary), var(--bg-secondary));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1.5rem;
  text-align: center;
}
.feed-play {
  width: 48px; height: 48px;
  background: rgba(59, 1, 36, 0.15);
  border: 2px solid var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  transition: all var(--transition);
}
.feed-item:hover .feed-play { background: var(--accent); color: var(--bg-primary); }
.feed-play svg { width: 20px; height: 20px; margin-left: 2px; }
.feed-item-title {
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--text-muted-light);
  line-height: 1.4;
}
.feed-item-platform {
  position: absolute;
  top: 0.75rem; right: 0.75rem;
  width: 28px; height: 28px;
  background: rgba(0,0,0,0.6);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-primary);
}
.feed-item-platform svg { width: 16px; height: 16px; }
/* --- Capa do card de feed (injetada pelo CMS). Inerte sem .feed-thumb. --- */
.feed-thumb {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* vertical 9/16 ja no formato do card: enquadramento centralizado basta */
  object-position: 50% 50%;
  display: block;
  z-index: 0;
}
.feed-item-bg:has(.feed-thumb) {
  position: relative;
  background: none;
}
/* scrim escuro sobre a capa: e ele, nao a foto, que define o contraste do texto.
   Piso de 0.58 na faixa do play/titulo garante >=5:1 ate sobre uma capa branca. */
.feed-item-bg:has(.feed-thumb)::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
    rgba(0, 0, 0, 0.32) 0%,
    rgba(0, 0, 0, 0.58) 42%,
    rgba(0, 0, 0, 0.68) 100%);
  z-index: 1;
  pointer-events: none;
}
.feed-item-bg:has(.feed-thumb) > .feed-play,
.feed-item-bg:has(.feed-thumb) > .feed-item-title {
  position: relative;
  z-index: 2;
}
/* sobre capa o conteudo inverte para claro (accent escuro sumiria no scrim) */
.feed-item-bg:has(.feed-thumb) > .feed-play {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.9);
  color: #FFFFFF;
}
.feed-item:hover .feed-item-bg:has(.feed-thumb) > .feed-play {
  background: #FFFFFF;
  color: var(--accent);
}
.feed-item-bg:has(.feed-thumb) > .feed-item-title { color: var(--text-on-dark); }
/* badge da rede: o fundo preto 0.6 ja existia, mas o icone herdava --text-primary
   (escuro sobre escuro). Sobre capa ele passa a claro. */
.feed-item:has(.feed-thumb) .feed-item-platform {
  background: rgba(0, 0, 0, 0.55);
  color: var(--text-on-dark);
  z-index: 2;
}
.feed-footer {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 2.5rem;
}

/* ========== CTA FINAL ========== */
.cta-final {
  background: linear-gradient(135deg, #F1EAE3 0%, #E3D5C7 50%, #F1EAE3 100%);
  position: relative;
  overflow: hidden;
}
.cta-final::before {
  content: '';
  position: absolute;
  top: -50%; left: -50%;
  width: 200%; height: 200%;
  background: radial-gradient(ellipse at center, rgba(189, 142, 171, 0.18) 0%, transparent 60%);
}
.cta-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
}
.cta-content h2 { margin-bottom: 1rem; }
.cta-content p {
  font-size: 1.0625rem;
  color: var(--text-muted-light);
  line-height: 1.7;
  margin-bottom: 2rem;
}
.cta-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ========== FOOTER ========== */
.footer {
  background: var(--bg-dark);
  color: var(--text-on-dark);
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding: var(--section-py) 0;
}
.footer-brand .logo { font-size: 1.125rem; margin-bottom: 0.75rem; color: var(--text-on-dark); }
.footer-brand .logo span { color: var(--accent-soft); }
.footer-brand p {
  font-size: 0.8125rem;
  color: rgba(248, 248, 248, 0.7);
  line-height: 1.6;
  max-width: 280px;
  margin-bottom: 1.25rem;
}
.footer-social {
  display: flex;
  gap: 0.75rem;
}
.footer-social a {
  width: 40px; height: 40px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(248, 248, 248, 0.85);
  transition: all var(--transition);
}
.footer-social a:hover {
  background: rgba(189, 142, 171, 0.18);
  border-color: var(--accent-soft);
  color: var(--accent-soft);
  transform: translateY(-2px);
}
.footer-social a svg { width: 18px; height: 18px; }
.footer-column h4 {
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-on-dark);
  margin-bottom: 1.25rem;
}
.footer-column a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: rgba(248, 248, 248, 0.75);
  padding: 0.375rem 0;
  transition: color var(--transition);
}
.footer-column a svg { width: 14px; height: 14px; color: var(--accent-soft); opacity: 0.7; }
.footer-column a:hover { color: var(--accent-soft); }
.footer-column a:hover svg { opacity: 1; }
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 1.5rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.75rem;
  color: rgba(248, 248, 248, 0.6);
}

/* ========== WHATSAPP FLOAT ========== */
.whatsapp-float {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 900;
  width: 60px;
  height: 60px;
  background: var(--whatsapp);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: all var(--transition);
}
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(37, 211, 102, 0.55);
}
.whatsapp-float svg { width: 28px; height: 28px; }
.whatsapp-float .pulse-ring {
  position: absolute;
  width: 100%; height: 100%;
  border-radius: 50%;
  border: 2px solid var(--whatsapp);
  animation: pulse 2s ease-out infinite;
}
@keyframes pulse {
  0% { transform: scale(1); opacity: 0.6; }
  100% { transform: scale(1.6); opacity: 0; }
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
  .hero-bg { width: 45%; opacity: 0.6; }
  /* Entre 769px e 1024px o hero-bg (45%) ja invade a coluna de texto (hero-content
     tem ate 620px), entao a foto NAO pode subir de opacidade sem veu: com foto
     escura o contraste do H1 desabaria. 0.35 + piso de veu de 0.45 mantem
     H1 ~6.5:1 e subtitulo ~4.8:1 no pior caso. */
  .hero-bg:has(.photo-frame-img) { opacity: 0.35; }
  .hero-bg:has(.photo-frame-img)::after {
    background: linear-gradient(90deg,
      var(--bg-primary) 0%,
      rgba(248, 248, 248, 0.6) 25%,
      rgba(248, 248, 248, 0.45) 60%,
      rgba(248, 248, 248, 0.45) 100%);
  }
  .services-grid, .problem-grid { grid-template-columns: 1fr 1fr; }
  .credentials-grid { grid-template-columns: repeat(2, 1fr); }
  .audience-grid { grid-template-columns: repeat(2, 1fr); }
  .method-content { grid-template-columns: 1fr; gap: 2rem; }
  .about-inner { grid-template-columns: 1fr; gap: 2rem; }
  .about-photo { width: 100%; max-width: 400px; margin: 0 auto; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

@media (max-width: 768px) {
  .nav { display: none; }
  .mobile-toggle { display: block; }
  .urgency-banner { font-size: 0.6875rem; }
  .hero { min-height: 100svh; }
  .hero-bg { width: 100%; opacity: 0.2; }
  /* No mobile o hero-bg fica ATRAS do H1/subtitulo: a foto e marca d'agua, nunca
     protagonista. Mantemos a opacidade proxima do 0.2 do design original e o fade
     vertical nunca chega a transparente na faixa do texto (veu minimo de 0.45),
     garantindo contraste AAA no H1 e AA no subtitulo mesmo com foto escura. */
  .hero-bg:has(.photo-frame-img) { opacity: 0.25; }
  .hero-bg:has(.photo-frame-img)::after {
    background: linear-gradient(180deg,
      var(--bg-primary) 0%,
      rgba(248, 248, 248, 0.6) 22%,
      rgba(248, 248, 248, 0.45) 55%,
      rgba(248, 248, 248, 0.7) 100%);
  }
  .hero-content { max-width: 100%; }
  .hero-trust { flex-direction: column; align-items: flex-start; gap: 0.75rem; }
  .numbers-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
  .number-item:not(:last-child)::after { display: none; }
  .services-grid, .problem-grid { grid-template-columns: 1fr; }
  .testimonial-card { flex: 0 0 85%; min-width: 280px; }
  .credentials-grid { grid-template-columns: 1fr 1fr; }
  .audience-grid { grid-template-columns: 1fr 1fr; }
  .feed-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
  .hero-scroll-indicator { display: none; }
  .problem-footer { flex-direction: column; gap: 1rem; }
}

@media (max-width: 480px) {
  .numbers-grid { grid-template-columns: 1fr 1fr; }
  .credentials-grid { grid-template-columns: 1fr; }
  .audience-grid { grid-template-columns: 1fr; }
  .feed-grid { grid-template-columns: 1fr 1fr; }
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { width: 100%; justify-content: center; }
  .cta-buttons { flex-direction: column; align-items: center; }
  .cta-buttons .btn { width: 100%; justify-content: center; }
}

/* ========== ANIMATION PREP ========== */
.reveal { opacity: 0; transform: translateY(40px); }
.reveal-fade { opacity: 0; }
.reveal-scale { opacity: 0; transform: scale(0.9); }

/* ========================================================== */
/* ==========  SUBPÁGINAS (page-hero, form, prosa)  ========= */
/* ========================================================== */

/* ---- Page hero / banner interno ---- */
.page-hero {
  position: relative;
  padding: calc(7rem + 32px) 0 clamp(3rem, 6vw, 5rem);
  text-align: center;
  overflow: hidden;
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(189, 142, 171, 0.18), transparent 70%),
    linear-gradient(180deg, #F1EAE3 0%, var(--bg-primary) 100%);
  border-bottom: 1px solid rgba(59, 1, 36,0.08);
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 {
  font-size: clamp(2.25rem, 5vw, 3.25rem);
  margin: 0.75rem auto 1.25rem;
  max-width: 16ch;
}
.page-hero p {
  max-width: 60ch;
  margin: 0 auto;
  font-size: 1.0625rem;
}
.breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}
.breadcrumb a { color: var(--accent); }
.breadcrumb a:hover { color: var(--accent-hover); }
.breadcrumb span { color: var(--text-muted); }

/* Marca link ativo no menu */
.nav a.active { color: var(--text-primary); }
.nav a.active::after { width: 100%; }
.mobile-menu a.active { color: var(--accent); }

/* ---- Bloco de conteúdo / prosa (política, textos longos) ---- */
.prose {
  max-width: 760px;
  margin: 0 auto;
}
.prose h2 {
  font-family: var(--sans);
  font-size: 1.375rem;
  font-weight: 600;
  color: var(--text-primary);
  margin: 2.5rem 0 0.75rem;
}
.prose h2:first-child { margin-top: 0; }
.prose p, .prose li { color: var(--text-muted-light); line-height: 1.8; margin-bottom: 1rem; }
.prose ul { padding-left: 1.25rem; margin-bottom: 1rem; }
.prose li { margin-bottom: 0.5rem; }
.prose a { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; }
.prose strong { color: var(--text-primary); }

/* ---- Grid genérico de "cards de detalhe" para subpáginas ---- */
.detail-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}
.detail-card {
  background: var(--bg-card);
  border: 1px solid rgba(64, 63, 61,0.05);
  border-radius: var(--radius);
  padding: 2rem;
  transition: all var(--transition);
}
.detail-card:hover { transform: translateY(-4px); border-color: rgba(59, 1, 36,0.2); }
.detail-card .service-icon { margin-bottom: 1.25rem; }
.detail-card h3 { margin-bottom: 0.75rem; }
.detail-card ul { list-style: none; margin-top: 1rem; }
.detail-card li {
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
  color: var(--text-muted-light);
  font-size: 0.9375rem;
  margin-bottom: 0.6rem;
}
.detail-card li svg { width: 18px; height: 18px; color: var(--accent); flex-shrink: 0; margin-top: 2px; }

/* ---- Formulário (newsletter / contato) ---- */
.form-card {
  max-width: 560px;
  margin: 3rem auto 0;
  background: var(--bg-card);
  border: 1px solid rgba(64, 63, 61,0.06);
  border-radius: var(--radius);
  padding: clamp(1.75rem, 4vw, 2.75rem);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1.1rem; text-align: left; }
.form-group label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: var(--text-muted-light);
  margin-bottom: 0.4rem;
}
.form-group input[type="text"],
.form-group input[type="email"],
.form-group textarea {
  width: 100%;
  background: var(--bg-secondary);
  border: 1px solid rgba(64, 63, 61,0.1);
  border-radius: var(--radius-sm);
  padding: 0.85rem 1rem;
  color: var(--text-primary);
  font-family: inherit;
  font-size: 0.9375rem;
  transition: border-color var(--transition);
}
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
}
.form-group textarea { min-height: 130px; resize: vertical; }
.form-consent {
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin: 0.25rem 0 1.25rem;
  text-align: left;
}
.form-consent input { margin-top: 3px; accent-color: var(--accent); }
.form-consent a { color: var(--accent); text-decoration: underline; text-underline-offset: 2px; }
.form-card .btn { width: 100%; justify-content: center; }
.form-note {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-align: center;
  margin-top: 1rem;
}
@media (max-width: 560px) {
  .form-row { grid-template-columns: 1fr; }
}

/* ==================== CONSENT / LGPD BANNER (owner: tracker) ==================== */
.aco-consent {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 9999;
  max-width: 720px;
  margin: 0 auto;
  background: var(--bg-dark, #3B0124);
  color: var(--text-on-dark, #F8F8F8);
  border-radius: 14px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, .28);
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .3s ease, transform .3s ease;
  pointer-events: none;
}
.aco-consent.is-visible { opacity: 1; transform: translateY(0); pointer-events: auto; }
.aco-consent__inner {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1rem 1.25rem;
  flex-wrap: wrap;
}
.aco-consent__text {
  flex: 1 1 260px;
  margin: 0;
  font-size: .85rem;
  line-height: 1.5;
}
.aco-consent__text a { color: var(--accent-dark, #BD8EAB); text-decoration: underline; }
.aco-consent__actions { display: flex; gap: .6rem; flex-shrink: 0; }
.aco-consent__btn {
  font: inherit;
  font-size: .85rem;
  font-weight: 600;
  padding: .55rem 1.1rem;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background .2s ease, border-color .2s ease, color .2s ease;
}
/* Recusar é tão acessível quanto Aceitar (LGPD) — mesmo peso visual. */
.aco-consent__btn--ghost {
  background: transparent;
  color: var(--text-on-dark, #F8F8F8);
  border-color: rgba(248, 248, 248, .45);
}
.aco-consent__btn--ghost:hover { border-color: var(--text-on-dark, #F8F8F8); }
.aco-consent__btn--solid {
  background: var(--text-on-dark, #F8F8F8);
  color: var(--accent, #3B0124);
}
.aco-consent__btn--solid:hover { background: var(--accent-dark, #BD8EAB); }
@media (max-width: 560px) {
  .aco-consent__inner { justify-content: center; text-align: center; }
  .aco-consent__actions { width: 100%; justify-content: center; }
}
