:root {
  /* Cores Base - Estética Editorial Light (Creme/Off-White) */
  --bg-primary: #FCFBFA;
  --bg-alt: #F4F1EA;
  --bg-dark: #FAF8F5;
  --card-bg: #FFFFFF;
  
  --text-primary: #1A1A1A;
  --text-secondary: #5A5A5A;
  --text-muted: #9A9A9A;
  --text-caption: #B0B0B0;
  
  --accent-gold: #C8A96B;
  --accent-gold-dark: #A98543;
  --accent-nude: #D4B8A8;
  --line-color: rgba(0, 0, 0, 0.08);
  --header-bg: rgba(252, 251, 250, 0.9);
  
  /* Botões e Interações */
  --btn-primary-bg: #1A1A1A;
  --btn-primary-text: #FFFFFF;
  --btn-primary-hover: var(--accent-nude);
  --btn-radius: 28px;
  
  /* Efeitos */
  --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.02);
  --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.04);
  
  /* Sistema de Grid & Container */
  --container-max: 1360px;
  --container-pad: 2rem;
  --section-pad: clamp(80px, 12vw, 160px);
}

/* ==========================================================================
   RESET & TIPOGRAFIA
   ========================================================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  transition: background-color 0.4s ease, color 0.4s ease;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  line-height: 1.2;
  font-weight: 400;
  color: var(--text-primary);
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
}

.section-padding {
  padding: var(--section-pad) 0;
}

.bg-alt {
  background-color: var(--bg-alt);
}

.text-center {
  text-align: center;
}

/* ==========================================================================
   ANIMAÇÕES REVEAL (BASE)
   ========================================================================== */
