@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@500;600;700&family=Inter:wght@400;500;600&display=swap');

/* ===== RESET & BASE ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; border-color: hsl(0,0%,15%); }

:root {
  --gold: 43, 74%, 49%;
  --gold-light: 43, 74%, 60%;
  --gold-dark: 43, 74%, 38%;
  --bg: #000;
  --bg-secondary: hsl(0,0%,5%);
  --bg-tertiary: hsl(0,0%,8%);
  --radius: 0.75rem;
}

html { scroll-behavior: smooth; -webkit-overflow-scrolling: touch; }
body { margin: 0; background: var(--bg); color: #fff; font-family: 'Inter', sans-serif; -webkit-font-smoothing: antialiased; overflow-x: hidden; }
h1, h2, h3, h4, h5, h6 { font-family: 'Cinzel', serif; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; }
select { appearance: none; -webkit-appearance: none; }

/* ===== CONTAINER ===== */
.container { width: 100%; max-width: 1400px; margin: 0 auto; padding: 0 1.5rem; }

/* ===== TYPOGRAPHY ===== */
.font-display { font-family: 'Cinzel', serif; }
.text-h1 { font-size: 3.625rem; line-height: 1.1; font-weight: 700; }
.text-h1-mobile { font-size: 2.375rem; line-height: 1.15; font-weight: 700; }
.text-h2 { font-size: 2.5rem; line-height: 1.2; font-weight: 600; }
.text-h2-mobile { font-size: 1.75rem; line-height: 1.25; font-weight: 600; }

