@import url("https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,600;9..144,700&family=Manrope:wght@400;500;600;700;800&display=swap");

:root {
  --bg: #efe2d3;
  --paper: #f7efe5;
  --paper-strong: #fff8f1;
  --ink: #171515;
  --muted: #64574f;
  --charcoal: #111313;
  --copper: #c97d3b;
  --copper-strong: #b96720;
  --line: rgba(23, 21, 21, 0.12);
  --line-light: rgba(255, 255, 255, 0.12);
  --shadow: 0 20px 60px rgba(17, 19, 19, 0.18);
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: "Manrope", sans-serif;
  background:
    radial-gradient(circle at top, rgba(201, 125, 59, 0.08), transparent 28%),
    linear-gradient(180deg, #f6ecdf 0%, #efe2d3 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.25), transparent 60%);
  opacity: 0.15;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

.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;
}

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

.masthead {
  position: absolute;
  inset: 28px 0 auto 0;
  z-index: 40;
}

.masthead-shell,
.footer-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.masthead-shell {
  min-height: 76px;
  padding: 0;
}

.brand img {
  width: 172px;
  height: auto;
  transform: translateX(-16px);
  filter: drop-shadow(0 10px 18px rgba(0, 0, 0, 0.18));
}

.nav-toggle {
  display: none;
  border: 1px solid rgba(255, 248, 241, 0.18);
  border-radius: 999px;
  background: rgba(255, 248, 241, 0.06);
  color: var(--paper-strong);
  padding: 0.72rem 1rem;
  font-weight: 700;
}

.official-nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.15rem;
  padding: 0.92rem 1.5rem;
  border: 1px solid rgba(255, 248, 241, 0.14);
  border-radius: 999px;
  background: rgba(17, 19, 19, 0.22);
  backdrop-filter: blur(14px) saturate(1.08);
  -webkit-backdrop-filter: blur(14px) saturate(1.08);
  box-shadow: 0 16px 34px rgba(8, 10, 10, 0.16);
}

.masthead-link {
  color: rgba(255, 248, 241, 0.88);
  font-size: 0.95rem;
  font-weight: 700;
  padding: 0.7rem 0;
  transition: color 180ms ease;
}

.masthead-link:hover,
.masthead-link:focus-visible {
  color: #ffffff;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 100svh;
  padding: 7.6rem 0 4.5rem;
  background: var(--charcoal);
}

.hero-backdrop,
.hero-noise {
  position: absolute;
  inset: 0;
}

.hero-backdrop {
  background:
    linear-gradient(92deg, rgba(10, 10, 10, 0.97) 0%, rgba(10, 10, 10, 0.88) 38%, rgba(10, 10, 10, 0.44) 58%, rgba(10, 10, 10, 0.2) 100%),
    radial-gradient(circle at 78% 18%, rgba(201, 125, 59, 0.24), transparent 24%),
    url("assets/mulher_uza3-hero.jpg") 96% 14% / cover no-repeat;
  transform: scale(1.08);
}

.hero-noise {
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 248, 241, 0.08), transparent 16%),
    radial-gradient(circle at 78% 60%, rgba(201, 125, 59, 0.12), transparent 22%);
  mix-blend-mode: screen;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 360px);
  gap: 5.25rem;
  align-items: start;
}

.hero-copy {
  color: var(--paper-strong);
  padding: 2rem 0;
  max-width: 38rem;
}

.eyebrow,
.section-kicker,
.route-tag,
.intake-kicker {
  display: inline-flex;
  align-items: center;
  margin-bottom: 1rem;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #d6a067;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Fraunces", serif;
  letter-spacing: -0.04em;
}

h1 {
  max-width: 12ch;
  font-size: clamp(2rem, 3.9vw, 3.8rem);
  line-height: 0.96;
}

h2 {
  max-width: 760px;
  font-size: clamp(1.9rem, 3vw, 3.2rem);
  line-height: 0.98;
}

h3 {
  font-size: 1.55rem;
  line-height: 1.05;
}

