/* ============================================================
   Zonda Trade — Public site (modern, Roboto-only)
   60-30-10 palette · 2025 B2B premium feel
   ============================================================ */
:root {
  /* Palette */
  --c-graphite:      #4A3F42;
  --c-graphite-900:  #2a2123;
  --c-graphite-700:  #3a3033;
  --c-graphite-500:  #6b5e62;
  --c-graphite-300:  #cfc8ca;
  --c-graphite-200:  #e6e2e3;
  --c-graphite-100:  #f3f1f2;
  --c-graphite-50:   #faf8f9;
  --c-blue:          #1E22FF;
  --c-blue-700:      #1417c8;
  --c-blue-300:      #6a6dff;
  --c-blue-100:      #d8d9ff;
  --c-blue-50:       #eef0ff;
  --c-orange:        #FF4500;
  --c-orange-700:    #d33b00;
  --c-orange-100:    #ffd6c2;
  --c-white:         #ffffff;

  /* Typography */
  --ff: 'Roboto', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --ff-mono: 'Roboto Mono', ui-monospace, Menlo, monospace;

  /* Layout */
  --container: 1240px;
  --radius-sm: 8px;
  --radius:    14px;
  --radius-lg: 22px;

  /* Shadows */
  --shadow-xs:  0 1px 2px rgba(42,33,35,.06);
  --shadow-sm:  0 2px 8px rgba(42,33,35,.08);
  --shadow-md:  0 12px 30px -10px rgba(42,33,35,.18);
  --shadow-lg:  0 30px 60px -20px rgba(42,33,35,.25);
  --shadow-blue:0 20px 40px -16px rgba(30,34,255,.30);

  /* Motion */
  --ease: cubic-bezier(.22,.61,.36,1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--ff);
  font-size: 16px;
  line-height: 1.6;
  color: var(--c-graphite-700);
  background: var(--c-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--c-blue); text-decoration: none; transition: color .18s var(--ease); }
a:hover { color: var(--c-orange); }
button { font: inherit; }
ul { margin: 0; padding: 0; list-style: none; }

/* ---------- Typography (Roboto-only hierarchy) ---------- */
h1, h2, h3, h4, h5 {
  font-family: var(--ff);
  color: var(--c-graphite-900);
  letter-spacing: -.025em;
  margin: 0 0 .5em;
  text-wrap: balance;
}
h1 { font-size: clamp(2.4rem, 5.4vw, 4.2rem); font-weight: 900; line-height: 1.05; letter-spacing: -.035em; }
h2 { font-size: clamp(1.9rem, 3.5vw, 2.85rem); font-weight: 700; line-height: 1.1; }
h3 { font-size: clamp(1.2rem, 1.9vw, 1.55rem); font-weight: 700; line-height: 1.25; }
h4 { font-size: .75rem; font-weight: 700; text-transform: uppercase; letter-spacing: .12em; color: var(--c-graphite-500); margin-bottom: 14px; }
p  { margin: 0 0 1em; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .72rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase;
  color: var(--c-blue);
  margin-bottom: 16px;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--c-blue-50);
}
.eyebrow.on-dark { background: rgba(255,255,255,.08); color: rgba(255,255,255,.85); }
.eyebrow.on-blue { background: rgba(255,255,255,.16); color: #fff; }

.lead { font-size: clamp(1rem, 1.3vw, 1.18rem); color: var(--c-graphite-500); line-height: 1.6; }

/* ---------- Layout ---------- */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 28px; }
section { padding: clamp(70px, 9vw, 120px) 0; position: relative; }
.section-head { max-width: 760px; margin-bottom: 56px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }

