/* ── HERO ── */
#hero {
  min-height: 100svh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 80% 50%, rgba(184,151,42,0.06) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 20% 80%, rgba(122,26,26,0.15) 0%, transparent 60%),
    linear-gradient(135deg, #0A0A0A 0%, #111111 50%, #0D0D0D 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: clamp(100px, 14vh, 140px) clamp(16px, 5vw, 64px) clamp(40px, 6vh, 60px);
}
.hero-label {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
  animation: fadeUp 0.8s ease both;
}
.hero-title {
  font-size: clamp(2.8rem, 5vw, 5.2rem);
  font-weight: 300;
  line-height: 1.06;
  margin-bottom: 24px;
  animation: fadeUp 0.8s 0.15s ease both;
}
.hero-title em { font-style: italic; color: var(--gold-light); }
.hero-title strong { font-weight: 600; display: block; }
.hero-subtitle {
  font-size: clamp(14px, 1.05vw, 16px);
  line-height: 1.75;
  color: var(--gray-light);
  max-width: 640px;
  margin-bottom: 40px;
  animation: fadeUp 0.8s 0.3s ease both;
  font-weight: 300;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeUp 0.8s 0.45s ease both;
}
.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 48px;
  flex-wrap: wrap;
  animation: fadeUp 0.8s 0.6s ease both;
  position: relative;
  z-index: 2;
}
.stat-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.4rem;
  font-weight: 600;
  color: var(--gold-light);
  line-height: 1;
}
.stat-label {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gray);
  margin-top: 4px;
}
.stat-divider {
  width: 1px;
  background: rgba(184,151,42,0.3);
  height: 48px;
  align-self: center;
}

/* ── URGENCY BAR ── */
.urgency-bar {
  background: linear-gradient(90deg, rgba(122,26,26,0.9), rgba(140,20,20,0.95), rgba(122,26,26,0.9));
  padding: 18px clamp(16px, 5vw, 64px);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  position: relative;
  overflow: hidden;
}
.urgency-bar::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 60%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.03), transparent);
  animation: shimmer 3s infinite;
}
.urgency-icon { font-size: 18px; }
.urgency-text { font-size: 13px; letter-spacing: 1.5px; text-transform: uppercase; font-weight: 500; }
.urgency-text strong { color: #FF9999; }

/* ── PROBLEM SECTION ── */
#problema {
  padding: clamp(80px, 10vh, 120px) clamp(16px, 5vw, 64px);
  background: linear-gradient(180deg, var(--black) 0%, var(--dark) 100%);
  position: relative;
}
#problema::before {
  content: '';
  position: absolute;
  top: 0; left: clamp(16px, 5vw, 64px); right: clamp(16px, 5vw, 64px);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(184,151,42,0.3), transparent);
}
.risks-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  max-width: 1200px;
  margin: 0 auto;
}
.risk-card {
  background: var(--dark-2);
  padding: 48px 40px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s;
  border: 1px solid rgba(255,255,255,0.03);
}
.risk-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px; height: 0;
  background: var(--gold);
  transition: height 0.4s;
}
.risk-card:hover::before { height: 100%; }
.risk-card:hover { background: var(--dark-3); transform: translateY(-4px); }
.risk-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 4rem;
  font-weight: 700;
  color: rgba(184,151,42,0.12);
  line-height: 1;
  margin-bottom: 20px;
  transition: color 0.4s;
}
.risk-card:hover .risk-number { color: rgba(184,151,42,0.25); }
.risk-icon { font-size: 28px; margin-bottom: 16px; }
.risk-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--off-white);
}
.risk-desc { font-size: 13px; line-height: 1.7; color: var(--gray); }

/* ── CTA BAND ── */
.cta-band {
  background: linear-gradient(135deg, #0f0f0f 0%, #1a1308 50%, #0f0f0f 100%);
  padding: clamp(40px, 6vh, 56px) clamp(16px, 5vw, 64px);
  text-align: center;
  border-top: 1px solid rgba(184,151,42,0.2);
  border-bottom: 1px solid rgba(184,151,42,0.2);
}
.cta-band-text {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 300;
  color: var(--off-white);
  margin-bottom: 28px;
  line-height: 1.4;
}
.cta-band-text em { color: var(--gold-light); }

/* ── SOLUTION ── */
#solucao {
  padding: clamp(80px, 10vh, 120px) clamp(16px, 5vw, 64px);
  background: var(--dark);
  position: relative;
}
.solution-grid {
  max-width: 840px;
  margin: 0 auto;
}
.steps-list { margin-top: 40px; }
.step-item {
  display: flex;
  gap: 24px;
  padding: 28px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  align-items: flex-start;
  transition: all 0.3s;
}
.step-item:hover .step-num { color: var(--gold-light); }
.step-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: rgba(184,151,42,0.3);
  line-height: 1;
  min-width: 48px;
  transition: color 0.3s;
}
.step-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--off-white);
}
.step-desc { font-size: 13px; line-height: 1.7; color: var(--gray); }

