:root {
  --bg: #07111e;
  --bg-soft: #0e1a2d;
  --surface: rgba(10, 18, 31, 0.78);
  --surface-strong: #f4f7fb;
  --text: #eef4ff;
  --text-soft: rgba(238, 244, 255, 0.78);
  --text-dark: #102036;
  --muted: rgba(16, 32, 54, 0.7);
  --line: rgba(255, 255, 255, 0.12);
  --line-dark: rgba(16, 32, 54, 0.12);
  --accent: #7ef0d1;
  --accent-strong: #5fe2c0;
  --accent-ink: #05131f;
  --shadow: 0 22px 60px rgba(0, 0, 0, 0.28);
  --radius: 24px;
  --radius-sm: 16px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", system-ui, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(126, 240, 209, 0.14), transparent 28%),
    radial-gradient(circle at right center, rgba(104, 159, 255, 0.16), transparent 30%),
    linear-gradient(180deg, #050b15 0%, var(--bg) 40%, #081321 100%);
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 1rem;
  z-index: 9999;
  padding: 0.85rem 1rem;
  border-radius: 999px;
  background: var(--accent);
  color: var(--accent-ink);
}

.skip-link:focus {
  left: 1rem;
}

.site-shell {
  width: min(var(--max), calc(100% - 2rem));
  margin: 0 auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(16px);
  background: rgba(5, 11, 21, 0.72);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand img {
  width: auto;
  height: 52px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  font-weight: 600;
  color: var(--text-soft);
}

.site-nav a {
  position: relative;
  padding: 0.35rem 0;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  align-items: center;
  justify-content: center;
  gap: 5px;
  flex-direction: column;
  cursor: pointer;
}

.nav-toggle span:not(.sr-only) {
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: calc(100svh - 84px);
  display: flex;
  align-items: center;
  padding: 4rem 0 4.5rem;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, rgba(5, 11, 21, 0.96) 8%, rgba(5, 11, 21, 0.68) 48%, rgba(5, 11, 21, 0.9) 100%),
    url("images/mulher_uza3-hero.jpg") 78% 18% / cover no-repeat;
  transform: scale(1.03);
}

.hero-backdrop {
  position: absolute;
  inset: auto -10% 5% auto;
  width: 28rem;
  height: 28rem;
  background: radial-gradient(circle, rgba(126, 240, 209, 0.24), transparent 68%);
  filter: blur(10px);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  gap: 2rem;
  align-items: end;
}

.hero-copy h1,
.section-copy h2,
.section-heading h2,
.cta-inner h2,
.policy-hero h1,
.article h2 {
  margin: 0;
  font-family: "Space Grotesk", system-ui, sans-serif;
  line-height: 0.98;
  letter-spacing: -0.04em;
}

.hero-copy h1 {
  max-width: 11.5ch;
  font-size: clamp(3.4rem, 7vw, 6.9rem);
}

.eyebrow {
  margin: 0 0 1rem;
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
}

.eyebrow-light {
  color: #c9fff0;
}

.lede,
.section-copy p,
.section-heading p,
.cta-inner p,
.policy-hero p,
.article p,
.article li {
  color: var(--text-soft);
  font-size: 1.05rem;
  line-height: 1.75;
}

.hero-copy .lede {
  max-width: 42rem;
  margin: 1.25rem 0 0;
  font-size: clamp(1.02rem, 1.35vw, 1.2rem);
}

.hero-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 2rem;
}

.button,
.inline-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0.9rem 1.25rem;
  border-radius: 999px;
  font-weight: 800;
  letter-spacing: -0.01em;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.button:hover,
.inline-link:hover,
.button:focus-visible,
.inline-link:focus-visible {
  transform: translateY(-1px);
}

.button-primary {
  background: var(--accent);
  color: var(--accent-ink);
}

.button-secondary {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
}

.hero-panel {
  position: relative;
  padding: 1.25rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(8, 16, 28, 0.64);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.panel-label {
  margin: 0 0 1rem;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--accent);
}

.feature-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.8rem;
}

.feature-list li {
  padding: 1rem 1rem 1rem 1.1rem;
  border-left: 2px solid rgba(126, 240, 209, 0.55);
  background: rgba(255, 255, 255, 0.03);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-weight: 600;
}

.panel-note {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
  color: var(--text-soft);
  line-height: 1.7;
}

.section {
  padding: 5rem 0;
}

.section-compact {
  padding: 4.25rem 0;
}

.split-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 2rem;
  align-items: center;
}

.split-layout-reverse {
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
}

.section-image {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
  box-shadow: var(--shadow);
}

.section-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(5, 11, 21, 0.35) 100%);
  pointer-events: none;
}

.section-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.section-image-alt {
  min-height: 360px;
}

.section-copy h2,
.section-heading h2,
.cta-inner h2,
.policy-hero h1 {
  font-size: clamp(2rem, 4vw, 4rem);
  max-width: 14ch;
}

.section-copy p {
  max-width: 58ch;
}

.copy-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.copy-grid div,
.capability {
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}

.copy-grid h3,
.capability h3,
.policy-page .article h3 {
  margin: 0 0 0.4rem;
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--text);
}

.copy-grid p,
.capability p {
  margin: 0;
  color: var(--text-soft);
}

.section-dark {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.01), rgba(255, 255, 255, 0.03)),
    var(--bg-soft);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.section-heading {
  max-width: 42rem;
  margin-bottom: 2rem;
}

.section-heading p {
  margin-top: 1rem;
}