/* ---------- Sticky Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.78);
  backdrop-filter: saturate(180%) blur(16px);
  -webkit-backdrop-filter: saturate(180%) blur(16px);
  border-bottom: 1px solid transparent;
  transition: background .25s var(--ease), border-color .25s var(--ease), box-shadow .25s var(--ease);
}
.site-header.is-scrolled {
  background: rgba(255,255,255,.95);
  border-bottom-color: var(--c-graphite-200);
  box-shadow: var(--shadow-xs);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; height: 96px; }

.brand {
  display: inline-flex; align-items: center; gap: 10px;
  color: var(--c-graphite-900);
  max-width: 320px;
  min-width: 0;
}
.brand:hover { color: var(--c-graphite-900); }
.brand img {
  display: block;
  height: 80px;
  width: auto;
  max-width: 360px;
  max-height: 84px;
  object-fit: contain;
}
.brand-mark {
  font-family: var(--ff);
  font-size: 30px; font-weight: 900;
  letter-spacing: -.03em;
  color: var(--c-graphite-900);
  white-space: nowrap;
}
.brand-mark .dot { color: var(--c-orange); }
.brand-mark .accent { color: var(--c-blue); }
.brand-mark.light { color: #fff; }
.brand-mark.light .dot { color: var(--c-orange); }

.site-nav { display: flex; align-items: center; gap: 28px; }
.site-nav a {
  font-size: 14.5px; font-weight: 500; color: var(--c-graphite-700); position: relative;
  white-space: nowrap;
}
.site-nav a:not(.nav-cta)::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: -8px; height: 2px;
  background: var(--c-blue); transform: scaleX(0); transition: transform .18s var(--ease); transform-origin: left;
  border-radius: 2px;
}
.site-nav a:not(.nav-cta):hover { color: var(--c-graphite-900); }
.site-nav a:not(.nav-cta):hover::after { transform: scaleX(1); }
.site-nav a.nav-cta {
  background: var(--c-orange); color: #fff;
  padding: 11px 20px; border-radius: 999px; font-weight: 600; font-size: 13.5px;
  box-shadow: 0 4px 12px -3px rgba(255,69,0,.5);
  transition: transform .18s var(--ease), box-shadow .18s var(--ease), background .18s var(--ease);
}
.site-nav a.nav-cta:hover { background: var(--c-orange-700); color: #fff; transform: translateY(-2px); box-shadow: 0 8px 18px -4px rgba(255,69,0,.55); }

/* Dropdown "Soluções" */
.nav-item.has-dropdown { position: relative; display: flex; align-items: center; }
.nav-drop-btn {
  display: inline-flex; align-items: center; gap: 6px;
  background: none; border: none; cursor: pointer; padding: 0;
  font: inherit; font-size: 14.5px; font-weight: 500; color: var(--c-graphite-700);
  white-space: nowrap;
}
.nav-drop-btn .caret { width: 14px; height: 14px; transition: transform .18s var(--ease); }
.has-dropdown:hover .nav-drop-btn,
.has-dropdown:focus-within .nav-drop-btn { color: var(--c-graphite-900); }
.has-dropdown:hover .caret,
.has-dropdown:focus-within .caret { transform: rotate(180deg); }
/* ponte invisível para não fechar no vão entre botão e menu */
.has-dropdown::after { content: ''; position: absolute; top: 100%; left: 0; right: 0; height: 16px; }
.nav-dropdown {
  position: absolute; top: calc(100% + 14px); left: -14px;
  min-width: 230px;
  background: #fff; border: 1px solid var(--c-graphite-200); border-radius: 14px;
  box-shadow: 0 18px 40px -12px rgba(0,0,0,.18);
  padding: 8px;
  display: flex; flex-direction: column;
  opacity: 0; pointer-events: none; transform: translateY(8px);
  transition: opacity .18s var(--ease), transform .18s var(--ease);
  z-index: 60;
}
.has-dropdown:hover .nav-dropdown,
.has-dropdown:focus-within .nav-dropdown { opacity: 1; pointer-events: auto; transform: translateY(0); }
.site-nav .nav-dropdown a { padding: 11px 14px; border-radius: 9px; font-size: 14px; }
.site-nav .nav-dropdown a::after { display: none; }
.site-nav .nav-dropdown a:hover { background: var(--c-graphite-50); color: var(--c-graphite-900); }