.fade-up {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity var(--anim-duration, 0.6s) ease, transform var(--anim-duration, 0.6s) ease;
}
.fade-left {
  opacity: 0;
  transform: translateX(20px);
  transition: opacity var(--anim-duration, 1s) ease, transform var(--anim-duration, 1s) ease;
}
.reveal-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.2, 0.8, 0.2, 1), transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.reveal-fade {
  opacity: 0;
  transition: opacity 1s ease;
}
.reveal-scale {
  opacity: 0;
  transform: scale(0.95);
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.stagger-item {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.is-visible {
  opacity: 1;
  transform: translateY(0) translateX(0) scale(1);
}

/* ==========================================================================
   BOTÕES
   ==========================================================================/* Botões Base */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 32px;
  height: 56px;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 500;
  border-radius: var(--btn-radius);
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}

.btn-primary {
  background-color: var(--btn-primary-bg);
  color: var(--btn-primary-text);
  border: 1px solid transparent;
  border-radius: var(--btn-radius);
}

.btn-primary:hover {
  background-color: var(--btn-primary-hover);
  color: #111111;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(212, 184, 168, 0.2);
}

.btn-ghost {
  background-color: transparent;
  color: var(--text-primary);
  border: 1px solid var(--accent-gold);
  border-radius: var(--btn-radius);
}
.btn-ghost:hover {
  border-color: var(--accent-gold-dark);
  color: var(--accent-gold-dark);
  background-color: rgba(200, 169, 106, 0.05);
}

.btn-lg {
  height: 60px;
  padding: 0 40px;
}

.btn-header {
  height: 44px;
  padding: 0 24px;
  font-size: 13.5px;
  font-weight: 500;
  border-radius: var(--btn-radius);
  background-color: #1A1A1A;
  color: #FFFFFF;
  border: 1px solid transparent;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}

.btn-header:hover {
  background-color: var(--accent-nude);
  color: #111111;
}

.btn-underline {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: var(--text-primary);
  text-decoration: none;
  position: relative;
  display: inline-flex;
  align-items: center;
  padding: 0 4px;
  height: 56px;
  transition: color 0.3s ease;
}

.btn-underline::after {
  content: '';
  position: absolute;
  bottom: 14px;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: var(--accent-gold);
  transition: transform 0.3s ease;
  transform-origin: right;
}

.btn-underline:hover {
  color: var(--accent-gold);
}

.btn-underline:hover::after {
  transform: scaleX(0);
}

.btn-mobile-full {
  width: 100%;
  height: 52px;
}

/* ==========================================================================
   HEADER
   ========================================================================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  height: 78px;
  display: flex;
  align-items: center;
  background-color: rgba(252, 251, 250, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  transition: all 0.4s ease;
}

.site-header.scrolled {
  height: 72px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

.header-container {
  display: grid;
  grid-template-columns: 260px 1fr 220px;
  align-items: center;
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 56px;
}

.logo {
  display: flex;
  flex-direction: column;
  justify-self: start;
  text-decoration: none;
}

.logo-name {
  font-family: 'Playfair Display', serif;
  font-weight: 400;
  font-size: 26px;
  letter-spacing: -0.5px;
  color: var(--text-primary);
  line-height: 1;
  text-transform: none;
  transition: color 0.3s ease;
  margin-bottom: 2px;
}

.logo:hover .logo-name {
  color: var(--accent-gold);
}

.logo-desc {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 1.5px;
  color: var(--text-muted);
  text-transform: uppercase;
  opacity: 0.85;
}

.desktop-nav {
  display: flex;
  justify-self: center;
  gap: 32px;
}

.nav-link {
  font-size: 14px;
  font-weight: 500;
  text-transform: none;
  letter-spacing: 0.2px;
  color: #2A2A2A;
  position: relative;
  padding: 4px 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: var(--accent-gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease;
}
.nav-link:hover::after, .nav-link.active::after {
  transform: scaleX(1);
  transform-origin: left;
}
.nav-link:hover, .nav-link.active {
  color: var(--accent-gold);
}

.header-actions {
  display: flex;
  align-items: center;
  justify-self: end;
  gap: 20px;
}

.hamburger-btn {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  width: 32px;
  height: 24px;
  position: relative;
  z-index: 103;
}

.hamburger-btn span {
  display: block;
  position: absolute;
  height: 2px;
  width: 100%;
  background: var(--text-primary);
  border-radius: 2px;
  opacity: 1;
  left: 0;
  transform: rotate(0deg);
  transition: .25s ease-in-out;
}
.hamburger-btn span:nth-child(1) { top: 0px; }
.hamburger-btn span:nth-child(2) { top: 11px; }
.hamburger-btn span:nth-child(3) { top: 22px; }

.hamburger-btn.open span:nth-child(1) {
  top: 11px;
  transform: rotate(135deg);
}
.hamburger-btn.open span:nth-child(2) {
  opacity: 0;
  left: -60px;
}
.hamburger-btn.open span:nth-child(3) {
  top: 11px;
  transform: rotate(-135deg);
}

/* Mobile Overlay — Layout Definitivo */
.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--bg-primary);
  z-index: 101;
  display: flex;
  flex-direction: column;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.mobile-menu-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

/* Botão X — dentro do overlay, sempre acima de tudo */
.mobile-close-btn {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 44px;
  height: 44px;
  background: transparent;
  border: 1px solid var(--line-color);
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-primary);
  z-index: 10;
  transition: border-color 0.2s ease, color 0.2s ease;
}
.mobile-close-btn:hover {
  border-color: var(--accent-gold);
  color: var(--accent-gold);
}
.mobile-close-btn svg {
  width: 20px;
  height: 20px;
}

/* Inner — ocupa toda a altura com links centralizados + CTA no fundo */
.mobile-menu-inner {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 80px 40px calc(40px + env(safe-area-inset-bottom, 16px));
  gap: 0;
  transform: translateY(-16px);
  transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.mobile-menu-overlay.active .mobile-menu-inner {
  transform: translateY(0);
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  width: 100%;
}

.mobile-nav-link {
  font-size: 24px;
  font-family: 'Playfair Display', serif;
  font-weight: 400;
  color: var(--text-primary);
  position: relative;
  text-align: center;
  transition: color 0.2s ease;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
}
.mobile-nav-link:hover {
  color: var(--accent-gold);
}

.mobile-nav-link::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 1px;
  background-color: var(--accent-gold);
  transition: width 0.3s ease;
}

