:root {
  --bg: #160803;
  --bg-soft: #2b1208;
  --card: rgba(255, 245, 220, 0.06);
  --stroke: rgba(255, 214, 140, 0.14);
  --gold: #ffcf6a;
  --gold-strong: #ffb939;
  --gold-soft: #fff0bf;
  --gold-deep: #e6a327;
  --bronze: #8d3d10;
  --text: #f8ead0;
  --muted: #ddccb3;
  --white: #ffffff;
  --shadow: 0 18px 70px rgba(0,0,0,0.35);
  --radius: 24px;
  --container: 1200px;
  --header-h: 92px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  background: radial-gradient(circle at top, #6c2f0b 0%, #2a1208 36%, #160803 100%);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.site-bg, .grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
}
.site-bg {
  background:
    radial-gradient(circle at 10% 20%, rgba(255, 192, 89, 0.12), transparent 22%),
    radial-gradient(circle at 85% 22%, rgba(255, 174, 56, 0.12), transparent 24%),
    radial-gradient(circle at 50% 80%, rgba(255, 222, 161, 0.08), transparent 26%);
  animation: floatGlow 11s ease-in-out infinite alternate;
}
.grain {
  opacity: 0.05;
  background-image: radial-gradient(#fff 0.6px, transparent 0.6px);
  background-size: 8px 8px;
}

.container { width: min(calc(100% - 32px), var(--container)); margin: 0 auto; }

.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  height: var(--header-h);
  backdrop-filter: blur(18px);
  background: rgba(23, 8, 3, 0.74);
  border-bottom: 1px solid rgba(255, 220, 158, 0.08);
}
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  height: 100%;
}
.brand img { width: 138px; filter: drop-shadow(0 8px 24px rgba(0,0,0,0.35)); }
.nav { display: flex; align-items: center; gap: 24px; }
.nav a { color: var(--muted); font-weight: 600; transition: .3s ease; }
.nav a:hover { color: var(--white); }

.menu-toggle {
  display: none;
  background: transparent;
  border: 0;
  width: 48px;
  height: 48px;
  position: relative;
}
.menu-toggle span {
  position: absolute;
  left: 10px;
  width: 28px;
  height: 2px;
  background: var(--gold-soft);
  transition: .3s ease;
}
.menu-toggle span:nth-child(1) { top: 14px; }
.menu-toggle span:nth-child(2) { top: 23px; }
.menu-toggle span:nth-child(3) { top: 32px; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 24px;
  border-radius: 999px;
  font-weight: 800;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease, background .3s ease;
  cursor: pointer;
  border: 1px solid transparent;
}
.btn:hover { transform: translateY(-2px); }
.btn-gold {
  color: #241003;
  background: linear-gradient(135deg, #ffe4a2 0%, #ffcf6a 38%, #ffb939 100%);
  box-shadow: 0 12px 30px rgba(255, 186, 59, 0.28);
}
.btn-outline {
  border-color: rgba(255, 218, 156, 0.3);
  color: var(--gold-soft);
  background: rgba(255,255,255,0.02);
}
.btn-outline:hover {
  border-color: rgba(255, 218, 156, 0.75);
  background: rgba(255,255,255,0.05);
}
.btn-block { width: 100%; }

.hero {
  position: relative;
  padding: 82px 0 48px;
}
.hero-grid,
.about-grid,
.deliver-grid,
.nationwide-grid,
.contact-grid,
.proof-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 34px;
  align-items: center;
}

.eyebrow,
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid var(--stroke);
  background: rgba(255,255,255,0.03);
  color: var(--gold-soft);
  font-size: .9rem;
  margin-bottom: 20px;
}
.hero h1,
.section-head h2,
.about-copy h2,
.deliver-copy h2,
.nationwide-copy h2,
.contact-copy h2 {
  font-family: 'Cinzel', serif;
  font-size: clamp(2.25rem, 5vw, 4.7rem);
  line-height: 1.06;
  margin-bottom: 18px;
}
.section-head h2,
.about-copy h2,
.deliver-copy h2,
.nationwide-copy h2,
.contact-copy h2 { font-size: clamp(1.9rem, 3vw, 3rem); }
.hero-text,
.section-head p,
.about-copy p,
.deliver-copy p,
.nationwide-copy p,
.contact-copy p,
.proof-copy p { color: var(--muted); font-size: 1.04rem; }