.nav-toggle { display: none; width: 40px; height: 40px; background: none; border: none; cursor: pointer; padding: 0; }
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--c-graphite-900); margin: 5px auto; transition: transform .2s, opacity .2s; border-radius: 2px; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 900px) {
  .nav-toggle { display: block; }
  .site-nav {
    position: absolute; left: 0; right: 0; top: 100%;
    flex-direction: column; align-items: stretch; gap: 0;
    background: #fff; border-top: 1px solid var(--c-graphite-200);
    padding: 12px 20px 20px;
    transform: translateY(-12px); opacity: 0; pointer-events: none;
    transition: transform .2s, opacity .2s;
  }
  .site-nav.is-open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .site-nav a { padding: 14px 4px; border-bottom: 1px solid var(--c-graphite-100); }
  .site-nav a.nav-cta { margin-top: 12px; text-align: center; }
  /* Dropdown vira lista aberta no menu mobile */
  .nav-item.has-dropdown { flex-direction: column; align-items: stretch; }
  .nav-drop-btn { padding: 14px 4px; border-bottom: 1px solid var(--c-graphite-100); justify-content: space-between; cursor: default; }
  .has-dropdown::after { display: none; }
  .nav-dropdown {
    position: static; opacity: 1; pointer-events: auto; transform: none;
    border: 0; border-radius: 0; box-shadow: none; padding: 0 0 0 16px; min-width: 0;
  }
  .site-nav .nav-dropdown a { border-radius: 0; border-bottom: 1px solid var(--c-graphite-100); padding: 12px 4px; }
  .site-nav .nav-dropdown a:last-child { border-bottom: 0; }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-weight: 600; font-size: 14.5px; letter-spacing: .005em;
  padding: 15px 28px; border-radius: 999px;
  cursor: pointer; border: 1.5px solid transparent;
  transition: transform .18s var(--ease), background .2s var(--ease), color .2s var(--ease), box-shadow .2s var(--ease), border-color .2s var(--ease);
}
.btn .icn { width: 18px; height: 18px; }
.btn-primary {
  background: var(--c-orange); color: #fff;
  box-shadow: 0 8px 22px -6px rgba(255,69,0,.5);
}
.btn-primary:hover { background: var(--c-orange-700); color: #fff; transform: translateY(-2px); box-shadow: 0 14px 28px -8px rgba(255,69,0,.55); }
.btn-ghost {
  background: transparent; color: var(--c-graphite-900);
  border-color: var(--c-graphite-300);
}
.btn-ghost:hover { background: var(--c-graphite-900); color: #fff; border-color: var(--c-graphite-900); transform: translateY(-2px); }
.btn-blue {
  background: var(--c-blue); color: #fff;
  box-shadow: var(--shadow-blue);
}
.btn-blue:hover { background: var(--c-blue-700); color: #fff; transform: translateY(-2px); }
.btn-light {
  background: rgba(255,255,255,.95); color: var(--c-graphite-900);
}
.btn-light:hover { background: #fff; color: var(--c-orange); transform: translateY(-2px); }

/* ---------- HERO — mesh gradient + floating chips ---------- */
.hero {
  position: relative; overflow: hidden;
  padding: clamp(80px, 11vw, 150px) 0 clamp(80px, 11vw, 140px);
  background: var(--c-white);
}
.hero::before, .hero::after {
  content: ''; position: absolute; z-index: 0; pointer-events: none;
  filter: blur(70px); opacity: .55;
}
.hero::before {
  top: -120px; left: -80px; width: 520px; height: 520px;
  background: radial-gradient(circle, var(--c-blue) 0%, transparent 65%);
}
.hero::after {
  bottom: -160px; right: -120px; width: 520px; height: 520px;
  background: radial-gradient(circle, var(--c-orange) 0%, transparent 60%);
  opacity: .35;
}
.hero-inner { position: relative; z-index: 1; max-width: 920px; }
.hero h1 { margin-bottom: 24px; }
.hero p.lead { font-size: clamp(1.1rem, 1.6vw, 1.32rem); color: var(--c-graphite-500); max-width: 720px; margin-bottom: 40px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.hero-actions .micro {
  font-size: .82rem; color: var(--c-graphite-500); padding-left: 6px;
}
.hero-chips {
  display: flex; flex-wrap: wrap; gap: 10px; margin-top: 56px;
  position: relative; z-index: 1;
}
.chip {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 9px 16px;
  border-radius: 999px;
  background: rgba(255,255,255,.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--c-graphite-200);
  font-size: 13px; font-weight: 500; color: var(--c-graphite-700);
}
.chip-dot {
  width: 8px; height: 8px; border-radius: 50%; background: var(--c-blue);
  box-shadow: 0 0 0 4px rgba(30,34,255,.15);
}
.chip:nth-child(2) .chip-dot { background: var(--c-orange); box-shadow: 0 0 0 4px rgba(255,69,0,.15); }
.chip:nth-child(3) .chip-dot { background: #22c55e; box-shadow: 0 0 0 4px rgba(34,197,94,.18); }
a.chip { text-decoration: none; transition: border-color .18s var(--ease), transform .18s var(--ease), box-shadow .18s var(--ease); }
a.chip:hover { border-color: var(--c-blue); color: var(--c-graphite-900); transform: translateY(-1px); box-shadow: var(--shadow-xs); }

/* ---------- Problem ---------- */
.problem { background: var(--c-graphite-50); }
.problem .container { display: grid; grid-template-columns: 1fr 1.1fr; gap: 70px; align-items: center; }
@media (max-width: 900px) { .problem .container { grid-template-columns: 1fr; gap: 30px; } }

/* ---------- Bento Benefits ---------- */
.benefits { background: #fff; }
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
@media (max-width: 900px) { .benefits-grid { grid-template-columns: 1fr; } }

.benefit-card {
  position: relative;
  padding: 36px 30px 32px;
  background: #fff;
  border: 1px solid var(--c-graphite-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s var(--ease);
}
.benefit-card::after {
  content: ''; position: absolute; inset: -1px;
  border-radius: inherit;
  padding: 1.5px;
  background: linear-gradient(135deg, var(--c-blue), transparent 55%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  opacity: 0; transition: opacity .25s var(--ease);
  pointer-events: none;
}
.benefit-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
.benefit-card:hover::after { opacity: 1; }
.benefit-num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 56px; height: 56px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--c-blue), var(--c-blue-700));
  color: #fff; font-weight: 900; font-size: 20px;
  margin-bottom: 18px;
  box-shadow: var(--shadow-blue);
}

/* ---------- Services (dark band) ---------- */
.services {
  background:
    radial-gradient(60% 80% at 80% 0%, rgba(30,34,255,.16), transparent 60%),
    radial-gradient(40% 60% at 0% 100%, rgba(255,69,0,.10), transparent 60%),
    var(--c-graphite-900);
  color: rgba(255,255,255,.85);
}
.services h2 { color: #fff; }
.services .eyebrow { background: rgba(255,255,255,.08); color: rgba(255,255,255,.85); }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
@media (max-width: 900px) { .services-grid { grid-template-columns: 1fr; } }

.service-card {
  position: relative;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  display: flex; flex-direction: column;
  transition: background .25s var(--ease), border-color .25s var(--ease), transform .25s var(--ease);
}
.service-card:hover { background: rgba(30,34,255,.14); border-color: var(--c-blue-300); transform: translateY(-4px); }
.service-card h3 { color: #fff; margin-bottom: 12px; }
.service-card p  { color: rgba(255,255,255,.7); margin-bottom: 24px; }
.service-card .more {
  margin-top: auto; color: var(--c-orange); font-weight: 600; font-size: 14px;
  display: inline-flex; align-items: center; gap: 8px;
  transition: gap .18s var(--ease);
}
.service-card .more::after { content: '→'; font-size: 18px; line-height: 1; }
.service-card:hover .more { gap: 12px; }

.service-tag {
  display: inline-block;
  font-size: .68rem; font-weight: 700; letter-spacing: .15em; text-transform: uppercase;
  color: rgba(255,255,255,.55);
  padding: 5px 10px; border-radius: 6px;
  background: rgba(255,255,255,.04);
  margin-bottom: 18px; align-self: flex-start;
}

/* ---------- Pillars ---------- */
.pillars-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
@media (max-width: 900px) { .pillars-grid { grid-template-columns: 1fr; } }
.pillar {
  padding: 36px 30px;
  background: #fff;
  border: 1px solid var(--c-graphite-200);
  border-radius: var(--radius-lg);
  position: relative; overflow: hidden;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.pillar::before {
  content: ''; position: absolute; left: 30px; top: 30px;
  width: 38px; height: 4px; border-radius: 999px;
  background: var(--c-blue);
}
.pillar:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.pillar h3 { color: var(--c-graphite-900); margin: 22px 0 10px; }

/* ---------- Numbers band ---------- */
.numbers {
  background:
    radial-gradient(50% 80% at 100% 0%, rgba(255,255,255,.10), transparent 60%),
    linear-gradient(135deg, var(--c-blue) 0%, var(--c-blue-700) 100%);
  color: #fff;
}
.numbers h2 { color: #fff; }
.numbers-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-top: 44px; }
@media (max-width: 900px) { .numbers-grid { grid-template-columns: repeat(2, 1fr); } }
.number-card {
  position: relative;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: var(--radius);
  padding: 26px 22px;
  font-size: 15px; line-height: 1.45;
  font-weight: 500;
  transition: background .2s var(--ease), border-color .2s var(--ease);
}
.number-card:hover { background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.35); }

/* ---------- Glass section ---------- */
.glass-section {
  position: relative; overflow: hidden;
  background:
    radial-gradient(50% 60% at 0% 50%, rgba(30,34,255,.10), transparent 55%),
    radial-gradient(40% 60% at 100% 50%, rgba(74,63,66,.06), transparent 55%),
    var(--c-graphite-50);
}
.glass-card {
  background: rgba(255,255,255,.65);
  backdrop-filter: blur(22px) saturate(180%);
  -webkit-backdrop-filter: blur(22px) saturate(180%);
  border: 1px solid rgba(255,255,255,.7);
  border-radius: var(--radius-lg);
  padding: 50px 42px;
  box-shadow: 0 30px 60px -25px rgba(30,34,255,.22), inset 0 1px 0 rgba(255,255,255,.6);
}

/* ---------- CTA banner ---------- */
.cta-banner {
  position: relative; overflow: hidden;
  background:
    radial-gradient(50% 80% at 100% 0%, rgba(255,69,0,.18), transparent 65%),
    linear-gradient(135deg, var(--c-graphite-900) 0%, var(--c-graphite-700) 100%);
  color: #fff;
  text-align: center;
}
.cta-banner h2 { color: #fff; }
.cta-banner p { color: rgba(255,255,255,.78); max-width: 640px; margin: 0 auto 32px; font-size: 1.05rem; }

/* ---------- Legal pages ---------- */
.legal-page { padding: clamp(60px, 9vw, 100px) 0; }
.legal-page .container { max-width: 820px; }
.legal-page h1 { margin-bottom: 30px; }
.legal-page h3 {
  margin-top: 32px; margin-bottom: 10px; color: var(--c-blue);
  font-size: 1.05rem; text-transform: none; letter-spacing: 0; font-weight: 700;
}
.legal-page p { color: var(--c-graphite-700); }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--c-graphite-900); color: rgba(255,255,255,.65);
  padding: 80px 0 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.4fr;
  gap: 50px; padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; } }
@media (max-width: 600px) { .footer-grid { grid-template-columns: 1fr; } }
.site-footer h4 { color: rgba(255,255,255,.95); font-size: .72rem; margin-bottom: 16px; }
.site-footer ul li { padding: 5px 0; font-size: 14px; }
.site-footer a { color: rgba(255,255,255,.65); }
.site-footer a:hover { color: var(--c-orange); }
.footer-brand img {
  display: block;
  height: 60px;
  width: auto;
  max-width: 300px;
  max-height: 68px;
  object-fit: contain;
}
.footer-brand p { margin-top: 16px; font-size: 14px; max-width: 320px; color: rgba(255,255,255,.55); }
.contact-list li { padding: 4px 0; font-size: 13.5px; }
.social { display: flex; gap: 8px; margin-top: 20px; }
.social a {
  display: inline-grid; place-items: center;
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255,255,255,.06); color: #fff;
  font-size: 11px; font-weight: 700; text-transform: uppercase;
  transition: background .2s var(--ease), transform .2s var(--ease);
}
.social a:hover { background: var(--c-orange); transform: translateY(-2px); }
.footer-base {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 28px; gap: 12px; flex-wrap: wrap;
  font-size: 12px; color: rgba(255,255,255,.4);
}

/* ---------- Floating WhatsApp ---------- */
.whats-float {
  position: fixed; right: 24px; bottom: 24px; z-index: 60;
  width: 60px; height: 60px; border-radius: 50%;
  display: grid; place-items: center;
  background: #25D366; color: #fff;
  box-shadow: 0 12px 28px -5px rgba(37,211,102,.55);
  transition: transform .18s var(--ease), box-shadow .18s var(--ease);
}
.whats-float:hover { color: #fff; transform: scale(1.08); box-shadow: 0 18px 36px -6px rgba(37,211,102,.7); }

/* ---------- Animations ---------- */
@media (prefers-reduced-motion: no-preference) {
  .reveal { opacity: 0; transform: translateY(20px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
  .reveal.is-visible { opacity: 1; transform: translateY(0); }
}

/* ---------- HERO com foto (espaços hero_* do painel) ---------- */
.hero--photo { background: var(--c-graphite-900); }
.hero--photo::before { display: none; }
.hero--photo .hero-bg {
  position: absolute; inset: 0; z-index: 0;
  width: 100%; height: 100%; max-width: none; object-fit: cover;
}
.hero--photo::after {
  top: 0; right: 0; bottom: 0; left: 0; width: auto; height: auto;
  filter: none; opacity: 1; z-index: 0;
  background: linear-gradient(90deg, rgba(42,33,35,.88) 0%, rgba(42,33,35,.66) 50%, rgba(42,33,35,.3) 100%);
}
.hero--photo h1 { color: #fff; }
.hero--photo p.lead { color: rgba(255,255,255,.88); }
.hero--photo .eyebrow { background: rgba(255,255,255,.14); color: #fff; }
.hero--photo .hero-actions .micro { color: rgba(255,255,255,.75); }
.hero--photo .btn-ghost { color: #fff; border-color: rgba(255,255,255,.55); }
.hero--photo .btn-ghost:hover { background: #fff; color: var(--c-graphite-900); border-color: #fff; }
.hero--photo .chip { background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.3); color: #fff; }
.hero--photo a.chip:hover { color: #fff; border-color: #fff; }
@media (max-width: 900px) {
  .hero--photo::after { background: rgba(42,33,35,.74); }
}

/* ---------- Home · Por que Paraguai? (espaço home_paraguay) ---------- */
.benefits-media {
  margin: -16px 0 56px; border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-md);
}
.benefits-media img { width: 100%; height: auto; aspect-ratio: 21 / 9; object-fit: cover; }
@media (max-width: 900px) { .benefits-media { margin-bottom: 36px; } .benefits-media img { aspect-ratio: 16 / 9; } }
/* ---------- CTA com imagem de fundo (slots cta_* no painel) ---------- */
.cta-banner--photo { background: var(--c-graphite-900); }
.cta-banner--photo .cta-bg {
  position: absolute; inset: 0; z-index: 0;
  width: 100%; height: 100%; max-width: none; object-fit: cover;
}
.cta-banner--photo::before {
  content: ''; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(135deg, rgba(20,18,19,.86) 0%, rgba(20,18,19,.62) 100%);
}
.cta-banner--photo .container { position: relative; z-index: 2; }
.social a svg { width: 17px; height: 17px; display: block; }
.site-footer .social a:hover { color: #fff; }