.hero-lead,
.feature-copy p,
.final-cta-shell p,
.section-copy p,
.intake p,
.contact-card p,
.footer-shell p {
  line-height: 1.72;
}

.hero-lead {
  max-width: 610px;
  margin: 1.15rem 0 0;
  color: rgba(255, 248, 241, 0.8);
  font-size: clamp(1.02rem, 1.4vw, 1.18rem);
}

.hero-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.45rem;
}

.hero-list span {
  padding: 0.7rem 0.95rem;
  border: 1px solid rgba(255, 248, 241, 0.14);
  border-radius: 999px;
  color: rgba(255, 248, 241, 0.92);
  background: rgba(255, 248, 241, 0.06);
  font-size: 0.92rem;
}

.hero-actions,
.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.hero-actions {
  margin-top: 1.8rem;
}

.hero-note {
  max-width: 42rem;
  margin: 1rem 0 0;
  color: rgba(255, 248, 241, 0.72);
  font-size: 0.92rem;
}

.button,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0.9rem 1.25rem;
  border: 0;
  border-radius: 999px;
  transition:
    transform 180ms ease,
    background-color 180ms ease,
    color 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
  cursor: pointer;
}

.button:hover,
.btn:hover {
  transform: translateY(-2px);
}

.button-primary,
.btn-primary {
  background: var(--copper);
  color: #170d06;
  font-weight: 800;
  box-shadow: 0 16px 34px rgba(201, 125, 59, 0.24);
}

.button-primary:hover,
.btn-primary:hover {
  background: var(--copper-strong);
}

.button-secondary,
.btn-secondary {
  border: 1px solid rgba(255, 248, 241, 0.16);
  background: rgba(255, 248, 241, 0.06);
  color: rgba(255, 248, 241, 0.96);
  font-weight: 800;
}

.button-secondary:hover,
.btn-secondary:hover {
  background: rgba(255, 248, 241, 0.12);
}

.button-block {
  width: 100%;
  margin-top: 1rem;
}

.hero-side .intake {
  transform: translateY(7.8rem);
  width: min(100%, 360px);
}

.hero-side {
  display: flex;
  justify-content: flex-end;
}

@media (min-width: 1280px) {
  .hero .shell {
    width: min(1320px, calc(100% - 4rem));
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(320px, 350px);
    gap: 6.2rem;
  }

  .hero-copy {
    max-width: 35rem;
  }

  .hero-side {
    padding-right: 1rem;
  }

  .hero-side .intake {
    width: min(100%, 350px);
    transform: translateY(7rem);
  }

  .hero-backdrop {
    background:
      linear-gradient(92deg, rgba(10, 10, 10, 0.97) 0%, rgba(10, 10, 10, 0.88) 38%, rgba(10, 10, 10, 0.44) 58%, rgba(10, 10, 10, 0.2) 100%),
      radial-gradient(circle at 78% 18%, rgba(201, 125, 59, 0.24), transparent 24%),
      url("assets/mulher_uza3-hero.jpg") 102% 14% / cover no-repeat;
  }
}

@media (min-width: 1500px) {
  .hero .shell {
    width: min(1440px, calc(100% - 5rem));
  }

  .hero-grid {
    gap: 7rem;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 340px);
  }

  .hero-copy {
    max-width: 36rem;
  }

  .hero-side {
    padding-right: 1.5rem;
  }

  .hero-side .intake {
    width: min(100%, 340px);
    transform: translateY(6.8rem);
  }

  .hero-backdrop {
    background:
      linear-gradient(92deg, rgba(10, 10, 10, 0.97) 0%, rgba(10, 10, 10, 0.88) 38%, rgba(10, 10, 10, 0.44) 58%, rgba(10, 10, 10, 0.2) 100%),
      radial-gradient(circle at 78% 18%, rgba(201, 125, 59, 0.24), transparent 24%),
      url("assets/mulher_uza3-hero.jpg") 104% 14% / cover no-repeat;
  }
}