.hero-questions,
.trust-grid,
.contact-cards,
.field-row,
.gallery-grid,
.method-grid,
.bullet-cards,
.hero-actions,
.hero-mini-info,
.nationwide-points,
.deliver-list,
.process-steps,
.map-badges { display: grid; }

.question-card,
.glass-card,
.method-card,
.trust-item,
.contact-cards a,
.deliver-item,
.brazil-card,
.map-frame,
.form-wrap,
.about-media,
.gallery-grid img,
.process-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.03));
  border: 1px solid var(--stroke);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.question-card {
  padding: 18px 22px;
  position: relative;
  overflow: hidden;
}
.question-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.08), transparent);
  transform: translateX(-100%);
  animation: sweep 7s linear infinite;
}
.hero-questions { gap: 14px; margin: 28px 0; }
.hero-actions { grid-template-columns: repeat(2, max-content); gap: 14px; margin-bottom: 28px; }
.hero-mini-info { grid-template-columns: repeat(3, 1fr); gap: 14px; }
.hero-mini-info div {
  padding: 18px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.03);
}
.hero-mini-info span { display: block; font-size: .82rem; color: var(--muted); margin-bottom: 4px; }
.hero-mini-info strong { font-size: .98rem; }

.visual-shell {
  position: relative;
  padding: 28px;
  border-radius: 38px;
  background: linear-gradient(145deg, rgba(255, 213, 130, 0.08), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(255, 215, 154, 0.14);
  box-shadow: 0 30px 80px rgba(0,0,0,0.45);
  overflow: hidden;
}
.visual-shell::after {
  content: "";
  position: absolute;
  inset: auto -15% -15% auto;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(255,205,104,.4), transparent 70%);
}
.hero-logo { width: 100%; border-radius: 28px; }
.shine {
  position: absolute;
  top: -30%;
  left: -30%;
  width: 50%;
  height: 160%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.14), transparent);
  transform: rotate(18deg);
  animation: shineMove 7s linear infinite;
}

.section { padding: 92px 0; }
.trust-strip { padding: 12px 0 0; }
.trust-grid { grid-template-columns: repeat(4, 1fr); gap: 16px; }
.trust-item { padding: 20px; text-align: center; font-weight: 700; color: var(--gold-soft); }
.photo-stack { display: grid; gap: 18px; }
.photo-stack img,
.gallery-grid img,
.brazil-map-real {
  border-radius: calc(var(--radius) - 6px);
  object-fit: cover;
  width: 100%;
}
.photo-stack img:first-child { height: 380px; }
.photo-stack img:last-child { height: 260px; }

.bullet-cards { grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 26px; }
.bullet-cards article {
  padding: 20px;
  border-radius: 20px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
}
.bullet-cards h3,
.method-card h3,
.glass-card h3,
.process-card h3 {
  font-family: 'Cinzel', serif;
  margin-bottom: 8px;
}

.method-grid { grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 34px; }
.method-card {
  padding: 28px;
  position: relative;
  overflow: hidden;
}
.method-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(255,211,110,.16), transparent 40%);
}
.method-number { display: inline-flex; margin-bottom: 14px; font-size: 2rem; font-weight: 800; color: var(--gold); }

.deliver-list { grid-template-columns: repeat(2, 1fr); gap: 14px; margin-top: 28px; }
.deliver-item { padding: 18px 20px; color: var(--white); display: flex; gap: 12px; align-items: flex-start; }
.deliver-item span { color: var(--gold); font-weight: 900; }
.glass-card { padding: 30px; }
.glass-card ul { list-style: none; margin: 18px 0 24px; display: grid; gap: 14px; color: var(--muted); }