.mobile-nav-link:hover::after {
  width: 100%;
}

.mobile-menu-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  margin-top: 48px;
}

.btn-mobile-full {
  width: 100%;
  max-width: 320px;
  height: 56px;
  justify-content: center;
  font-size: 15px;
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */

.hero {
  position: relative;
  padding-top: 88px; /* Altura do header */
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background-color: var(--bg-primary);
  background-image: 
    radial-gradient(circle at 75% 50%, rgba(200, 169, 106, 0.12) 0%, transparent 55%),
    radial-gradient(circle at 20% 80%, rgba(212, 184, 168, 0.08) 0%, transparent 45%);
  border-bottom: 1px solid var(--line-color);
}

.hero-bg-texture {
  position: absolute;
  top: 0; 
  left: 0; 
  width: 100%; 
  height: 100%;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200"><filter id="a"><feTurbulence type="fractalNoise" baseFrequency="0.65" numOctaves="3" stitchTiles="stitch"/></filter><rect width="100%" height="100%" filter="url(%23a)" opacity="0.03"/></svg>');
  pointer-events: none;
  z-index: 0;
}

.hero-container, .hero-main {
  width: 100%;
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 var(--container-pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 1;
}

.hero-content {
  width: 42%;
  padding-top: 4rem;
  padding-bottom: 4rem;
  position: relative;
  z-index: 5; 
}

.hero-visual {
  width: 58%;
  position: relative;
  z-index: 4;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
}

.hero-blob-bg {
  position: absolute;
  width: 80%;
  height: 90%;
  bottom: 0;
  right: 5%;
  background: radial-gradient(
    ellipse at 60% 60%,
    rgba(212, 184, 168, 0.18) 0%,
    rgba(200, 169, 106, 0.07) 50%,
    transparent 75%
  );
  border-radius: 40% 60% 60% 40% / 50% 40% 60% 50%;
  z-index: 0;
  pointer-events: none;
}

.hero-label,
.hero-eyebrow,
.hero-tag {
  display: flex !important;
  align-items: center;
  gap: 12px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent-gold);
  margin-bottom: 1.5rem;
}
.hero-label::after,
.hero-eyebrow::after,
.hero-tag::after {
  content: '';
  display: block;
  width: 60px;
  height: 1px;
  background: rgba(200, 169, 106, 0.7);
}

.hero-headline, .hero-title {
  font-size: clamp(40px, 4.2vw, 56px);
  line-height: 1.1;
  font-weight: 400;
  letter-spacing: -0.5px;
  margin-bottom: 32px;
  max-width: none;
  width: 100%;
  color: var(--text-primary);
  position: relative;
  z-index: 6; 
  font-family: 'Playfair Display', serif;
}

.hero-subheadline {
  font-size: 19px;
  line-height: 1.6;
  font-weight: 300;
  color: var(--text-secondary);
  max-width: 520px;
  margin-bottom: 48px;
  position: relative;
  z-index: 6;
}

.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  position: relative;
  z-index: 6;
}

/* Imagem da Hero */
.hero-image-wrapper {
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  width: 100%;
  height: 100%;
}

.hero-person-img, .hero-image {
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 80vh;
  object-fit: contain;
  object-position: bottom right;
  margin-bottom: -1px; 
}

/* ==========================================================================
   TÍTULOS DE SEÇÃO GLOBAIS
   ========================================================================== */
.section-padding {
  padding: 120px 0;
}

.section-header {
  margin-bottom: 64px;
}

.section-label {
  display: block;
  font-size: 0.8rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent-gold);
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.2;
  font-weight: 400;
  color: var(--text-primary);
  max-width: 800px;
}

.text-center {
  text-align: center;
}

.text-center .section-title {
  margin-left: auto;
  margin-right: auto;
}