.intake {
  position: relative;
  padding: 1.35rem;
  border: 1px solid rgba(255, 248, 241, 0.16);
  border-radius: 30px;
  background:
    linear-gradient(180deg, rgba(18, 20, 20, 0.36), rgba(18, 20, 20, 0.2));
  backdrop-filter: blur(18px) saturate(1.08);
  -webkit-backdrop-filter: blur(18px) saturate(1.08);
  box-shadow: var(--shadow);
}

.intake::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(201, 125, 59, 0.04), transparent 48%);
  pointer-events: none;
}

.intake > * {
  position: relative;
}

.intake h2 {
  max-width: none;
  color: var(--paper-strong);
  font-family: "Manrope", sans-serif;
  font-size: clamp(1.35rem, 1.9vw, 1.8rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.08;
}

.intake p,
.form-note {
  margin: 0.75rem 0 0;
  color: rgba(255, 248, 241, 0.78);
  font-size: 0.95rem;
}

.form-note:empty {
  display: none;
}

.intake label,
.wa-gate-form label {
  display: grid;
  gap: 0.45rem;
  margin-top: 1rem;
}

.intake input,
.intake select,
.wa-gate-form input,
.wa-gate-form select {
  width: 100%;
  min-height: 52px;
  padding: 0.85rem 0.95rem;
  border: 1px solid rgba(255, 248, 241, 0.18);
  border-radius: 14px;
  background: rgba(255, 248, 241, 0.06);
  color: var(--paper-strong);
}

.intake input::placeholder,
.wa-gate-form input::placeholder {
  color: rgba(255, 248, 241, 0.48);
}

.intake select,
.wa-gate-form select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  padding-right: 3rem;
  color: rgba(255, 248, 241, 0.88);
  background-image:
    linear-gradient(45deg, transparent 50%, rgba(255, 248, 241, 0.74) 50%),
    linear-gradient(135deg, rgba(255, 248, 241, 0.74) 50%, transparent 50%);
  background-position:
    calc(100% - 1.15rem) calc(50% - 0.12rem),
    calc(100% - 0.85rem) calc(50% - 0.12rem);
  background-size: 0.42rem 0.42rem, 0.42rem 0.42rem;
  background-repeat: no-repeat;
}

.intake select:invalid,
.wa-gate-form select:invalid {
  color: rgba(255, 248, 241, 0.48);
}

.intake option,
.wa-gate-form option {
  color: var(--ink);
}

.proof,
.routes,
.feature-story,
.faq,
.final-cta,
.site-footer {
  padding: 5.2rem 0;
}