.process-grid { align-items: stretch; margin-top: 28px; }
.process-steps { grid-template-columns: repeat(2, 1fr); gap: 18px; }
.process-card { padding: 24px; position: relative; }
.process-card span {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ffe4a2 0%, #ffcf6a 38%, #ffb939 100%);
  color: #2b1208;
  font-weight: 900;
  margin-bottom: 14px;
}
.highlight-card {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: linear-gradient(180deg, rgba(255,225,163,0.08), rgba(255,255,255,0.03));
}
.highlight-card p + p { margin-top: 16px; }

.brazil-card {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  padding: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.brazil-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(255, 208, 107, 0.10), transparent 58%);
}
.brazil-map-real {
  max-width: 540px;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 20px 34px rgba(0,0,0,.28));
}
.map-badges {
  position: absolute;
  inset: auto 22px 22px 22px;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  z-index: 2;
}
.map-badges span {
  text-align: center;
  padding: 14px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.08);
  background: rgba(28, 9, 2, 0.72);
  color: var(--gold-soft);
  font-weight: 700;
  backdrop-filter: blur(14px);
}
.nationwide-points { grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 24px; }
.nationwide-points div {
  padding: 18px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.06);
  background: rgba(255,255,255,.03);
  text-align: center;
  font-weight: 700;
}

.gallery-grid { grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 24px; }
.gallery-grid img { height: 340px; }
.contact-cards { grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 30px; }
.contact-cards a { padding: 18px; }
.contact-cards span { display: block; color: var(--muted); font-size: .88rem; margin-bottom: 4px; }
.form-wrap { padding: 12px; }
.contact-form { padding: 24px; border-radius: 20px; background: rgba(14,5,2,.75); }
.field-row { grid-template-columns: repeat(2, 1fr); gap: 16px; }
.field { margin-bottom: 16px; }
.field label { display: block; margin-bottom: 8px; font-weight: 700; color: var(--gold-soft); }
.field input,
.field textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid rgba(255, 220, 158, 0.16);
  background: rgba(255,255,255,0.04);
  color: var(--white);
  outline: none;
  transition: border-color .3s ease, box-shadow .3s ease;
}
.field input::placeholder,
.field textarea::placeholder { color: rgba(255,255,255,0.45); }
.field input:focus,
.field textarea:focus {
  border-color: rgba(255, 220, 158, 0.5);
  box-shadow: 0 0 0 4px rgba(255, 185, 57, 0.1);
}
.map-frame { padding: 12px; margin-top: 28px; overflow: hidden; }
.map-frame iframe { width: 100%; height: 420px; border: 0; border-radius: 18px; }

.footer {
  padding: 40px 0 112px;
  border-top: 1px solid rgba(255,255,255,.06);
  background: rgba(9, 2, 0, .55);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr .9fr .8fr;
  gap: 30px;
  align-items: start;
}
.footer-logo { width: 130px; margin-bottom: 14px; }
.footer h3 {
  font-family: 'Cinzel', serif;
  margin-bottom: 10px;
}
.footer a,
.footer p { color: var(--muted); display: block; margin-bottom: 8px; }
.footer-bottom {
  width: min(calc(100% - 32px), var(--container));
  margin: 24px auto 0;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,.06);
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: var(--muted);
  font-size: .95rem;
}

.floating-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 1200;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 20px;
  border-radius: 999px;
  background: linear-gradient(135deg, #25D366, #18b65a);
  color: #fff;
  font-weight: 800;
  box-shadow: 0 18px 40px rgba(37, 211, 102, 0.35);
  animation: floatBtn 2.8s ease-in-out infinite;
}
.floating-whatsapp svg { width: 24px; height: 24px; }