/* ===== GOLD GRADIENT TEXT ===== */
.gold-text {
  background: linear-gradient(135deg, hsl(43,74%,45%) 0%, hsl(43,74%,65%) 50%, hsl(43,74%,45%) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.text-gold { color: hsl(var(--gold-light)); }
.text-white-75 { color: rgba(255,255,255,0.75); }
.text-white-65 { color: rgba(255,255,255,0.65); }
.text-white-60 { color: rgba(255,255,255,0.60); }
.text-white-50 { color: rgba(255,255,255,0.50); }
.text-white-40 { color: rgba(255,255,255,0.40); }

/* ===== TAG / BADGE ===== */
.tag {
  display: inline-block;
  background: hsla(43,74%,49%,0.12);
  color: hsl(43,74%,55%);
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 8px 18px;
  border-radius: 50px;
  border: 1px solid hsla(43,74%,49%,0.25);
}

/* ===== BUTTONS ===== */
.btn-primary {
  background: linear-gradient(135deg, hsl(43,74%,38%) 0%, hsl(43,74%,50%) 100%);
  color: #000;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 16px 40px;
  border-radius: 50px;
  transition: all 0.3s ease;
  border: none;
  font-size: 14px;
  display: inline-block;
  text-align: center;
}
.btn-primary:hover {
  background: linear-gradient(135deg, hsl(43,74%,45%) 0%, hsl(43,74%,58%) 100%);
  box-shadow: 0 0 30px hsla(43,74%,49%,0.4);
  transform: translateY(-2px);
}

.btn-secondary {
  background: transparent;
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 16px 40px;
  border-radius: 50px;
  border: 1.5px solid hsla(43,74%,49%,0.5);
  transition: all 0.3s ease;
  font-size: 14px;
  display: inline-block;
  text-align: center;
}
.btn-secondary:hover {
  border-color: hsl(43,74%,49%);
  background: hsla(43,74%,49%,0.1);
}

.btn-primary-sm {
  padding: 8px 20px;
  font-size: 12px;
}

/* ===== GLASS CARD ===== */
.glass-card {
  background: rgba(255,255,255,0.03);
  backdrop-filter: blur(16px);
  border: 1px solid hsla(43,74%,49%,0.15);
  border-radius: 16px;
  padding: 32px;
  transition: all 0.4s ease;
}
.glass-card:hover {
  background: rgba(255,255,255,0.05);
  border-color: hsla(43,74%,49%,0.35);
  transform: translateY(-4px);
}

/* ===== ICON CONTAINER ===== */
.icon-container {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: hsla(43,74%,49%,0.1);
  border: 1px solid hsla(43,74%,49%,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: hsl(43,74%,55%);
  transition: all 0.3s ease;
}
.icon-container:hover {
  background: hsla(43,74%,49%,0.2);
  border-color: hsla(43,74%,49%,0.4);
}
.icon-container.small { width: 48px; height: 48px; }

/* ===== STEP CIRCLE ===== */
.step-circle {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, hsl(43,74%,38%) 0%, hsl(43,74%,50%) 100%);
  color: #000;
  font-family: 'Cinzel', serif;
  font-weight: 700;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* ===== INPUT FIELDS ===== */
.input-field {
  width: 100%;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 14px 16px;
  color: white;
  font-size: 15px;
  font-family: 'Inter', sans-serif;
  transition: all 0.3s ease;
}
.input-field::placeholder { color: rgba(255,255,255,0.4); }
.input-field:focus { outline: none; border-color: hsla(43,74%,49%,0.5); background: rgba(255,255,255,0.08); }
select.input-field { cursor: pointer; }
select.input-field option { background: #000; color: #fff; }

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  transition: all 0.3s;
  background: rgba(0,0,0,0.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.navbar.scrolled { background: #000; }
.navbar .nav-inner { display: flex; align-items: center; justify-content: space-between; height: 80px; }
.navbar .logo { font-family: 'Cinzel', serif; font-size: 1.25rem; font-weight: 600; color: #fff; }
.navbar .nav-links { display: flex; align-items: center; gap: 2rem; }
.navbar .nav-link {
  color: rgba(255,255,255,0.7);
  font-size: 14px;
  font-weight: 500;
  transition: color 0.3s;
  position: relative;
}
.navbar .nav-link:hover, .navbar .nav-link.active { color: #fff; }
.navbar .nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 2px;
  background: hsl(var(--gold));
  border-radius: 1px;
}

/* Mobile menu button */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: #fff;
  padding: 8px;
  z-index: 55;
  position: relative;
}
.menu-toggle svg { width: 28px; height: 28px; }

/* Mobile Menu Overlay */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 40;
  background: #000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.mobile-menu.open { opacity: 1; pointer-events: auto; }
.mobile-menu-inner {
  height: 100%;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  padding: 7rem 2rem 2rem;
}
.mobile-menu .mobile-link {
  display: block;
  font-family: 'Cinzel', serif;
  font-size: 1.5rem;
  font-weight: 500;
  padding: 1rem 1.25rem;
  border-radius: 12px;
  color: #fff;
  transition: all 0.3s;
}
.mobile-menu .mobile-link:hover { color: hsl(var(--gold)); }
.mobile-menu .mobile-link.active {
  color: #000;
  background: linear-gradient(to right, hsl(var(--gold)), hsl(var(--gold-light)));
}
.mobile-menu-contact {
  margin-top: auto;
  padding-top: 2rem;
}
.mobile-menu-contact a {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: rgba(255,255,255,0.6);
  transition: color 0.3s;
  margin-bottom: 1rem;
}
.mobile-menu-contact a:hover { color: hsl(var(--gold)); }
.mobile-menu-contact .icon-circle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.125rem;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 50vh;
  display: flex;
  align-items: flex-end;
  padding-bottom: 3rem;
  overflow: hidden;
}
.hero.full-height { min-height: 70vh; }
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: top center;
}
.hero-overlay {
  position: absolute;
  inset: 0;
}
.hero-glow {
  position: absolute;
  top: 0;
  right: 0;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: hsl(148,47%,20%);
  opacity: 0.08;
  filter: blur(120px);
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 10;
  padding-top: 8rem;
  max-width: 48rem;
}
.hero-content h1 { white-space: pre-line; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 1rem; }
.hero-scroll-indicator {
  margin-top: 4rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.hero-scroll-indicator .line { width: 4rem; height: 1px; background: rgba(255,255,255,0.2); }
.hero-scroll-indicator span { color: rgba(255,255,255,0.5); font-size: 14px; display: flex; align-items: center; gap: 0.5rem; }

/* ===== STATS ===== */
.stats-section { padding: 5rem 0; background: var(--bg-secondary); }
.stats-grid { display: grid; grid-template-columns: repeat(2, 1fr); }
.stat-card { text-align: center; padding: 2rem 0.5rem; }
.stat-value { font-family: 'Cinzel', serif; font-size: 2rem; margin-bottom: 0.75rem; }
.stat-label { color: rgba(255,255,255,0.5); font-weight: 500; font-size: 12px; text-transform: uppercase; letter-spacing: 0.1em; }
.stats-divider { width: 1px; background: hsla(43,74%,49%,0.2); display: none; }

/* ===== SECTIONS ===== */
.section { padding: 6rem 0; }
.section.bg-dark { background: var(--bg); }
.section.bg-darker { background: var(--bg-secondary); }
.section.bg-darkest { background: hsl(0,0%,3%); }
.section-header { text-align: center; margin-bottom: 4rem; }
.section-header .tag { margin-bottom: 1rem; }
.section-header h2 { color: #fff; margin-bottom: 1rem; }
.section-header p { color: rgba(255,255,255,0.5); max-width: 42rem; margin: 0 auto; }

/* ===== GRIDS ===== */
.grid-2 { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
.grid-3 { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
.grid-4 { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
.grid-2-cols { display: grid; grid-template-columns: 1fr; gap: 3rem; }
.grid-5-3 { display: grid; grid-template-columns: 1fr; gap: 3rem; }

/* ===== AREAS DE ATUAÇÃO ===== */
.area-card .icon-container { margin-bottom: 1.5rem; }
.area-card h3 { color: #fff; font-size: 1.25rem; margin-bottom: 0.75rem; }
.area-card p { color: rgba(255,255,255,0.5); font-size: 14px; margin-bottom: 1.5rem; line-height: 1.6; }
.area-card .link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: hsl(var(--gold));
  font-weight: 500;
  font-size: 14px;
  transition: gap 0.3s;
}
.area-card:hover .link-arrow { gap: 0.75rem; }

/* ===== POR QUE ESCOLHER ===== */
.por-que-grid { align-items: center; }
.por-que-image { position: relative; }
.por-que-image img {
  border-radius: 1rem;
  width: 100%;
  object-fit: cover;
  aspect-ratio: 4/5;
  border: 1px solid hsla(43,74%,49%,0.2);
}
.por-que-image .image-glow {
  position: absolute;
  inset: -1rem;
  border-radius: 1rem;
  background: linear-gradient(135deg, hsla(43,74%,49%,0.1) 0%, transparent 50%);
  opacity: 0.5;
}
.por-que-image .floating-stat {
  position: absolute;
  bottom: -1.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 20;
}
.diferencial-item { display: flex; gap: 1rem; margin-bottom: 1.25rem; }
.diferencial-check {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: hsla(43,74%,49%,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}
.diferencial-check svg { width: 16px; height: 16px; color: hsl(var(--gold)); }

/* ===== DEPOIMENTOS ===== */
.depoimento-card { position: relative; }
.depoimento-card .quote-icon {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 40px;
  height: 40px;
  color: hsla(43,74%,49%,0.2);
}
.depoimento-card .texto { color: rgba(255,255,255,0.7); font-size: 14px; line-height: 1.6; margin-bottom: 1.5rem; font-style: italic; }
.depoimento-card .nome { color: #fff; font-weight: 600; }
.depoimento-card .cidade { color: hsl(var(--gold-light)); font-size: 14px; }

/* ===== CTA FINAL ===== */
.cta-section { position: relative; overflow: hidden; }
.cta-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, hsla(43,74%,49%,0.08) 0%, transparent 60%);
  filter: blur(100px);
  pointer-events: none;
}
.cta-content { text-align: center; max-width: 48rem; margin: 0 auto; position: relative; z-index: 10; }

/* ===== COMO TRABALHAMOS ===== */
.steps-horizontal { display: none; }
.steps-vertical { position: relative; max-width: 28rem; margin: 0 auto; }
.steps-vertical .vertical-line {
  position: absolute;
  left: 24px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: hsla(43,74%,49%,0.3);
}
.step-item-v { display: flex; gap: 1.5rem; margin-bottom: 2rem; }
.step-item-v .step-text h3 { color: #fff; font-size: 1.125rem; margin-bottom: 0.5rem; }
.step-item-v .step-text p { color: rgba(255,255,255,0.5); font-size: 14px; line-height: 1.6; }

.steps-horizontal .step-item-h { text-align: center; flex: 1; padding: 0 1rem; }
.steps-horizontal .step-item-h h3 { color: #fff; font-size: 1.125rem; margin-bottom: 0.5rem; }
.steps-horizontal .step-item-h p { color: rgba(255,255,255,0.5); font-size: 14px; line-height: 1.6; }
.steps-horizontal .step-circle { margin: 0 auto 1.5rem; position: relative; z-index: 10; }
.steps-connection-line {
  position: absolute;
  top: 24px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(90deg, transparent, hsla(43,74%,49%,0.3), transparent);
}

/* ===== FAQ ===== */
.faq-item { border-bottom: 1px solid rgba(255,255,255,0.1); overflow: hidden; }
.faq-item.open { border-bottom-color: hsla(43,74%,49%,0.3); }
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 0;
  text-align: left;
  background: none;
  border: none;
  color: #fff;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
}
.faq-question .faq-icon {
  color: hsl(var(--gold));
  flex-shrink: 0;
  transition: transform 0.3s;
  font-size: 1.25rem;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.3s ease, padding 0.3s ease; }
.faq-item.open .faq-answer { max-height: 500px; padding-bottom: 1.5rem; }
.faq-answer p { color: rgba(255,255,255,0.6); font-size: 14px; line-height: 1.6; }

/* ===== SERVIÇOS (pages) ===== */
.servico-card h3 { color: hsl(var(--gold-light)); margin-bottom: 1rem; }
.servico-card li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: rgba(255,255,255,0.5);
  font-size: 14px;
  margin-bottom: 0.5rem;
}
.servico-card .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: hsl(var(--gold));
  flex-shrink: 0;
}
.check-item { display: flex; align-items: flex-start; gap: 0.75rem; margin-bottom: 0.75rem; }
.check-item .check-circle {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: hsla(43,74%,49%,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}
.check-item .check-circle svg { width: 12px; height: 12px; color: hsl(var(--gold)); }
.check-item span { color: rgba(255,255,255,0.6); font-size: 14px; }

/* ===== DIFERENCIAIS GRID ===== */
.diferenciais-grid { display: grid; grid-template-columns: 1fr; gap: 1rem; }
.diferencial-card h3 { color: #fff; font-size: 1.125rem; margin-bottom: 0.5rem; }
.diferencial-card p { color: rgba(255,255,255,0.5); font-size: 14px; }

/* ===== URGENCY BANNER ===== */
.urgency-banner {
  padding: 1rem 0;
  background: linear-gradient(135deg, hsl(43,74%,38%) 0%, hsl(43,74%,50%) 100%);
  text-align: center;
}
.urgency-banner .inner { display: flex; align-items: center; justify-content: center; gap: 0.75rem; color: #000; font-weight: 500; font-size: 14px; }

/* ===== SOBRE PAGE ===== */
.sobre-image { position: relative; }
.sobre-image img {
  border-radius: 1rem;
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border: 1px solid hsla(43,74%,49%,0.2);
  position: relative;
  z-index: 10;
}
.sobre-image .image-glow {
  position: absolute;
  inset: -1rem;
  border-radius: 1rem;
  background: linear-gradient(135deg, hsla(43,74%,49%,0.1) 0%, transparent 50%);
}
.socio-card { text-align: center; }
.socio-avatar img{
  width: 112px;
  height: 112px;
  border-radius: 50%;
  margin: 0 auto 1rem;
  background: hsla(43,74%,49%,0.1);
  border: 2px solid hsla(43,74%,49%,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
}
.socio-avatar .initials { font-family: 'Cinzel', serif; color: hsl(var(--gold)); font-size: 1.5rem; }
.advogado-card { text-align: center; padding: 1.5rem 2rem; }
.advogado-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  margin: 0 auto 1rem;
  overflow: hidden;
  border: 1px solid hsla(43,74%,49%,0.2);
}
.advogado-avatar img { width: 100%; height: 100%; object-fit: cover; }
.advogado-avatar.no-photo {
  background: hsla(43,74%,49%,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}
.advogado-avatar.no-photo .initials { font-family: 'Cinzel', serif; color: hsl(var(--gold)); font-size: 1.125rem; }

/* ===== CONTATO PAGE ===== */
.escritorio-card .sede-tag { position: absolute; top: 1.5rem; right: 1.5rem; }
.escritorio-card .sede-tag .tag { font-size: 10px; padding: 4px 12px; }
.contact-info-item { display: flex; align-items: center; gap: 0.75rem; font-size: 14px; margin-bottom: 1rem; }
.contact-info-item svg { color: hsl(var(--gold)); flex-shrink: 0; }
.contact-info-item a { color: rgba(255,255,255,0.5); transition: color 0.3s; }
.contact-info-item a:hover { color: hsl(var(--gold)); }
.map-container { border-radius: 1rem; overflow: hidden; border: 1px solid hsla(43,74%,49%,0.2); }

/* ===== FOOTER ===== */
.footer { background: var(--bg-secondary); color: #fff; }
.footer .divider-gradient {
  height: 1px;
  background: linear-gradient(90deg, transparent, hsla(43,74%,49%,0.3), transparent);
}
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 3rem; padding: 4rem 0; }
.footer h4 { font-size: 1.125rem; font-weight: 600; margin-bottom: 1.5rem; }
.footer p.desc { color: rgba(255,255,255,0.65); font-size: 14px; line-height: 1.6; margin-bottom: 1.5rem; }
.footer .social-icons { display: flex; gap: 0.75rem; }
.footer .social-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
}
.footer .social-icon:hover { background: hsl(var(--gold)); }
.footer .social-icon svg { width: 18px; height: 18px; }
.footer-link { color: rgba(255,255,255,0.5); font-size: 14px; transition: color 0.3s; display: block; margin-bottom: 0.75rem; }
.footer-link:hover { color: hsl(var(--gold)); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.06); padding: 1.5rem 0; text-align: center; }
.footer-bottom p { color: rgba(255,255,255,0.4); font-size: 14px; }

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  z-index: 1000;
  transition: all 0.3s ease;
  border: none;
}
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 6px 30px rgba(37,211,102,0.5); }
.whatsapp-float svg { width: 28px; height: 28px; fill: white; }

/* ===== LEAD FORM MODAL ===== */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 100;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
.modal-overlay.open { display: flex; }
.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(4px);
}
.modal-content {
  position: relative;
  width: 100%;
  max-width: 32rem;
  border-radius: 1rem;
  padding: 1.5rem 2rem;
  background: hsl(0,0%,8%);
  border: 1px solid hsla(43,74%,49%,0.2);
  animation: fadeUp 0.4s ease forwards;
}
.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  color: rgba(255,255,255,0.5);
  cursor: pointer;
  transition: color 0.3s;
}
.modal-close:hover { color: #fff; }
.modal-success { text-align: center; padding: 2rem 0; }
.modal-success .check-big {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  margin: 0 auto 1rem;
  background: hsla(43,74%,49%,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: hsl(var(--gold));
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1rem; }
.form-group label { display: block; font-size: 14px; font-weight: 500; color: #fff; margin-bottom: 6px; }
.form-checkbox { display: flex; align-items: flex-start; gap: 0.5rem; margin-bottom: 1rem; }
.form-checkbox input { margin-top: 4px; accent-color: hsl(43,74%,49%); }
.form-checkbox span { color: rgba(255,255,255,0.5); font-size: 12px; }

/* ===== ANIMATIONS ===== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
.animate-fade-up { animation: fadeUp 0.8s ease-out forwards; }

.scroll-reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.scroll-reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 640px) {
  .btn-primary, .btn-secondary { padding: 14px 28px; font-size: 13px; letter-spacing: 1px; }
  .glass-card { padding: 24px; border-radius: 12px; }
  .tag { font-size: 10px; padding: 6px 14px; letter-spacing: 1.5px; }
  .icon-container { width: 48px; height: 48px; border-radius: 12px; }
  .step-circle { width: 40px; height: 40px; font-size: 16px; }
  .input-field { padding: 12px 14px; font-size: 16px; border-radius: 10px; }
  .hero-ctas { flex-direction: column; }
  .form-grid { grid-template-columns: 1fr; }
}

@media (min-width: 768px) {
  .grid-2 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-2-cols { grid-template-columns: 1fr 1fr; gap: 3rem 5rem; }
  .diferenciais-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .hero { align-items: center; padding-bottom: 0; }
  .hero.full-height { min-height: 100vh; }
  .hero-bg { background-position: center; }
  .text-h1-mobile { font-size: 3.625rem; line-height: 1.1; }
  .text-h2-mobile { font-size: 2.5rem; line-height: 1.2; }
  .stat-value { font-size: 3rem; }
  .navbar .nav-links { display: flex; }
}

@media (min-width: 1024px) {
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
  .grid-4 { grid-template-columns: repeat(4, 1fr); }
  .grid-2-cols { grid-template-columns: 1fr 1fr; }
  .grid-5-3 { grid-template-columns: 3fr 2fr; }
  .stats-grid { grid-template-columns: repeat(4, 1fr); }
  .stats-divider { display: block; }
  .stat-value { font-size: 3.75rem; }
  .footer-grid { grid-template-columns: repeat(4, 1fr); }
  .steps-horizontal { display: block; }
  .steps-vertical.desktop-hide { display: none; }
  .menu-toggle { display: none !important; }
}

@media (max-width: 1023px) {
  .navbar .nav-links { display: none !important; }
  .menu-toggle { display: block; }
  .mobile-menu { display: block; }
}

/* Touch-friendly */
@media (hover: none) and (pointer: coarse) {
  .glass-card:hover { transform: none; }
  .btn-primary:hover, .btn-secondary:hover { transform: none; }
  .whatsapp-float:hover { transform: none; }
}

/* Safe area */
@supports (padding-bottom: env(safe-area-inset-bottom)) {
  .whatsapp-float {
    bottom: calc(24px + env(safe-area-inset-bottom));
    right: calc(24px + env(safe-area-inset-right));
  }
}

/* Checkbox */
input[type="checkbox"] { accent-color: hsl(43,74%,49%); }