.bg-alt {
  background-color: var(--bg-alt);
}

.signature-font {
  font-family: 'Parisienne', 'Great Vibes', cursive;
  font-size: 3.5rem;
  color: var(--accent-gold);
  opacity: 0.8;
  font-weight: 400;
  letter-spacing: 1px;
}

/* ==========================================================================
   MICRO PROVA SOCIAL
   ========================================================================== */
.micro-social {
  padding: 24px 0;
  border-bottom: 1px solid var(--line-color);
}
.social-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
.social-text {
  font-family: 'Playfair Display', serif;
  font-size: 16px;
  font-style: italic;
  color: var(--text-secondary);
}
.social-checks {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
}
.check-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 400;
  color: var(--text-primary);
}
.check-item svg {
  width: 16px;
  height: 16px;
  color: var(--accent-gold);
}

@media (min-width: 992px) {
  .social-content {
    flex-direction: row;
    gap: 32px;
  }
}

/* ==========================================================================
   AUTORIDADE
   ========================================================================== */
.autoridade {
  background-color: var(--bg-primary);
}
.autoridade-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.autoridade-card {
  background-color: var(--bg-primary);
  border: 1px solid var(--line-color);
  padding: 40px 24px;
  border-radius: 4px;
  transition: all 0.3s ease;
  text-align: center;
}
.autoridade-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-sm);
  border-color: rgba(200, 169, 106, 0.3);
}
.autoridade-icon {
  width: 40px;
  height: 40px;
  margin: 0 auto 24px auto;
  color: var(--accent-gold);
}
.autoridade-icon svg {
  width: 100%;
  height: 100%;
}
.autoridade-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 16px;
  color: var(--text-primary);
}
.autoridade-card p {
  font-size: 14px;
  line-height: 1.6;
  font-weight: 300;
  color: var(--text-secondary);
}

@media (max-width: 992px) {
  .autoridade-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .autoridade-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   01. DIFERENCIAL
   ========================================================================== */
.diferencial {
  background-color: var(--bg-dark);
}
.diferencial-content {
  max-width: 900px;
  margin: 0 auto;
}
.diferencial-text {
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
  position: relative;
}
.diferencial-text p {
  font-size: clamp(1.4rem, 2.5vw, 1.8rem);
  color: var(--text-primary);
  line-height: 1.7;
  margin-bottom: 40px;
  font-weight: 300;
  font-family: 'Playfair Display', serif;
}
.diferencial-text p:last-child {
  color: var(--accent-gold-dark);
  font-weight: 400;
  font-style: italic;
  margin-bottom: 0;
  padding-bottom: 40px;
}
.diferencial-text::after {
  content: '';
  display: block;
  width: 80px;
  height: 1px;
  background-color: var(--accent-gold);
  margin: 0 auto;
  opacity: 0.6;
}

/* ==========================================================================
   02. ÁREAS DE ATUAÇÃO
   ========================================================================== */
.atuacao-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}
.atuacao-card {
  background-color: var(--card-bg);
  padding: 56px 48px;
  border: 1px solid rgba(0, 0, 0, 0.04);
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.02);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  display: flex;
  flex-direction: column;
}
.atuacao-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.06);
}
.atuacao-icon {
  width: 36px;
  height: 36px;
  color: var(--accent-gold);
  margin-bottom: 24px;
  opacity: 0.9;
}
.atuacao-icon svg {
  width: 100%;
  height: 100%;
  stroke-width: 1.2;
}
.atuacao-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 400;
  color: var(--text-primary);
  margin-bottom: 16px;
  line-height: 1.2;
  letter-spacing: -0.5px;
}
.atuacao-benefit {
  font-size: 1.05rem;
  color: var(--accent-gold-dark);
  margin-bottom: 32px;
  line-height: 1.6;
  font-weight: 400;
}
.atuacao-list {
  list-style: none;
  padding: 0;
  margin: 0;
  margin-top: 24px !important;
}
.atuacao-list li {
  position: relative;
  padding-left: 20px;
  font-size: 1rem;
  color: var(--text-secondary);
  margin-bottom: 16px;
  font-weight: 300;
}
.atuacao-list li::before {
  content: '—';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--accent-gold);
}

