:root {
  --navy: #061b50;
  --yellow: #ffe000;
  --sky: #36afea;
  --line: #dce1ea;
  --page: #eef1f5;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--page); }
body {
  margin: 0;
  color: var(--navy);
  background: var(--page);
  font-family: Arial, Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; }
button { font-family: inherit; }

.pageShell {
  width: min(100%, 980px);
  min-height: 100vh;
  margin: 0 auto;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 0 42px rgba(6, 27, 80, 0.08);
}

.siteHeader {
  position: relative;
  z-index: 10;
  height: 118px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 32px 0 28px;
  background: #fff;
}

.brand { display: inline-flex; align-items: center; gap: 14px; }
.brandMark { width: 72px; height: 72px; flex: 0 0 auto; display: inline-grid; place-items: center; }
.brandMark svg { width: 100%; height: 100%; display: block; }
.brandMarkSmall { width: 48px; height: 48px; }
.brandCopy { display: flex; flex-direction: column; line-height: 1; }
.brandCopy strong { font-size: 28px; letter-spacing: -1px; }
.brandCopy small { margin-top: 7px; color: #66708a; font-size: 10px; font-weight: 800; letter-spacing: 2.1px; }

.menu { position: relative; }
.menu summary {
  width: 42px;
  height: 42px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  cursor: pointer;
  list-style: none;
  border-radius: 12px;
  transition: background 160ms ease;
}
.menu summary::-webkit-details-marker { display: none; }
.menu summary:hover, .menu summary:focus-visible { background: #f2f5fa; outline: none; }
.menu summary span { width: 30px; height: 3px; border-radius: 10px; background: var(--navy); transition: transform 160ms ease, opacity 160ms ease; }
.menu[open] summary span:first-child { transform: translateY(9px) rotate(45deg); }
.menu[open] summary span:nth-child(2) { opacity: 0; }
.menu[open] summary span:last-child { transform: translateY(-9px) rotate(-45deg); }
.menu nav {
  position: absolute;
  top: calc(100% + 14px);
  right: 0;
  min-width: 180px;
  padding: 8px;
  border: 1px solid #e3e7ee;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 18px 45px rgba(6, 27, 80, 0.16);
}
.menu nav a { display: block; padding: 12px 14px; border-radius: 9px; font-size: 14px; font-weight: 700; }
.menu nav a:hover, .menu nav a:focus-visible { background: #f5f7fb; outline: none; }

.hero {
  position: relative;
  min-height: 342px;
  display: grid;
  grid-template-columns: 53% 47%;
  align-items: center;
  overflow: hidden;
  padding: 32px 46px 28px 64px;
  isolation: isolate;
  background: linear-gradient(130deg, #ffe900 0%, var(--yellow) 42%, #ffda00 100%);
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  opacity: 0.38;
  background-image: linear-gradient(112deg, transparent 0 39%, rgba(255,255,255,.28) 39% 52%, transparent 52%);
}
.heroGlow { position: absolute; width: 360px; height: 360px; left: -120px; bottom: -170px; z-index: -1; border-radius: 50%; background: rgba(255, 255, 255, 0.17); }
.heroCopy { position: relative; z-index: 2; align-self: center; }
.eyebrow { display: block; margin-bottom: 14px; font-size: 11px; font-weight: 900; letter-spacing: 2.2px; opacity: 0.7; }
.hero h1 { margin: 0; color: var(--navy); font-size: clamp(46px, 6vw, 68px); line-height: 0.98; letter-spacing: -2.8px; font-weight: 800; }
.titleRule { width: 102px; height: 6px; display: block; margin-top: 24px; border-radius: 99px; background: var(--navy); }
.heroVisual { position: relative; min-height: 260px; display: grid; place-items: center; }
.heroVisual img {
  position: absolute;
  inset: 50% auto auto 50%;
  width: 123%;
  max-width: none;
  height: auto;
  opacity: 0;
  transform: translate(-50%, -47%) scale(0.98);
  filter: drop-shadow(0 18px 14px rgba(6, 27, 80, 0.18));
  transition: opacity 320ms ease, transform 420ms ease;
}
.heroVisualLoaded img { opacity: 1; transform: translate(-50%, -47%) scale(1); }
.visualPlaceholder {
  width: 230px;
  height: 170px;
  display: grid;
  place-items: center;
  border: 3px solid rgba(6, 27, 80, 0.18);
  border-radius: 20px 20px 9px 9px;
  background: rgba(255, 255, 255, 0.38);
  box-shadow: inset 0 -18px 0 rgba(6, 27, 80, 0.13), 0 20px 30px rgba(6, 27, 80, 0.12);
  transition: opacity 200ms ease;
}
.heroVisualLoaded .visualPlaceholder { opacity: 0; }

.benefits { padding: 32px 64px 27px; background: #fff; }
.sectionHeading { text-align: center; }
.sectionHeading > p { margin: 0 0 7px; color: #7c8497; font-size: 10px; font-weight: 900; letter-spacing: 2.2px; }
.sectionHeading h2 { margin: 0; color: var(--navy); font-size: clamp(22px, 3.3vw, 30px); line-height: 1.18; letter-spacing: -0.8px; }
.sectionHeading span { width: 84px; height: 4px; display: block; margin: 15px auto 17px; border-radius: 99px; background: var(--yellow); }
.benefitList { display: grid; gap: 8px; }
.benefitCard {
  min-height: 82px;
  display: grid;
  grid-template-columns: 72px 1fr;
  align-items: center;
  gap: 17px;
  padding: 11px 24px 11px 20px;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: #fff;
  box-shadow: 0 1px 2px rgba(6, 27, 80, 0.035);
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}
.benefitCard:hover { transform: translateY(-2px); border-color: #c5d0e0; box-shadow: 0 8px 20px rgba(6, 27, 80, 0.07); }
.iconCircle { width: 58px; height: 58px; display: grid; place-items: center; border-radius: 50%; color: var(--navy); background: var(--yellow); }
.iconCircle svg { width: 35px; height: 35px; }
.benefitCard h3 { margin: 0 0 4px; color: var(--navy); font-size: 19px; line-height: 1.1; letter-spacing: -0.3px; }
.benefitCard p { margin: 0; color: #505767; font-size: 15px; line-height: 1.3; }

.security {
  margin: 0 64px 27px;
  padding: 24px 20px 14px;
  overflow: hidden;
  border: 2px solid #cedff1;
  border-radius: 16px;
  background: linear-gradient(135deg, #f2f9ff, #e9f4ff);
  box-shadow: 0 8px 24px rgba(54, 129, 196, 0.07);
}
.securityTop { display: grid; grid-template-columns: 210px 1fr; align-items: center; gap: 24px; }
.securityBrand { display: flex; align-items: center; justify-content: center; gap: 7px; }
.securityBrand .brandMark { width: 86px; height: 86px; }
.securityBrand strong { font-size: 25px; line-height: 0.83; letter-spacing: -1.5px; }
.securityBrand strong span { color: var(--sky); }
.securityCopy h2 { margin: 0; font-size: 18px; line-height: 1.35; letter-spacing: -0.25px; }
.securityCopy p { margin: 4px 0 12px; color: #35425c; font-size: 14px; line-height: 1.38; }
.safeBadge {
  width: 100%;
  min-height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 10px 16px;
  border: 1px solid #d7e1ee;
  border-radius: 12px;
  color: var(--navy);
  background: #fff;
  box-shadow: 0 2px 7px rgba(6, 27, 80, 0.06);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.2px;
}
.safeBadge svg { width: 24px; height: 24px; flex: 0 0 auto; fill: #2775c7; }
.notice { display: flex; align-items: center; justify-content: center; gap: 12px; margin-top: 16px; padding-top: 13px; border-top: 1px solid #d8e7f5; }
.notice > span { width: 26px; height: 26px; display: grid; place-items: center; flex: 0 0 auto; border-radius: 50%; color: #fff; background: #2c74bd; font-weight: 800; font-family: Georgia, serif; }
.notice p { margin: 0; color: #263652; font-size: 13px; }

footer { padding: 4px 24px 26px; color: #8a91a1; text-align: center; font-size: 11px; }

/* ---- PIX no rodapé (chave CNPJ, clique para copiar) ---- */
.pixBox {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  margin: 0 auto 14px;
}
.pixKey {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 11px 16px;
  border: 1px solid #d7e1ee;
  border-radius: 12px;
  background: #fff;
  color: var(--navy);
  cursor: pointer;
  box-shadow: 0 2px 7px rgba(6, 27, 80, 0.06);
  transition: border-color 150ms ease, box-shadow 150ms ease, transform 120ms ease;
}
.pixKey:hover, .pixKey:focus-visible { border-color: #b9c8dd; box-shadow: 0 6px 16px rgba(6, 27, 80, 0.1); outline: none; }
.pixKey:active { transform: translateY(1px); }
.pixKey .pixText { display: flex; flex-direction: column; align-items: flex-start; line-height: 1.1; }
.pixKey .pixLabel { font-size: 10px; font-weight: 900; letter-spacing: 1.6px; color: #7c8497; }
.pixKey .pixValue { font-size: 15px; font-weight: 800; letter-spacing: 0.2px; color: var(--navy); }
.pixKey .pixIcon { width: 20px; height: 20px; flex: 0 0 auto; color: #2775c7; }
.pixKey .pixIcon svg { width: 100%; height: 100%; display: block; }
.pixKey.copied { border-color: #2f9e57; }
.pixKey.copied .pixIcon { color: #2f9e57; }
.pixFeedback { min-height: 14px; font-size: 11px; font-weight: 800; letter-spacing: 0.4px; color: #2f9e57; }

@media (max-width: 720px) {
  .siteHeader { height: 88px; padding: 0 18px; }
  .brand { gap: 10px; }
  .brandMark { width: 54px; height: 54px; }
  .brandCopy strong { font-size: 20px; }
  .brandCopy small { margin-top: 5px; font-size: 8px; letter-spacing: 1.5px; }
  .menu summary span { width: 27px; }
  .hero { min-height: 490px; grid-template-columns: 1fr; grid-template-rows: auto 1fr; padding: 42px 26px 10px; text-align: center; }
  .hero h1 { font-size: clamp(44px, 13vw, 62px); letter-spacing: -2px; }
  .titleRule { margin: 20px auto 0; }
  .heroVisual { min-height: 230px; }
  .heroVisual img { width: min(125%, 480px); }
  .benefits { padding: 28px 16px 22px; }
  .sectionHeading > p { display: none; }
  .sectionHeading h2 { font-size: 22px; }
  .benefitCard { min-height: 88px; grid-template-columns: 56px 1fr; gap: 12px; padding: 11px 13px; }
  .iconCircle { width: 50px; height: 50px; }
  .iconCircle svg { width: 31px; height: 31px; }
  .benefitCard h3 { font-size: 16px; }
  .benefitCard p { font-size: 13px; }
  .security { margin: 0 16px 22px; padding: 20px 15px 13px; }
  .securityTop { grid-template-columns: 1fr; gap: 14px; text-align: center; }
  .securityBrand .brandMark { width: 68px; height: 68px; }
  .securityBrand strong { font-size: 23px; }
  .securityCopy h2 { font-size: 17px; }
  .safeBadge { min-height: 50px; font-size: 12px; }
  .notice { align-items: flex-start; text-align: left; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: 0.01ms !important; }
}