/* ── SERVICES ── */
#servicos {
  padding: clamp(80px, 10vh, 120px) clamp(16px, 5vw, 64px);
  background: var(--black);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  max-width: 1200px;
  margin: 0 auto;
}
.service-card {
  background: var(--dark-2);
  padding: 56px 48px;
  display: flex;
  gap: 32px;
  align-items: flex-start;
  transition: all 0.4s;
  border: 1px solid rgba(255,255,255,0.03);
  position: relative;
  overflow: hidden;
}
.service-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(184,151,42,0.03) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.4s;
}
.service-card:hover::after { opacity: 1; }
.service-card:hover { transform: translateY(-4px); }
.service-icon-wrap {
  width: 56px; height: 56px;
  border: 1px solid rgba(184,151,42,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 22px;
  transition: all 0.4s;
}
.service-card:hover .service-icon-wrap { background: var(--gold); border-color: var(--gold); }
.service-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--off-white);
}
.service-desc { font-size: 13px; line-height: 1.7; color: var(--gray); }
.service-tag {
  display: inline-block;
  margin-top: 14px;
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(184,151,42,0.3);
  padding: 4px 12px;
}

/* ── HERO PHOTO ── */
.hero-photo {
  position: absolute;
  right: 0; bottom: 0;
  height: 100%;
  width: 35%;
  object-fit: cover;
  object-position: top center;
  mask-image: linear-gradient(90deg, transparent 0%, rgba(0,0,0,0.4) 25%, black 60%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, rgba(0,0,0,0.4) 25%, black 60%);
  opacity: 0.75;
  z-index: 1;
}
.hero-photo-overlay {
  position: absolute;
  right: 0; bottom: 0;
  height: 100%; width: 35%;
  background: linear-gradient(90deg, var(--black) 0%, transparent 50%);
  z-index: 1;
}

/* ── ABOUT ── */
#sobre {
  padding: clamp(80px, 10vh, 120px) clamp(16px, 5vw, 64px);
  background: var(--black);
}
.about-grid {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 48px;
  max-width: 960px;
  margin: 0 auto;
  align-items: start;
}
.about-photo-wrap { position: relative; }
.about-photo {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: top center;
  filter: brightness(0.9);
}
.about-photo-wrap::after {
  content: '';
  position: absolute;
  inset: 8px -8px -8px 8px;
  border: 1px solid rgba(184,151,42,0.25);
  z-index: -1;
}
.about-bio {
  font-size: 14px;
  line-height: 1.9;
  color: var(--gray-light);
  margin-top: 20px;
}
.about-bio strong { color: var(--off-white); }
.credentials-list { margin-top: 28px; }
.credential-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.credential-icon { color: var(--gold); font-size: 15px; width: 24px; text-align: center; flex-shrink: 0; }
.credential-text { font-size: 13px; color: var(--gray-light); }
.credential-text strong { color: var(--off-white); }

/* ── FAQ ── */
#faq {
  padding: clamp(80px, 10vh, 120px) clamp(16px, 5vw, 64px);
  background: var(--dark);
}

/* ── CTA FINAL ── */
.cta-final {
  padding: clamp(80px, 12vh, 140px) clamp(16px, 5vw, 64px);
  background: var(--black);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.cta-final-glow {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(184,151,42,0.07) 0%, transparent 70%);
  pointer-events: none;
}
.cta-final::before {
  content: '';
  position: absolute;
  top: 0; left: clamp(16px, 5vw, 64px); right: clamp(16px, 5vw, 64px);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(184,151,42,0.3), transparent);
}
.cta-final-cards {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  margin: 48px 0 56px;
}
.cta-card {
  background: var(--dark-2);
  border: 1px solid rgba(184,151,42,0.15);
  padding: 28px 32px;
  min-width: 200px;
  text-align: center;
  flex: 1;
  max-width: 220px;
}
.cta-card-icon { font-size: 28px; margin-bottom: 10px; }
.cta-card-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--off-white);
  margin-bottom: 6px;
}
.cta-card-desc { font-size: 12px; color: var(--gray); line-height: 1.6; }
.trust-seals {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
  margin-top: 52px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.06);
  font-size: 12px;
  color: var(--gray);
  letter-spacing: 1.5px;
  text-transform: uppercase;
}
.seal-divider { width: 1px; height: 20px; background: rgba(255,255,255,0.1); }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .risks-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .hero-photo, .hero-photo-overlay { display: none; }
  .about-grid { grid-template-columns: 1fr; gap: 32px; }
  .about-photo-wrap { max-width: 240px; margin: 0 auto; }
  .stat-divider { display: none; }
  .risks-grid { grid-template-columns: 1fr; }
  .step-item { flex-direction: column; gap: 8px; }
  .service-card { flex-direction: column; padding: 32px 24px; gap: 16px; }
  .cta-final-cards { flex-direction: column; align-items: center; }
  .trust-seals { flex-direction: column; gap: 16px; }
  .seal-divider { display: none; }
  .urgency-bar { flex-wrap: wrap; text-align: center; justify-content: center; }
}