/* ==========================================================================
   03. SOBRE
   ========================================================================== */
.about {
  background-color: var(--bg-alt);
}
.about-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 80px;
  align-items: center;
}
.photo-placeholder {
  width: 100%;
  aspect-ratio: 4/5;
  background-color: var(--bg-primary);
  border: none;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.about-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.about-photo:hover .about-img {
  transform: scale(1.03);
}
.about-text p {
  font-size: 1.15rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 24px;
  font-weight: 300;
}
.about-signature {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid rgba(200, 169, 106, 0.6);
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.signature-font {
  font-family: 'Great Vibes', 'Parisienne', cursive;
  font-size: 2.8rem;
  color: var(--text-primary);
  opacity: 1;
  font-weight: 400;
  line-height: 1.2;
}
.signature-tagline {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-gold);
}

.signature-location {
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  font-weight: 300;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  margin-top: 2px;
}

/* ==========================================================================
   04. RESULTADOS
   ========================================================================== */
.resultados {
  background-color: var(--bg-primary);
}
.resultados-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 1040px;
  margin: 0 auto;
}
.resultado-card {
  background-color: var(--card-bg);
  border: 1px solid var(--line-color);
  border-radius: 16px;
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  position: relative;
  overflow: hidden;
}
.resultado-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  background: linear-gradient(to bottom, var(--accent-gold), var(--accent-nude));
  opacity: 0;
  transition: opacity 0.3s ease;
}
.resultado-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.05);
  border-color: rgba(200, 169, 106, 0.25);
}
.resultado-card:hover::before {
  opacity: 1;
}
.resultado-num {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 400;
  color: var(--accent-gold);
  line-height: 1;
  letter-spacing: -1px;
  opacity: 0.85;
}
.resultado-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--text-primary);
  margin: 0;
}
.resultado-card p {
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ==========================================================================
   STATS BAR (Números de Impacto)
   ========================================================================== */
.stats-bar {
  background-color: var(--bg-primary);
  border-top: 1px solid var(--line-color);
  border-bottom: 1px solid var(--line-color);
  padding: 40px 0;
}
.stats-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}
.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 0 56px;
}
.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 400;
  color: var(--text-primary);
  letter-spacing: -1px;
  line-height: 1;
}
.stat-label {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.stat-divider {
  width: 1px;
  height: 48px;
  background-color: var(--line-color);
  flex-shrink: 0;
}

@media (max-width: 600px) {
  .stats-grid {
    flex-direction: column;
    gap: 28px;
  }
  .stat-divider {
    width: 48px;
    height: 1px;
  }
  .stat-item {
    padding: 0;
  }
}

/* ==========================================================================
   DEPOIMENTOS
   ========================================================================== */
.depoimentos {
  background-color: var(--bg-alt);
}
.depoimentos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 8px;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}
.depoimento-card {
  background-color: var(--card-bg);
  border: 1px solid var(--line-color);
  border-radius: 12px;
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  gap: 28px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.depoimento-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.05);
}
.depoimento-texto {
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 300;
  line-height: 1.75;
  color: var(--text-secondary);
  font-style: normal;
  position: relative;
  padding-top: 20px;
}
.depoimento-texto::before {
  content: '\201C';
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  color: var(--accent-gold);
  opacity: 0.65;
  position: absolute;
  top: -12px;
  left: -4px;
  line-height: 1;
}
.depoimento-autor {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 20px;
  border-top: 1px solid var(--line-color);
}
.autor-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.autor-info strong {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-primary);
}
.autor-info span {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 400;
  color: var(--text-muted);
  letter-spacing: 0.02em;
}

@media (max-width: 992px) {
  .depoimentos-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .depoimentos-grid {
    grid-template-columns: 1fr;
  }
  .depoimento-card {
    padding: 28px 24px;
  }
}