.proof {
  background: linear-gradient(180deg, #181919 0%, #222424 100%);
  color: var(--paper-strong);
}

.proof-light {
  background: linear-gradient(180deg, #252727 0%, #171818 100%);
}

.proof-shell,
.routes-shell,
.faq-shell {
  display: grid;
  gap: 2rem;
}

.proof-shell {
  gap: 2.6rem;
}

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

.routes-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.proof-grid article,
.route,
.contact-card {
  border-radius: 22px;
}

.proof-grid article {
  min-height: 180px;
  padding: 1.55rem 1.5rem;
  border: 1px solid rgba(255, 248, 241, 0.16);
  background: linear-gradient(180deg, rgba(255, 248, 241, 0.08), rgba(255, 248, 241, 0.04));
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.08);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.proof-grid article:hover {
  transform: translateY(-4px);
  border-color: rgba(214, 160, 103, 0.34);
  background: linear-gradient(180deg, rgba(255, 248, 241, 0.11), rgba(255, 248, 241, 0.05));
}

.proof-grid strong,
.contact-card strong {
  display: block;
  margin-bottom: 0.75rem;
  font-size: 1.05rem;
}

.proof-grid p,
.route p,
.feature-points li,
.faq-list p,
.contact-card p {
  margin: 0;
}

.proof-grid-expanded {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.routes {
  background: linear-gradient(180deg, var(--paper) 0%, #eadbc8 100%);
}

.section-copy {
  max-width: 760px;
}

.section-copy p {
  margin: 0.95rem 0 0;
  max-width: 44rem;
  color: var(--muted);
}

.route {
  display: flex;
  flex-direction: column;
  padding: 1.5rem;
  border: 1px solid rgba(23, 21, 21, 0.08);
  background: rgba(255, 248, 241, 0.42);
  box-shadow: 0 14px 30px rgba(23, 21, 21, 0.06);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
}

.route p {
  margin-bottom: 1.2rem;
}

.route:hover {
  transform: translateY(-6px);
  border-color: rgba(201, 125, 59, 0.28);
  box-shadow: 0 20px 36px rgba(23, 21, 21, 0.1);
}

.route-highlight {
  background: linear-gradient(180deg, rgba(201, 125, 59, 0.18), rgba(255, 248, 241, 0.72));
  transform: translateY(-12px);
}

.route h3 {
  margin-bottom: 0.75rem;
}

.route-action {
  margin-top: auto;
  align-self: flex-start;
}

.feature-story {
  background: linear-gradient(180deg, #fbf3e8 0%, #f7efe5 100%);
}

.feature-story-alt {
  background: linear-gradient(180deg, #f3e7d9 0%, #eddcc8 100%);
}

.feature-story-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1fr);
  gap: 2rem;
  align-items: center;
}

.feature-visual {
  position: relative;
  overflow: hidden;
  border-radius: 34px;
  background:
    radial-gradient(circle at 20% 20%, rgba(201, 125, 59, 0.26), transparent 28%),
    linear-gradient(135deg, #151616, #2a2d2d);
  padding: 1.4rem;
  box-shadow: 0 14px 34px rgba(17, 19, 19, 0.12);
}

.feature-visual img {
  width: 100%;
  height: auto;
  max-height: 380px;
  object-fit: contain;
  border-radius: 20px;
  background: #ffffff;
}

.feature-copy p {
  margin: 1rem 0 0;
  max-width: 42rem;
  color: var(--muted);
}

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

.feature-points li {
  padding-left: 1.2rem;
  position: relative;
  color: var(--ink);
  line-height: 1.68;
}

.feature-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.68rem;
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 999px;
  background: var(--copper);
}

.logos {
  padding: 3.2rem 0 5rem;
  background: #f7efe5;
}

.logos-shell {
  padding: 1.8rem;
  border-radius: 24px;
  background: rgba(255, 248, 241, 0.82);
  border: 1px solid rgba(23, 21, 21, 0.08);
  box-shadow: 0 14px 30px rgba(23, 21, 21, 0.06);
}

.logos-shell p {
  margin: 0;
  color: var(--muted);
}

.logos-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.35rem;
}

.logo-item {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 82px;
  padding: 1rem;
  border: 1px solid rgba(23, 21, 21, 0.08);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.58);
}

.logo-item img {
  max-height: 44px;
  width: auto;
  opacity: 0.82;
  filter: saturate(0.92);
}

.faq {
  background: linear-gradient(180deg, #f7efe5 0%, #efe2d3 100%);
}

.faq-list {
  display: grid;
  gap: 1rem;
}

.faq-list details {
  padding: 1.1rem 1.25rem;
  border-radius: 22px;
  background: rgba(255, 248, 241, 0.7);
  border: 1px solid rgba(23, 21, 21, 0.08);
}

.faq-list summary {
  cursor: pointer;
  font-weight: 800;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list p {
  margin-top: 0.9rem;
  color: var(--muted);
  line-height: 1.68;
}

.final-cta {
  background:
    radial-gradient(circle at top, rgba(201, 125, 59, 0.16), transparent 28%),
    linear-gradient(180deg, #171818 0%, #101111 100%);
  color: var(--paper-strong);
}

.final-cta-shell {
  display: grid;
  gap: 1.5rem;
}

.final-cta-shell p {
  max-width: 46rem;
  margin: 1rem 0 0;
  color: rgba(255, 248, 241, 0.76);
}

.contact-card {
  flex: 1 1 280px;
  padding: 1.5rem;
  border: 1px solid rgba(255, 248, 241, 0.14);
  background: rgba(255, 248, 241, 0.06);
}

.contact-card p {
  margin-bottom: 1.1rem;
  color: rgba(255, 248, 241, 0.74);
}

.site-footer {
  padding-top: 2rem;
  padding-bottom: 2.4rem;
  background: #101111;
  color: rgba(255, 248, 241, 0.84);
}

.footer-shell {
  align-items: flex-start;
}

.footer-shell strong {
  display: inline-block;
  margin-bottom: 0.7rem;
  color: var(--paper-strong);
}

.footer-shell p {
  max-width: 34rem;
  margin: 0;
  color: rgba(255, 248, 241, 0.66);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.85rem 1.15rem;
  max-width: 30rem;
}

.footer-links a {
  color: rgba(255, 248, 241, 0.82);
}

.whatsapp-float {
  position: fixed;
  right: 1.2rem;
  bottom: 1.2rem;
  z-index: 45;
  min-height: 56px;
  padding: 0.95rem 1.15rem;
  border-radius: 999px;
  background: #25d366;
  color: #0f1211;
  font-weight: 800;
  box-shadow: 0 18px 34px rgba(7, 11, 18, 0.28);
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

.whatsapp-float.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.wa-gate[hidden] {
  display: none;
}

.wa-gate {
  position: fixed;
  inset: 0;
  z-index: 80;
}

.wa-gate-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 10, 0.72);
  backdrop-filter: blur(8px);
}

.wa-gate-dialog {
  position: relative;
  z-index: 1;
  width: min(100% - 2rem, 460px);
  margin: 9vh auto 0;
  padding: 1.4rem;
  border-radius: 28px;
  border: 1px solid rgba(255, 248, 241, 0.16);
  background:
    linear-gradient(180deg, rgba(19, 21, 21, 0.96), rgba(16, 17, 17, 0.98));
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.34);
  color: var(--paper-strong);
}

.wa-gate-dialog h2 {
  max-width: none;
  margin-top: 0.2rem;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
}

.wa-gate-dialog p {
  margin: 0.85rem 0 0;
  color: rgba(255, 248, 241, 0.74);
}

.wa-gate-form {
  display: grid;
  gap: 0.15rem;
  margin-top: 1rem;
}

.wa-gate-close {
  position: absolute;
  top: 0.9rem;
  right: 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 248, 241, 0.08);
  color: var(--paper-strong);
  font-size: 1.4rem;
  cursor: pointer;
}

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition:
    opacity 650ms ease,
    transform 650ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1080px) {
  .routes-grid,
  .proof-grid-expanded {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 980px) {
  .hero-grid,
  .feature-story-grid,
  .proof-grid,
  .routes-grid {
    grid-template-columns: 1fr;
  }

  .route-highlight {
    transform: none;
  }

  .proof-grid article {
    min-height: auto;
  }

  .hero-side .intake {
    transform: translateY(3rem);
  }

  .footer-shell {
    flex-direction: column;
  }

  .footer-links {
    justify-content: flex-start;
    max-width: none;
  }
}

@media (max-width: 720px) {
  .masthead {
    position: relative;
    inset: 0;
    background: var(--charcoal);
  }

  .masthead-shell {
    min-height: 74px;
    padding: 0.45rem 0;
    flex-wrap: wrap;
    border: 0;
    border-radius: 0;
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    box-shadow: none;
  }

  .brand img {
    width: 166px;
    transform: translateX(-12px);
  }

  .brand {
    display: inline-flex;
    transform: none;
  }

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

  .official-nav {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 0.4rem 0 0.85rem;
    border: 0;
    border-radius: 0;
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    box-shadow: none;
  }

  .official-nav.open {
    display: flex;
  }

  .masthead-link {
    width: 100%;
    padding: 0.85rem 0;
    border-top: 1px solid rgba(255, 248, 241, 0.08);
  }

  .hero {
    min-height: auto;
    padding: 2rem 0 2.8rem;
  }

  .hero-backdrop {
    background:
      linear-gradient(180deg, rgba(8, 8, 8, 0.96) 0%, rgba(8, 8, 8, 0.84) 18%, rgba(8, 8, 8, 0.78) 42%, rgba(8, 8, 8, 0.94) 100%),
      linear-gradient(90deg, rgba(8, 8, 8, 0.94) 0%, rgba(8, 8, 8, 0.82) 44%, rgba(8, 8, 8, 0.36) 100%),
      url("assets/mulher_uza3-hero.jpg") 70% 6% / cover no-repeat;
    transform: none;
  }

  .hero-grid {
    gap: 1.8rem;
  }

  .hero-copy {
    max-width: none;
    padding: 0.85rem 0 0;
  }

  .eyebrow {
    margin-bottom: 0.75rem;
    font-size: 0.76rem;
    letter-spacing: 0.14em;
  }

  .hero-lead {
    max-width: 28rem;
    margin-top: 1rem;
    font-size: 1rem;
    line-height: 1.58;
    color: rgba(255, 248, 241, 0.84);
  }

  .hero-list {
    gap: 0.55rem;
  }

  .hero-list span {
    padding: 0.62rem 0.7rem;
    font-size: 0.86rem;
  }

  .hero-actions,
  .contact-grid {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions {
    gap: 0.85rem;
    margin-top: 1.45rem;
  }

  .hero-side {
    justify-content: stretch;
  }

  .hero-side .intake {
    width: 100%;
    max-width: none;
    transform: none;
    margin-top: 0.25rem;
    padding: 1.2rem;
    border-radius: 24px;
    background: linear-gradient(180deg, rgba(18, 20, 20, 0.58), rgba(18, 20, 20, 0.4));
  }

  h1 {
    max-width: 10.8ch;
    font-size: clamp(2.1rem, 10.8vw, 3.5rem);
    line-height: 0.94;
  }

  h2 {
    font-size: clamp(1.7rem, 8vw, 2.5rem);
  }

  .intake h2 {
    font-size: 1.9rem;
  }

  .proof,
  .routes,
  .feature-story,
  .faq,
  .final-cta,
  .site-footer {
    padding: 4rem 0;
  }

  .logos {
    padding: 2.4rem 0 4rem;
  }

  .logos-row,
  .proof-grid-expanded {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.8rem;
  }

  .logo-item {
    min-height: 76px;
    padding: 0.9rem;
  }

  .whatsapp-float {
    right: 0.9rem;
    bottom: 0.9rem;
    width: auto;
    min-width: 0;
    max-width: calc(100% - 1.8rem);
  }
}

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

  .hero {
    padding-top: 2rem;
  }

  .hero-backdrop {
    background:
      linear-gradient(180deg, rgba(8, 8, 8, 0.97) 0%, rgba(8, 8, 8, 0.86) 18%, rgba(8, 8, 8, 0.8) 44%, rgba(8, 8, 8, 0.95) 100%),
      linear-gradient(90deg, rgba(8, 8, 8, 0.96) 0%, rgba(8, 8, 8, 0.84) 48%, rgba(8, 8, 8, 0.3) 100%),
      url("assets/mulher_uza3-hero.jpg") 74% 4% / cover no-repeat;
  }

  .hero-grid {
    gap: 1.55rem;
  }

  h1 {
    max-width: 10.4ch;
    font-size: clamp(2rem, 10.4vw, 3rem);
  }

  .hero-lead {
    font-size: 0.98rem;
  }

  .intake {
    padding: 1.05rem;
  }

  .intake h2 {
    font-size: 1.72rem;
  }

  .logos-row,
  .proof-grid-expanded {
    grid-template-columns: 1fr;
  }

  .button,
  .btn,
  .route-action {
    width: 100%;
  }

  .whatsapp-float {
    left: auto;
    width: auto;
    padding-inline: 1rem;
  }
}