.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: .12s; }
.delay-2 { transition-delay: .24s; }
.pulse { animation: pulseSoft 2.6s infinite; }

@keyframes floatGlow {
  from { transform: translateY(0) scale(1); }
  to { transform: translateY(-12px) scale(1.03); }
}
@keyframes sweep {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(120%); }
}
@keyframes shineMove {
  from { transform: translateX(-20%) rotate(18deg); }
  to { transform: translateX(230%) rotate(18deg); }
}
@keyframes pulseSoft {
  0%,100% { box-shadow: 0 12px 30px rgba(255, 186, 59, 0.28); }
  50% { box-shadow: 0 18px 46px rgba(255, 186, 59, 0.44); }
}
@keyframes floatBtn {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}

@media (max-width: 1080px) {
  .hero-grid,
  .about-grid,
  .deliver-grid,
  .nationwide-grid,
  .contact-grid,
  .proof-grid,
  .footer-grid { grid-template-columns: 1fr; }

  .hero h1 { font-size: clamp(2.2rem, 6vw, 4rem); }
  .trust-grid,
  .bullet-cards,
  .method-grid,
  .deliver-list,
  .nationwide-points,
  .gallery-grid,
  .contact-cards,
  .map-badges,
  .process-steps { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 860px) {
  :root { --header-h: 84px; }
  .desktop-cta { display: none; }
  .menu-toggle { display: block; }
  .nav {
    position: absolute;
    top: calc(100% + 12px);
    left: 16px;
    right: 16px;
    background: rgba(20, 6, 2, 0.96);
    border: 1px solid rgba(255, 220, 158, 0.1);
    border-radius: 20px;
    padding: 18px;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    box-shadow: 0 24px 60px rgba(0,0,0,.35);
  }
  .nav.is-open { display: flex; }
  .hero-actions,
  .hero-mini-info,
  .trust-grid,
  .bullet-cards,
  .method-grid,
  .deliver-list,
  .nationwide-points,
  .contact-cards,
  .field-row,
  .gallery-grid,
  .map-badges,
  .process-steps { grid-template-columns: 1fr; }

  .hero { padding-top: 42px; }
  .section { padding: 78px 0; }
  .photo-stack img:first-child,
  .photo-stack img:last-child,
  .gallery-grid img,
  .brazil-map-real { height: auto; }
  .map-frame iframe { height: 360px; }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 560px) {
  .container { width: min(calc(100% - 22px), var(--container)); }
  .hero h1,
  .section-head h2,
  .about-copy h2,
  .deliver-copy h2,
  .nationwide-copy h2,
  .contact-copy h2 { font-size: 2rem; }
  .question-card,
  .glass-card,
  .method-card,
  .process-card,
  .contact-cards a,
  .deliver-item { padding: 18px; }
  .contact-form { padding: 18px; }
  .floating-whatsapp { right: 12px; bottom: 12px; padding: 14px 18px; }
  .brazil-card { min-height: 300px; }
}


/* Suporte jurídico */
.section-legal {
  padding-top: 24px;
}
.legal-grid {
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  gap: 34px;
  align-items: stretch;
}
.legal-copy,
.legal-panel {
  height: 100%;
}
.legal-signature {
  margin: 22px 0 18px;
  padding: 16px 18px;
  border-radius: 18px;
  border: 1px solid var(--stroke);
  background: rgba(255,255,255,0.04);
  color: var(--gold-soft);
}
.legal-points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 18px;
}
.legal-points div {
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid var(--stroke);
  background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02));
  color: var(--text);
  text-align: center;
  font-weight: 600;
}
.legal-panel h3 {
  font-family: 'Cinzel', serif;
  margin-bottom: 12px;
  font-size: 1.4rem;
}
.legal-panel p + p {
  margin-top: 12px;
}
.legal-panel .btn {
  margin-top: 18px;
}

@media (max-width: 980px) {
  .legal-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .legal-points {
    grid-template-columns: 1fr;
  }
}