/* ==========================================================================
   CREDENCIAIS (seção Sobre)
   ========================================================================== */
.about-credentials {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 32px;
  margin-bottom: 0;
  padding: 24px 0;
  border-top: 1px solid var(--line-color);
  border-bottom: 1px solid var(--line-color);
}
.credential-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 400;
  color: var(--text-secondary);
}
.credential-item svg {
  width: 18px;
  height: 18px;
  color: var(--accent-gold);
  flex-shrink: 0;
}

/* ==========================================================================
   COMO FUNCIONA
   ========================================================================== */
.como-funciona {
  background-color: var(--bg-primary);
}
.section-subtitle {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 300;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 16px auto 0;
  line-height: 1.7;
}
.processo-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 0;
  align-items: start;
  margin-top: 64px;
}
.processo-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
}
.processo-num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 1px solid rgba(200, 169, 106, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 400;
  color: var(--accent-gold);
  flex-shrink: 0;
}
.processo-content h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--text-primary);
  margin-bottom: 10px;
}
.processo-content p {
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 240px;
}
.processo-conector {
  width: 80px;
  height: 1px;
  background: linear-gradient(to right, rgba(200,169,106,0.3), rgba(212,184,168,0.3));
  margin-top: 28px;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .processo-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .processo-conector {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, rgba(200,169,106,0.3), rgba(212,184,168,0.3));
    margin: 0 auto;
  }
  .processo-content p {
    max-width: 300px;
  }
}

/* ==========================================================================
   FAQ
   ========================================================================== */
.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.faq-item {
  border-bottom: 1px solid var(--line-color);
  overflow: hidden;
}
.faq-item:first-child {
  border-top: 1px solid var(--line-color);
}
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 0;
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--text-primary);
  cursor: pointer;
  list-style: none;
  gap: 24px;
  transition: color 0.2s ease;
}
.faq-question::-webkit-details-marker { display: none; }
.faq-question::after {
  content: '+';
  font-family: 'Inter', sans-serif;
  font-size: 22px;
  font-weight: 300;
  color: var(--accent-gold);
  flex-shrink: 0;
  transition: transform 0.25s ease;
}
.faq-item[open] .faq-question::after {
  transform: rotate(45deg);
}
.faq-item[open] .faq-question {
  color: var(--accent-gold-dark);
}
.faq-answer {
  padding: 0 0 22px 0;
}
.faq-answer p {
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--text-secondary);
  line-height: 1.75;
}

/* ==========================================================================
   05. CTA FINAL
   ========================================================================== */
.cta-final {
  background-color: var(--bg-alt);
  position: relative;
  overflow: hidden;
  padding: 60px 0 !important;
  min-height: 0 !important;
}

.cta-final .container {
  position: relative;
  z-index: 1;
}
.cta-title {
  font-size: clamp(32px, 3vw, 42px);
  line-height: 1.2;
  margin-bottom: 24px;
}
.cta-subtitle {
  font-size: 1.15rem;
  color: var(--text-secondary);
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto 40px;
  font-weight: 300;
}
.btn-cta {
  background-color: var(--btn-primary-bg);
  color: var(--btn-primary-text);
  border: 1px solid transparent;
  padding: 0 36px;
  height: 52px;
  font-size: 14px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border-radius: var(--btn-radius);
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
}
.btn-cta:hover {
  background-color: var(--btn-primary-hover);
  color: #111111;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(212, 184, 168, 0.2);
}

/* ==========================================================================
   06. FOOTER
   ========================================================================== */
.site-footer {
  background-color: var(--bg-primary);
  border-top: 1px solid var(--line-color);
  padding-top: 36px;
  padding-bottom: 0;
  color: var(--text-primary);
}

.site-footer .footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr;
  gap: 24px;
  align-items: center;
  margin-bottom: 24px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
}

.footer-brand .logo-name {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 400;
  letter-spacing: -0.5px;
  color: var(--text-primary);
  margin-bottom: 2px;
}