.capabilities {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.capability {
  padding: 1.35rem 0 0;
}

.capability span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.35rem;
  height: 2.35rem;
  border-radius: 999px;
  margin-bottom: 1rem;
  background: rgba(126, 240, 209, 0.12);
  color: var(--accent);
  font-weight: 800;
  letter-spacing: 0.02em;
}

.inline-link {
  margin-top: 1.25rem;
  padding-left: 0;
  padding-right: 0;
  min-height: auto;
  color: var(--accent);
}

.cta-band {
  padding: 4.5rem 0;
}

.cta-inner {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
  padding: 2rem;
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(126, 240, 209, 0.14), rgba(103, 144, 255, 0.14)),
    rgba(255, 255, 255, 0.03);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.cta-inner p {
  margin-top: 1rem;
  max-width: 44rem;
}

.site-footer {
  padding: 1.5rem 0 2.5rem;
  color: var(--text-soft);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border-top: 1px solid var(--line);
  padding-top: 1.2rem;
}

.footer-inner p {
  margin: 0;
  font-weight: 700;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--text);
}

.floating-whatsapp {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  width: 60px;
  height: 60px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: #25d366;
  box-shadow: 0 20px 35px rgba(0, 0, 0, 0.3);
  z-index: 60;
}

.floating-whatsapp img {
  width: 30px;
  height: 30px;
}

.reveal {
  animation: rise 700ms ease both;
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.policy-page {
  background:
    radial-gradient(circle at top left, rgba(126, 240, 209, 0.12), transparent 20%),
    linear-gradient(180deg, #f6f8fb 0%, #edf2f8 100%);
  color: var(--text-dark);
}

.policy-page .site-header {
  background: rgba(246, 248, 251, 0.84);
  border-bottom-color: var(--line-dark);
}

.policy-page .site-nav,
.policy-page .site-footer {
  color: var(--muted);
}

.policy-page .site-footer {
  border-top: 1px solid var(--line-dark);
}

.policy-page .footer-inner {
  border-top-color: var(--line-dark);
}

.policy-page .lede,
.policy-page .article p,
.policy-page .article li {
  color: var(--muted);
}

.policy-page .article h2,
.policy-page .article h3 {
  color: var(--text-dark);
}

.policy-page .button-secondary {
  border-color: var(--line-dark);
  color: var(--text-dark);
  background: rgba(255, 255, 255, 0.65);
}

.policy-page .nav-toggle {
  border-color: var(--line-dark);
  background: rgba(255, 255, 255, 0.7);
  color: var(--text-dark);
}

.policy-page .brand img {
  height: 64px;
  filter: brightness(0) saturate(100%) contrast(110%);
  opacity: 0.92;
}

.policy-hero {
  padding: 4.5rem 0 2rem;
}

.policy-subtitle,
.policy-brand,
.policy-date {
  margin: 0;
  color: var(--muted);
  font-weight: 700;
}

.policy-subtitle {
  margin-top: 0.75rem;
  font-size: 1.2rem;
}

.policy-brand {
  margin-top: 0.45rem;
}

.policy-date {
  margin-top: 0.25rem;
  font-size: 0.98rem;
}

.policy-card {
  padding: 2rem;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  box-shadow: 0 18px 45px rgba(16, 32, 54, 0.08);
}

.policy-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.meta-pill {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  border: 1px solid var(--line-dark);
  color: var(--muted);
  background: rgba(255, 255, 255, 0.65);
  font-size: 0.92rem;
  font-weight: 700;
}

.article {
  padding: 0 0 5rem;
}

.article-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1.25rem;
}

.article-section {
  padding: 1.35rem 0 0;
  border-top: 1px solid var(--line-dark);
}

.article-section:first-child {
  border-top: 0;
  padding-top: 0;
}

.article ol,
.article ul {
  margin: 0.85rem 0 0;
  padding-left: 1.2rem;
  color: var(--text-dark);
}

.article li {
  color: var(--muted);
  margin: 0.35rem 0;
}

.article a {
  color: #0b67a3;
  font-weight: 700;
}

.contact-box {
  margin-top: 1.5rem;
  padding: 1.2rem 1.35rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line-dark);
  background: rgba(255, 255, 255, 0.7);
}

@media (max-width: 960px) {
  .hero-inner,
  .split-layout,
  .cta-inner {
    grid-template-columns: 1fr;
    display: grid;
  }

  .cta-inner {
    align-items: start;
  }

  .capabilities,
  .copy-grid {
    grid-template-columns: 1fr 1fr;
  }

  .hero {
    min-height: auto;
  }
}

@media (max-width: 760px) {
  .site-shell {
    width: min(var(--max), calc(100% - 1.1rem));
  }

  .header-inner {
    min-height: 76px;
  }

  .brand img {
    height: 44px;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: absolute;
    top: 76px;
    left: 0.55rem;
    right: 0.55rem;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 0.9rem;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: rgba(5, 11, 21, 0.95);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .policy-page .site-nav {
    background: rgba(255, 255, 255, 0.96);
    border-color: var(--line-dark);
  }

  .hero {
    padding: 2.6rem 0 3rem;
  }

  .hero-inner,
  .split-layout,
  .capabilities,
  .copy-grid,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .capabilities {
    display: grid;
  }

  .hero-copy h1 {
    max-width: 100%;
    font-size: clamp(2.6rem, 13vw, 4.25rem);
  }

  .section-copy h2,
  .section-heading h2,
  .cta-inner h2,
  .policy-hero h1 {
    max-width: 100%;
    font-size: clamp(1.8rem, 9vw, 3rem);
  }

  .cta-inner {
    padding: 1.35rem;
  }

  .policy-hero {
    padding-top: 2.2rem;
  }

  .policy-card {
    padding: 1.35rem;
  }
}