.footer-brand .logo-desc {
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0;
  color: var(--text-secondary);
  text-transform: none;
}

.footer-mission {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 300;
  line-height: 1.6;
  color: var(--text-secondary);
  margin-top: 14px;
  max-width: 240px;
}

.footer-location {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 300;
  color: var(--text-muted);
  margin-top: 8px;
  letter-spacing: 0.02em;
  display: flex;
  align-items: center;
  gap: 5px;
}
.footer-location svg {
  width: 12px;
  height: 12px;
  color: var(--accent-gold);
  flex-shrink: 0;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-nav a {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.2;
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.3s ease;
  width: fit-content;
}

.footer-nav a:hover {
  color: var(--accent-gold);
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
}

.footer-contact a {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.2;
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-contact a svg {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

.footer-contact a:hover {
  color: var(--accent-gold);
}
.footer-contact a:hover svg {
  opacity: 1;
}

.footer-bottom {
  border-top: 1px solid rgba(0,0,0,0.05);
  padding: 18px 24px 24px;
  margin-top: 24px;
  text-align: center;
}

.footer-bottom p {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.6;
}

/* desktop: break invisível */
.footer-break {
  display: none;
}

.digisynk-link {
  color: var(--accent-gold);
  font-weight: 400;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.digisynk-link:hover {
  opacity: 0.7;
}

/* ==========================================================================
   RESPONSIVIDADE
   ========================================================================== */
@media (max-width: 992px) {
  .atuacao-grid {
    grid-template-columns: 1fr;
  }
  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .resultados-grid {
    grid-template-columns: 1fr;
  }
  .photo-placeholder {
    aspect-ratio: 3/4;
  }
}

@media (max-width: 768px) {
  .section-padding {
    padding: 80px 0;
  }
  .resultado-item {
    padding: 20px 24px;
  }
  
  .cta-final {
    padding: 48px 0 !important;
  }
  
  .site-footer {
    padding: 32px 20px 0 20px;
  }
  .site-footer .footer-grid {
    grid-template-columns: 1fr;
    gap: 24px;
    text-align: center;
    margin-bottom: 24px;
  }
  .footer-brand {
    align-items: center;
  }
  .footer-nav {
    align-items: center;
  }
  .footer-contact {
    align-items: center;
  }

  /* Mostrar quebra de linha no texto do footer */
  .footer-break {
    display: block;
  }

  /* FAB com safe-area-inset para não sobrepor home indicator */
  .fab-whatsapp {
    bottom: calc(16px + env(safe-area-inset-bottom, 0px));
    right: 16px;
    width: 52px;
    height: 52px;
  }
  .fab-whatsapp svg {
    width: 26px;
    height: 26px;
  }

  /* Scroll-top: reposicionar acima do FAB com folga */
  .scroll-top-btn {
    bottom: calc(82px + env(safe-area-inset-bottom, 0px));
    right: 16px;
  }
}

/* ==========================================================================
   FLOATING BUTTONS
   ========================================================================== */
.fab-whatsapp {
  position: fixed;
  bottom: 24px;
  right: 20px;
  width: 56px;
  height: 56px;
  background-color: #25D366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.35);
  z-index: 90;
  transition: transform 0.3s ease;
}
.fab-whatsapp:hover {
  transform: scale(1.08);
}
.fab-whatsapp svg {
  width: 28px;
  height: 28px;
}

.scroll-top-btn {
  position: fixed;
  bottom: 110px;
  right: 32px;
  width: 44px;
  height: 44px;
  background-color: var(--bg-primary);
  border: 1px solid rgba(200, 169, 106, 0.4);
  color: var(--accent-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 90;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease, background-color 0.3s ease, transform 0.2s ease;
  box-shadow: 0 4px 16px rgba(0,0,0,0.05);
}
.scroll-top-btn.visible {
  opacity: 1;
  pointer-events: auto;
}
.scroll-top-btn:hover {
  background-color: var(--accent-gold);
  color: #FFFFFF;
  transform: translateY(-2px);
}
.scroll-top-btn svg {
  width: 18px;
  height: 18px;
}

/* ==========================================================================
   RESPONSIVIDADE PREMIUM (MOBILE FIRST REVERSE/MAX-WIDTH)
   ========================================================================== */

/* 1366px - 1440px */
@media (max-width: 1440px) {
  .hero-headline {
    max-width: 680px;
  }
}

/* 1024px */
@media (max-width: 1024px) {
  .header-container {
    display: flex;
    justify-content: space-between;
    padding: 0 32px;
  }
  .desktop-nav, .btn-header {
    display: none;
  }
  .hamburger-btn {
    display: block;
  }
  .logo-name {
    font-size: 22px;
  }
  
  .hero {
    padding-top: 40px;
  }

  .hero-container {
    display: flex;
    flex-direction: column;
    padding-top: 60px;
    padding-bottom: 40px;
  }
  
  .hero-content, .hero-visual {
    display: contents;
  }
  
  .hero-bg-massive {
    font-size: 60px;
    top: 15%;
    left: 50%;
    transform: translateX(-50%);
  }

  .hero-bg-signature {
    font-size: 48px;
    top: 18%;
    left: 50%;
    transform: translateX(-50%) rotate(-4deg);
  }

  .hero-eyebrow {
    order: 1;
    justify-content: center;
  }
  
  .hero-headline {
    order: 2;
    font-size: clamp(36px, 9vw, 44px);
    line-height: 0.95;
    text-align: center;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
  
  .hero-subheadline {
    order: 3;
    max-width: 320px;
    margin: 0 auto 32px auto;
    text-align: center;
    font-size: 18px;
    line-height: 1.7;
  }
  
  .hero-image-wrapper {
    order: 4;
    width: 100%;
    display: flex;
    justify-content: center;
  }
  
  .hero-person-img {
    width: 85%;
    max-width: 300px;
    margin: 0 auto;
    display: block;
    object-position: bottom center;
  }
  
  .authority-badge {
    order: 5;
    position: static;
    margin: 16px auto;
    text-align: center;
    align-items: center;
    border-bottom: none;
  }
  
  .hero-cta-group {
    order: 6;
    flex-direction: column;
    width: 100%;
    max-width: 320px;
    margin: 24px auto 0 auto;
    gap: 12px;
  }

  .hero-cta-group .btn {
    width: 100%;
    height: 56px;
  }
  
  .btn-underline {
    justify-content: center;
  }

  .hero-benefits-bar {
    grid-template-columns: 1fr;
    padding: 24px;
    gap: 24px;
  }

  .benefit-grid, .method-timeline, .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .method-step {
    border-right: none;
    border-bottom: 1px solid var(--line-color);
    padding: 32px 0;
  }
  
  .about-grid, .cta-grid {
    grid-template-columns: 1fr;
  }
  
  .cta-photo {
    justify-content: center;
  }
}

/* 768px */
@media (max-width: 768px) {
  .problems-grid, .results-grid {
    grid-template-columns: 1fr;
  }
  
  .benefit-item {
    padding: 32px 20px;
  }
  
  .benefit-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .benefit-item:nth-child(2) {
    border-right: none;
  }
  
  .authority-badge {
    position: relative;
    right: 0;
    bottom: 0;
    margin: -40px auto 40px auto;
    width: max-content;
  }
}

/* 430px (Mobile pequeno) */
@media (max-width: 480px) {
  .hero-bg-text {
    font-size: 40vw;
  }
  
  .benefit-grid, .services-grid {
    grid-template-columns: 1fr;
  }
  
  .benefit-item {
    border-right: none;
    border-bottom: 1px solid var(--line-color);
  }
  
  .btn {
    width: 100%;
  }
  
  .footer-links {
    flex-direction: column;
    gap: 16px;
    align-items: center;
    width: 100%;
  }
  
  .footer-brand {
    align-items: center;
    width: 100%;
  }
}

