@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800;900&family=Poppins:ital,wght@0,400;0,500;0,600;0,700;0,800;1,600;1,700;1,800&display=swap");

:root {
  --navy: #031d34;
  --navy-deep: #021426;
  --navy-light: #0a456d;
  --orange: #f36b08;
  --orange-deep: #e85f00;
  --green: #10a741;
  --white: #ffffff;
  --ink: #111820;
  --muted: #5c6268;
  --max: 1600px;
  --side: clamp(1rem, 4vw, 4.75rem);
  --card-radius: clamp(1.35rem, 2.2vw, 2.4rem);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  margin: 0;
  padding: 0;
  background: var(--navy);
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  min-width: 320px;
  margin: 0;
  padding: 0;
  overflow-x: clip;
  background: var(--navy);
  color: var(--ink);
  font-family: "Montserrat", Arial, sans-serif;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: "";
  position: fixed;
  z-index: 999999;
  inset: 0 0 auto;
  height: 2px;
  background: var(--navy);
  pointer-events: none;
}

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

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

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

:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 4px;
}

.site {
  width: 100%;
  min-height: 100vh;
  margin: 0;
  padding: 0;
  overflow: clip;
  background: var(--navy);
}

.inner {
  width: min(100%, var(--max));
  margin-inline: auto;
  padding-inline: var(--side);
}

.display {
  font-family: "Poppins", Arial, sans-serif;
  letter-spacing: -0.045em;
}

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

/* Hero */
.hero {
  position: relative;
  isolation: isolate;
  width: 100%;
  overflow: hidden;
  padding-block: clamp(1rem, 3.5vw, 3.5rem) clamp(2.5rem, 6vw, 6rem);
  background:
    radial-gradient(circle at 88% 20%, rgba(24, 94, 136, .30), transparent 23%),
    linear-gradient(180deg, rgba(1, 17, 31, .05), rgba(1, 17, 31, .72)),
    var(--navy);
}

.hero::before {
  content: "";
  position: absolute;
  z-index: -2;
  inset: 0;
  background:
    linear-gradient(90deg,
      transparent 0 43%,
      rgba(10, 69, 109, .55) 43% 49%,
      rgba(0, 0, 0, .10) 49% 50%,
      rgba(2, 20, 38, .72) 50% 56%,
      transparent 56%),
    linear-gradient(0deg, rgba(1, 12, 23, .82), transparent 46%);
}

.hero::after {
  content: "";
  position: absolute;
  z-index: -1;
  right: -10vw;
  bottom: -11vw;
  width: max(31rem, 41vw);
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--orange);
  opacity: .94;
}

.hero-card {
  width: min(100%, 1380px);
  min-height: clamp(34rem, 48vw, 46rem);
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(21rem, .92fr);
  overflow: hidden;
  border-radius: var(--card-radius);
  background: var(--white);
  box-shadow: 0 2.1rem 5rem rgba(0, 0, 0, .30);
}

.hero-copy {
  min-width: 0;
  align-self: center;
  padding: clamp(2.2rem, 5vw, 5.7rem);
}

.hero-title {
  max-width: 14ch;
  margin: 0;
  font-family: "Poppins", Arial, sans-serif;
  font-size: clamp(1.95rem, 3.45vw, 3.95rem);
  font-weight: 500;
  line-height: 1.14;
  letter-spacing: -.045em;
}

.hero-title strong {
  font-style: italic;
  font-weight: 800;
}

.hero-subtitle {
  margin: clamp(1.1rem, 2vw, 1.65rem) 0 0;
  font-size: clamp(1rem, 1.35vw, 1.36rem);
  font-weight: 500;
  line-height: 1.35;
}

.hero-identity {
  margin: 1.15rem 0 0;
  font-family: "Poppins", Arial, sans-serif;
  font-size: clamp(.72rem, .93vw, .96rem);
  font-weight: 800;
  line-height: 1.55;
  text-transform: uppercase;
}

.hero-actions {
  margin-top: clamp(1.5rem, 2.5vw, 2.2rem);
}

.whatsapp-button {
  min-height: 3.35rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .65rem;
  padding: .78rem 1.45rem;
  border-radius: 999px;
  background: linear-gradient(180deg, #19bb52, #079537);
  color: var(--white);
  box-shadow: 0 .5rem 1.25rem rgba(0, 0, 0, .24);
  font-family: "Poppins", Arial, sans-serif;
  font-size: clamp(.72rem, .8vw, .87rem);
  font-style: italic;
  font-weight: 600;
  text-transform: uppercase;
  transition: transform .18s ease, filter .18s ease;
}

.whatsapp-button:hover {
  transform: translateY(-3px);
  filter: brightness(1.06);
}

.whatsapp-button svg {
  width: 1.35rem;
  height: 1.35rem;
}

.hero-photo {
  min-width: 0;
  min-height: clamp(28rem, 48vw, 46rem);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
  background: var(--white);
}

.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center bottom;
}

/* Biography */
.biography {
  width: 100%;
  padding-block: clamp(4rem, 8vw, 9rem);
  background: var(--white);
}

.bio-grid {
  display: grid;
  grid-template-columns: minmax(18rem, .82fr) minmax(0, 1.18fr);
  align-items: center;
  gap: clamp(2.5rem, 7vw, 8rem);
}

.bio-photo {
  width: 100%;
  max-width: 42rem;
  height: clamp(28rem, 55vw, 47rem);
  margin-inline: auto;
  overflow: hidden;
  border-radius: 0 3.2rem 0 3.2rem;
  background: #d6d6d6;
}

.bio-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.bio-copy {
  max-width: 52rem;
  margin-inline: auto;
}

.bio-copy p {
  margin: 0;
  font-size: clamp(1rem, 1.36vw, 1.43rem);
  font-weight: 500;
  line-height: 1.58;
}

.bio-copy p + p {
  margin-top: clamp(1.25rem, 2.1vw, 1.85rem);
}

/* Proposals */
.proposals {
  position: relative;
  isolation: isolate;
  width: 100%;
  overflow: hidden;
  padding-top: clamp(4.5rem, 8vw, 8.5rem);
  background: var(--navy);
  color: var(--white);
}

.proposals::before {
  content: "";
  position: absolute;
  z-index: -2;
  inset: 0;
  background:
    linear-gradient(145deg, transparent 0 52%, rgba(19, 78, 118, .40) 52.2% 52.8%, transparent 53%),
    linear-gradient(160deg, transparent 0 66%, rgba(255, 255, 255, .07) 66.2% 66.5%, transparent 66.7%);
}

.proposals::after {
  content: "";
  position: absolute;
  z-index: -1;
  left: -5%;
  right: -5%;
  bottom: -4.2rem;
  height: 12rem;
  background: var(--orange);
  transform: rotate(3.4deg);
  transform-origin: center;
}

.proposal-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(18rem, 27rem);
  align-items: end;
  gap: clamp(2rem, 5vw, 5rem);
}

.proposal-content {
  min-width: 0;
  padding-bottom: clamp(9rem, 14vw, 14rem);
}

.proposal-heading {
  margin: 0;
  padding-bottom: 1.2rem;
  border-bottom: 3px solid var(--orange);
  font-family: "Poppins", Arial, sans-serif;
  font-size: clamp(2.4rem, 4.75vw, 4.9rem);
  font-style: italic;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -.045em;
}

.proposal-heading span {
  color: var(--orange);
}

.proposal-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1rem, 2vw, 1.65rem);
  margin-top: clamp(1.6rem, 3vw, 2.2rem);
}

.proposal-card {
  min-height: clamp(12rem, 17vw, 15rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(1.35rem, 2.4vw, 2.4rem);
  border-radius: .55rem;
  background: var(--white);
  color: var(--navy);
  box-shadow: 0 .75rem 1.65rem rgba(0, 0, 0, .13);
  text-align: center;
}

.proposal-card h3 {
  margin: 0;
  font-family: "Poppins", Arial, sans-serif;
  font-size: clamp(1.35rem, 2vw, 2rem);
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: -.035em;
}

.proposal-card h3 span {
  color: var(--orange);
}

.proposal-card p {
  margin: .95rem 0 0;
  font-size: clamp(.9rem, 1.08vw, 1.13rem);
  font-weight: 500;
  line-height: 1.3;
}

.proposal-person {
  position: relative;
  width: 100%;
  max-width: 27rem;
  height: clamp(39rem, 63vw, 51rem);
  margin-inline: auto;
  overflow: hidden;
  align-self: end;
}

.proposal-person img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.proposal-person::after {
  content: "";
  position: absolute;
  left: -20%;
  right: -20%;
  bottom: -1.7rem;
  height: 5.4rem;
  background: var(--orange);
  transform: rotate(5deg);
}

/* Support */
.support {
  width: 100%;
  padding-block: clamp(4.5rem, 8vw, 8.5rem);
  background: var(--orange);
  color: var(--white);
}

.support-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(22rem, .8fr);
  align-items: center;
  gap: clamp(3rem, 7vw, 8rem);
}

.support-title {
  margin: 0;
  font-family: "Poppins", Arial, sans-serif;
  font-size: clamp(2.25rem, 4.4vw, 4.5rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -.045em;
}

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

.social {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: .75rem;
  font-size: clamp(.95rem, 1.25vw, 1.25rem);
  font-weight: 500;
}

.social-icon {
  width: 2.25rem;
  height: 2.25rem;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: .55rem;
  background: var(--white);
  color: var(--orange);
}

.social-icon svg {
  width: 1.25rem;
  height: 1.25rem;
}

.social-label {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.party {
  margin: 2.8rem 0 0;
  font-family: "Poppins", Arial, sans-serif;
  font-size: clamp(2rem, 4vw, 3.9rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -.045em;
}

.party small {
  font-size: .48em;
}

.support-card {
  padding: clamp(2rem, 4vw, 4rem);
  border-radius: clamp(1.45rem, 2vw, 2rem);
  background: var(--navy);
  box-shadow: 0 1.5rem 3.2rem rgba(0, 0, 0, .19);
  text-align: center;
}

.support-card h3 {
  margin: 0;
  font-family: "Poppins", Arial, sans-serif;
  font-size: clamp(1.75rem, 3vw, 2.9rem);
  font-weight: 800;
  line-height: 1.08;
}

.support-card p {
  max-width: 28rem;
  margin: 1.35rem auto 0;
  font-size: clamp(1rem, 1.45vw, 1.3rem);
  line-height: 1.35;
}

.support-button {
  min-width: 13rem;
  min-height: 3.25rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 1.65rem;
  padding: .78rem 1.4rem;
  border-radius: .5rem;
  background: var(--white);
  color: var(--navy);
  box-shadow: 0 .3rem .7rem rgba(0, 0, 0, .25);
  font-family: "Poppins", Arial, sans-serif;
  font-style: italic;
  font-weight: 600;
  transition: transform .18s ease;
}

.support-button:hover {
  transform: translateY(-3px);
}

.legal {
  margin: 0;
  padding: 1.4rem var(--side);
  background: var(--navy);
  color: rgba(255, 255, 255, .68);
  font-size: .7rem;
  line-height: 1.55;
  text-align: center;
}

.float-whatsapp {
  position: fixed;
  z-index: 50;
  right: clamp(.85rem, 2vw, 2rem);
  bottom: clamp(.85rem, 2vw, 2rem);
  width: clamp(3.35rem, 4vw, 4rem);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--green);
  color: var(--white);
  box-shadow: 0 .75rem 2rem rgba(0, 0, 0, .32);
  transition: transform .18s ease;
}

.float-whatsapp:hover {
  transform: translateY(-4px);
}

.float-whatsapp svg {
  width: 52%;
  height: 52%;
}

/* Responsive */
@media (max-width: 1120px) {
  .hero-card {
    grid-template-columns: minmax(0, 1fr) minmax(19rem, .78fr);
  }

  .hero-copy {
    padding: clamp(2rem, 4vw, 3.75rem);
  }

  .hero-title {
    font-size: clamp(1.88rem, 3.45vw, 3rem);
  }

  .bio-grid {
    grid-template-columns: minmax(17rem, .82fr) minmax(0, 1.18fr);
    gap: clamp(2rem, 5vw, 4.5rem);
  }

  .proposal-layout {
    grid-template-columns: minmax(0, 1fr) minmax(17rem, 23rem);
  }
}

@media (max-width: 850px) {
  .hero {
    padding-block: .8rem 3rem;
  }

  .hero-card {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    padding: clamp(2rem, 7vw, 3.2rem);
  }

  .hero-title {
    max-width: 15ch;
    font-size: clamp(1.82rem, 5.7vw, 2.8rem);
  }

  .hero-photo {
    min-height: 0;
    height: clamp(25rem, 82vw, 35rem);
  }

  .bio-grid,
  .proposal-layout,
  .support-grid {
    grid-template-columns: 1fr;
  }

  .bio-photo {
    width: min(100%, 39rem);
  }

  .proposal-content {
    padding-bottom: 2rem;
  }

  .proposal-person {
    width: min(100%, 25rem);
    height: clamp(36rem, 92vw, 48rem);
  }

  .support-grid {
    gap: 3rem;
  }
}

@media (max-width: 600px) {
  :root {
    --side: clamp(.8rem, 4vw, 1.25rem);
  }

  .hero::after {
    right: -17rem;
    bottom: -6rem;
    width: 31rem;
  }

  .hero-card {
    border-radius: 1.35rem;
  }

  .hero-copy {
    padding: 1.8rem 1.35rem;
  }

  .hero-title {
    font-size: clamp(1.66rem, 7.7vw, 2.35rem);
  }

  .hero-subtitle {
    font-size: clamp(.95rem, 4vw, 1.1rem);
  }

  .hero-identity {
    font-size: clamp(.67rem, 3vw, .78rem);
  }

  .whatsapp-button {
    width: 100%;
    font-size: .72rem;
  }

  .hero-photo {
    height: clamp(21rem, 105vw, 30rem);
  }

  .bio-photo {
    height: clamp(27rem, 126vw, 38rem);
    border-radius: 0 2rem 0 2rem;
  }

  .bio-copy p {
    font-size: clamp(.96rem, 4.25vw, 1.1rem);
  }

  .proposal-heading {
    font-size: clamp(2.15rem, 10vw, 3.25rem);
  }

  .proposal-cards {
    grid-template-columns: 1fr;
  }

  .proposal-card {
    min-height: 0;
    padding: 1.6rem 1.25rem;
  }

  .proposal-card h3 {
    font-size: clamp(1.35rem, 6vw, 1.75rem);
  }

  .proposal-card p {
    font-size: .92rem;
  }

  .proposal-person {
    width: min(100%, 22rem);
    height: clamp(32rem, 155vw, 44rem);
  }

  .support-title {
    font-size: clamp(2.1rem, 10vw, 3rem);
  }

  .social-grid {
    grid-template-columns: 1fr;
    gap: .95rem;
  }

  .support-card {
    padding: 2rem 1.3rem;
  }
}

@media (max-width: 370px) {
  .hero-copy {
    padding-inline: 1.05rem;
  }

  .hero-title {
    font-size: 1.58rem;
  }

  .hero-photo {
    height: 20rem;
  }

  .bio-photo {
    height: 25rem;
  }

  .social {
    font-size: .9rem;
  }
}

@media (min-width: 1800px) {
  .hero-card {
    max-width: 1380px;
  }

  .bio-grid,
  .proposal-layout,
  .support-grid {
    max-width: 1480px;
    margin-inline: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
  }
}
/* =========================================================
   MODERN MOTION LAYER
   Padrões inspirados em shadcn/ui e 21st.dev, sem dependências.
   ========================================================= */

:root {
  --ease-spring: cubic-bezier(.16, 1, .3, 1);
  --ease-soft: cubic-bezier(.22, 1, .36, 1);
  --glass: rgba(255, 255, 255, .76);
  --glass-border: rgba(255, 255, 255, .58);
}

body {
  overscroll-behavior-y: none;
}

.scroll-progress {
  position: fixed;
  z-index: 1000001;
  inset: 0 0 auto;
  height: 3px;
  pointer-events: none;
}

.scroll-progress span {
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, var(--orange), #ff9b4f);
  transform: scaleX(0);
  transform-origin: left center;
  box-shadow: 0 0 18px rgba(243, 107, 8, .6);
  will-change: transform;
}

/* Floating shadcn-like navigation */
.glass-nav {
  position: fixed;
  z-index: 99999;
  top: max(.8rem, env(safe-area-inset-top));
  left: 50%;
  width: min(calc(100% - 1.5rem), 72rem);
  min-height: 4rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: .55rem .65rem;
  border: 1px solid var(--glass-border);
  border-radius: 1.25rem;
  background: var(--glass);
  color: var(--ink);
  box-shadow:
    0 1rem 3rem rgba(1, 18, 33, .16),
    inset 0 1px rgba(255, 255, 255, .65);
  backdrop-filter: blur(18px) saturate(150%);
  -webkit-backdrop-filter: blur(18px) saturate(150%);
  transform: translate(-50%, -140%);
  opacity: 0;
  transition:
    transform .5s var(--ease-spring),
    opacity .35s ease,
    background .25s ease;
}

.glass-nav.is-visible {
  transform: translate(-50%, 0);
  opacity: 1;
}

.glass-brand {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: .7rem;
}

.glass-brand-mark {
  width: 2.75rem;
  height: 2.75rem;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: .9rem;
  background: var(--navy);
  color: var(--white);
  font-family: "Poppins", Arial, sans-serif;
  font-size: .95rem;
  font-weight: 800;
  letter-spacing: -.04em;
  box-shadow: 0 .5rem 1rem rgba(3, 29, 52, .18);
}

.glass-brand-copy {
  min-width: 0;
  display: grid;
  line-height: 1.05;
}

.glass-brand-copy strong {
  overflow: hidden;
  font-family: "Poppins", Arial, sans-serif;
  font-size: .87rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.glass-brand-copy small {
  margin-top: .28rem;
  color: var(--muted);
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.glass-links {
  margin-inline: auto;
  display: flex;
  align-items: center;
  gap: .25rem;
  padding: .25rem;
  border-radius: .85rem;
  background: rgba(3, 29, 52, .055);
}

.glass-links a {
  padding: .62rem .78rem;
  border-radius: .65rem;
  color: #34414b;
  font-size: .76rem;
  font-weight: 700;
  transition: background .2s ease, color .2s ease, transform .2s ease;
}

.glass-links a:hover,
.glass-links a.is-active {
  background: var(--white);
  color: var(--navy);
  box-shadow: 0 .35rem .9rem rgba(3, 29, 52, .09);
  transform: translateY(-1px);
}

.glass-cta {
  min-height: 2.75rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: .7rem 1rem;
  border-radius: .8rem;
  background: var(--navy);
  color: var(--white);
  font-size: .72rem;
  font-weight: 800;
  text-transform: uppercase;
  transition: transform .2s var(--ease-spring), background .2s ease;
}

.glass-cta:hover {
  transform: translateY(-2px);
  background: var(--orange);
}

/* Hero motion */
.hero {
  min-height: 100svh;
}

.hero::before {
  animation: heroBackgroundDrift 14s ease-in-out infinite alternate;
}

.hero::after {
  animation: heroOrbFloat 9s ease-in-out infinite;
}

.hero-card {
  position: relative;
  isolation: isolate;
  transform: translateZ(0);
  transition: box-shadow .4s ease, transform .4s var(--ease-spring);
}

.hero-card::before {
  content: "";
  position: absolute;
  z-index: 4;
  inset: 0;
  border-radius: inherit;
  background:
    linear-gradient(120deg, transparent 24%, rgba(255,255,255,.55) 46%, transparent 68%);
  transform: translateX(-120%);
  pointer-events: none;
}

.js .hero-card.is-ready::before {
  animation: heroSheen 1.5s .45s var(--ease-soft) both;
}

.hero-card:hover {
  box-shadow: 0 2.6rem 6rem rgba(0, 0, 0, .34);
}

.hero-kicker {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  margin-bottom: 1.15rem;
  padding: .5rem .7rem;
  border: 1px solid rgba(3, 29, 52, .10);
  border-radius: 999px;
  background: #f6f8f9;
  color: #44515b;
  font-size: clamp(.65rem, .72vw, .78rem);
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.hero-kicker-dot {
  width: .5rem;
  height: .5rem;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 0 rgba(243, 107, 8, .45);
  animation: statusPulse 2.2s ease-out infinite;
}

.hero-title strong {
  position: relative;
  display: inline-block;
  color: var(--ink);
}

.hero-title strong::after {
  content: "";
  position: absolute;
  z-index: -1;
  left: -.06em;
  right: -.06em;
  bottom: .08em;
  height: .16em;
  border-radius: 999px;
  background: rgba(243, 107, 8, .28);
  transform: scaleX(0);
  transform-origin: left center;
}

.js .hero-card.is-ready .hero-title strong::after {
  animation: underlineIn .8s .85s var(--ease-soft) forwards;
}

.hero-photo img,
.bio-photo img,
.proposal-person img {
  will-change: transform;
  transition: transform .5s var(--ease-spring), filter .5s ease;
}

.hero-photo:hover img,
.bio-photo:hover img,
.proposal-person:hover img {
  transform: scale(1.018);
}

.whatsapp-button,
.support-button {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.whatsapp-button::after,
.support-button::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, transparent 20%, rgba(255,255,255,.38), transparent 80%);
  transform: translateX(-120%);
  transition: transform .75s var(--ease-soft);
  pointer-events: none;
}

.whatsapp-button:hover::after,
.support-button:hover::after {
  transform: translateX(120%);
}

/* Scroll reveal */
.js .reveal {
  opacity: 0;
  transition:
    opacity .75s var(--ease-soft),
    transform .75s var(--ease-soft),
    filter .75s var(--ease-soft);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform, filter;
}

.js .reveal[data-reveal="up"] {
  transform: translateY(2.5rem);
  filter: blur(5px);
}

.js .reveal[data-reveal="left"] {
  transform: translateX(-2.5rem);
  filter: blur(5px);
}

.js .reveal[data-reveal="right"] {
  transform: translateX(2.5rem);
  filter: blur(5px);
}

.js .reveal.is-visible {
  opacity: 1;
  transform: none;
  filter: none;
}

/* Biography modern visual */
.bio-photo {
  position: relative;
  isolation: isolate;
  box-shadow: 0 1.75rem 4.5rem rgba(3, 29, 52, .15);
}

.bio-photo::after {
  content: "";
  position: absolute;
  inset: auto 1.2rem 1.2rem auto;
  width: 4.75rem;
  aspect-ratio: 1;
  border: 1px solid rgba(255,255,255,.65);
  border-radius: 1.2rem;
  background: rgba(255,255,255,.18);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: inset 0 1px rgba(255,255,255,.65);
  pointer-events: none;
}

.bio-copy {
  position: relative;
}

.bio-copy::before {
  content: "“";
  position: absolute;
  z-index: 0;
  top: -3.7rem;
  left: -1.6rem;
  color: rgba(243, 107, 8, .12);
  font-family: Georgia, serif;
  font-size: 9rem;
  line-height: 1;
  pointer-events: none;
}

.bio-copy p {
  position: relative;
  z-index: 1;
}

/* Section kicker */
.section-kicker {
  width: fit-content;
  margin-bottom: .9rem;
  padding: .45rem .7rem;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 999px;
  background: rgba(255,255,255,.07);
  color: rgba(255,255,255,.78);
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .11em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}

/* Spotlight cards inspired by 21st.dev */
.spotlight-card {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  --spot-x: 50%;
  --spot-y: 50%;
}

.spotlight-card::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: -1px;
  background:
    radial-gradient(
      22rem circle at var(--spot-x) var(--spot-y),
      rgba(243, 107, 8, .16),
      transparent 46%
    );
  opacity: 0;
  transition: opacity .28s ease;
  pointer-events: none;
}

.spotlight-card:hover::before {
  opacity: 1;
}

.proposal-card {
  border: 1px solid rgba(255,255,255,.92);
  transform-style: preserve-3d;
  transition:
    transform .28s var(--ease-spring),
    box-shadow .28s ease,
    border-color .28s ease;
}

.proposal-card:hover {
  z-index: 3;
  transform: translateY(-.5rem) rotateX(var(--tilt-y, 0deg)) rotateY(var(--tilt-x, 0deg));
  border-color: rgba(243, 107, 8, .35);
  box-shadow:
    0 1.35rem 3.2rem rgba(0,0,0,.20),
    0 0 0 1px rgba(243,107,8,.08);
}

.proposal-card h3,
.proposal-card p {
  position: relative;
  z-index: 1;
}

.proposal-person::before {
  content: "";
  position: absolute;
  z-index: 2;
  inset: 7% 3% auto auto;
  width: 5rem;
  aspect-ratio: 1;
  border: 1px solid rgba(255,255,255,.38);
  border-radius: 50%;
  box-shadow: 0 0 0 1rem rgba(255,255,255,.035);
  animation: ringFloat 5s ease-in-out infinite;
  pointer-events: none;
}

/* Support section */
.support-card {
  border: 1px solid rgba(255,255,255,.14);
  box-shadow:
    0 1.5rem 4rem rgba(0,0,0,.19),
    inset 0 1px rgba(255,255,255,.08);
  transition: transform .35s var(--ease-spring), box-shadow .35s ease;
}

.support-card:hover {
  transform: translateY(-.45rem);
  box-shadow:
    0 2rem 5rem rgba(0,0,0,.25),
    inset 0 1px rgba(255,255,255,.11);
}

.social {
  border-radius: .85rem;
  padding: .45rem;
  transition: background .25s ease, transform .25s var(--ease-spring);
}

.social:hover {
  background: rgba(255,255,255,.12);
  transform: translateX(.3rem);
}

.social-icon {
  transition: transform .28s var(--ease-spring), box-shadow .28s ease;
}

.social:hover .social-icon {
  transform: rotate(-5deg) scale(1.08);
  box-shadow: 0 .65rem 1.2rem rgba(0,0,0,.13);
}

/* Floating actions */
.float-whatsapp {
  animation: floatButton 3.2s ease-in-out infinite;
}

.float-whatsapp::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: -.45rem;
  border: 1px solid rgba(16, 167, 65, .45);
  border-radius: 50%;
  animation: whatsappRing 2.2s ease-out infinite;
}

.back-to-top {
  position: fixed;
  z-index: 9998;
  right: clamp(1rem, 2.2vw, 2rem);
  bottom: clamp(5.2rem, 8vw, 6.8rem);
  width: 2.8rem;
  height: 2.8rem;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.58);
  border-radius: .9rem;
  background: rgba(255,255,255,.80);
  color: var(--navy);
  box-shadow: 0 .8rem 2rem rgba(3,29,52,.15);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  opacity: 0;
  transform: translateY(.8rem) scale(.94);
  pointer-events: none;
  transition: opacity .25s ease, transform .25s var(--ease-spring);
}

.back-to-top.is-visible {
  opacity: 1;
  transform: none;
  pointer-events: auto;
}

.back-to-top:hover {
  color: var(--orange);
  transform: translateY(-.18rem);
}

/* Keyframes */
@keyframes heroBackgroundDrift {
  from { transform: scale(1) translate3d(0, 0, 0); }
  to { transform: scale(1.035) translate3d(-.6%, .4%, 0); }
}

@keyframes heroOrbFloat {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
  50% { transform: translate3d(-1.5rem, -1.1rem, 0) scale(1.035); }
}

@keyframes heroSheen {
  from { transform: translateX(-120%); }
  to { transform: translateX(120%); }
}

@keyframes underlineIn {
  to { transform: scaleX(1); }
}

@keyframes statusPulse {
  0% { box-shadow: 0 0 0 0 rgba(243, 107, 8, .45); }
  70% { box-shadow: 0 0 0 .55rem rgba(243, 107, 8, 0); }
  100% { box-shadow: 0 0 0 0 rgba(243, 107, 8, 0); }
}

@keyframes ringFloat {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-.7rem) rotate(9deg); }
}

@keyframes floatButton {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-.35rem); }
}

@keyframes whatsappRing {
  0% { opacity: .75; transform: scale(.86); }
  75%, 100% { opacity: 0; transform: scale(1.3); }
}

@media (max-width: 780px) {
  .glass-nav {
    width: calc(100% - 1rem);
    min-height: 3.7rem;
    top: max(.5rem, env(safe-area-inset-top));
    border-radius: 1rem;
  }

  .glass-brand-copy small,
  .glass-links {
    display: none;
  }

  .glass-brand {
    margin-right: auto;
  }

  .glass-cta {
    min-height: 2.6rem;
  }

  .hero {
    min-height: auto;
  }

  .hero-kicker {
    font-size: .61rem;
  }

  .proposal-card:hover {
    transform: translateY(-.28rem);
  }

  .bio-copy::before {
    left: -.45rem;
    top: -2.8rem;
    font-size: 7rem;
  }
}

@media (hover: none), (pointer: coarse) {
  .proposal-card:hover {
    transform: translateY(-.25rem);
  }

  .spotlight-card::before {
    display: none;
  }

  .social:hover {
    transform: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero::before,
  .hero::after,
  .hero-kicker-dot,
  .proposal-person::before,
  .float-whatsapp,
  .float-whatsapp::before {
    animation: none !important;
  }

  .js .reveal {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
  }

  .glass-nav,
  .proposal-card,
  .support-card,
  .social,
  .hero-photo img,
  .bio-photo img,
  .proposal-person img {
    transition: none !important;
  }
}
/* =========================================================
   IMAGENS ORIGINAIS + HERO REEQUILIBRADO
   ========================================================= */

.hero-card {
  grid-template-columns: minmax(0, 1.12fr) minmax(22rem, .88fr);
}

.hero-copy {
  padding: clamp(2.4rem, 4.6vw, 5rem);
}

.hero-title {
  max-width: 15ch;
  text-wrap: balance;
}

.hero-photo {
  position: relative;
  isolation: isolate;
  min-height: clamp(30rem, 45vw, 43rem);
  background:
    radial-gradient(circle at 55% 42%, rgba(243,107,8,.08), transparent 45%),
    var(--white);
}

.hero-photo img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  padding: clamp(.5rem, 1.4vw, 1.3rem) clamp(.25rem, 1vw, .8rem) 0;
  object-fit: contain;
  object-position: center bottom;
}

.hero-photo::before {
  content: "";
  position: absolute;
  z-index: 0;
  right: -20%;
  bottom: -26%;
  width: 95%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: rgba(243,107,8,.09);
  pointer-events: none;
}

.bio-photo {
  height: auto;
  aspect-ratio: 570 / 955;
  max-height: 47rem;
  background: #cfd1d4;
}

.bio-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.proposal-person {
  width: min(100%, 35rem);
  max-width: 35rem;
  height: clamp(40rem, 69vw, 57rem);
  overflow: visible;
}

.proposal-person img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: right bottom;
  filter: drop-shadow(0 1.4rem 2.4rem rgba(0,0,0,.25));
}

.proposal-person::after {
  z-index: 3;
}

@media (max-width: 1120px) {
  .hero-card {
    grid-template-columns: minmax(0, 1.08fr) minmax(19rem, .92fr);
  }

  .hero-copy {
    padding: clamp(2rem, 4vw, 3.5rem);
  }

  .proposal-person {
    width: min(100%, 30rem);
    height: clamp(38rem, 68vw, 50rem);
  }
}

@media (max-width: 850px) {
  .hero-card {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    padding: clamp(1.9rem, 6vw, 3rem);
  }

  .hero-title {
    max-width: 17ch;
  }

  .hero-photo {
    min-height: 0;
    height: clamp(26rem, 92vw, 38rem);
  }

  .hero-photo img {
    padding-top: .4rem;
  }

  .proposal-person {
    width: min(100%, 30rem);
    height: clamp(37rem, 108vw, 51rem);
  }
}

@media (max-width: 600px) {
  .hero-copy {
    padding: 1.65rem 1.25rem 1.45rem;
  }

  .hero-title {
    max-width: 16ch;
    line-height: 1.16;
  }

  .hero-kicker {
    margin-bottom: .8rem;
  }

  .hero-photo {
    height: clamp(23rem, 112vw, 32rem);
  }

  .hero-photo img {
    padding-inline: 0;
  }

  .bio-photo {
    height: auto;
    aspect-ratio: 570 / 955;
  }

  .proposal-person {
    width: min(100%, 26rem);
    height: clamp(34rem, 145vw, 47rem);
  }
}

@media (max-width: 370px) {
  .hero-copy {
    padding-inline: 1rem;
  }

  .hero-photo {
    height: 21.5rem;
  }

  .proposal-person {
    height: 32rem;
  }
}
/* =========================================================
   CORREÇÃO V3 — BIOGRAFIA E FOTO DO DISCURSO
   ========================================================= */

/* Remove o pequeno bloco decorativo que cobria a fotografia. */
.bio-photo::after {
  content: none !important;
  display: none !important;
}

/* A área da foto passa a acompanhar toda a altura visual da seção. */
.proposal-layout {
  grid-template-columns: minmax(0, 1fr) minmax(24rem, 35rem);
  align-items: stretch;
  gap: clamp(1.5rem, 3.5vw, 4rem);
}

.proposal-content {
  position: relative;
  z-index: 2;
}

.proposal-person {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 35rem;
  min-height: clamp(48rem, 61vw, 59rem);
  height: auto;
  margin: 0 0 0 auto;
  align-self: stretch;
  justify-self: end;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  overflow: visible;
}

.proposal-person img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  padding: 0;
  object-fit: contain;
  object-position: right bottom;
  translate: none !important;
  transform-origin: right bottom;
  filter: drop-shadow(0 1.5rem 2.8rem rgba(0,0,0,.28));
}

/* O círculo animado também era interpretado como elemento solto. */
.proposal-person::before {
  content: none !important;
  display: none !important;
}

.proposal-person::after {
  left: -12%;
  right: -12%;
  bottom: -1.2rem;
  height: 5.8rem;
}

/* Evita que o efeito hover desloque a candidata. */
.proposal-person:hover img {
  transform: none !important;
}

/* Notebooks */
@media (max-width: 1180px) {
  .proposal-layout {
    grid-template-columns: minmax(0, 1fr) minmax(22rem, 30rem);
    gap: clamp(1.25rem, 3vw, 2.75rem);
  }

  .proposal-person {
    max-width: 30rem;
    min-height: clamp(45rem, 64vw, 54rem);
  }
}

/* Tablet: a imagem entra abaixo dos cards, centralizada e grande. */
@media (max-width: 850px) {
  .proposal-layout {
    grid-template-columns: 1fr;
  }

  .proposal-person {
    width: min(100%, 32rem);
    max-width: 32rem;
    min-height: 0;
    height: clamp(43rem, 118vw, 55rem);
    margin: 0 auto;
    justify-self: center;
  }

  .proposal-person img {
    min-height: 0;
    object-position: center bottom;
  }
}

/* Celular */
@media (max-width: 600px) {
  .proposal-person {
    width: min(100%, 27rem);
    height: clamp(37rem, 148vw, 49rem);
  }
}

@media (max-width: 390px) {
  .proposal-person {
    height: 35rem;
  }
}
/* =========================================================
   CORREÇÃO V8 — MOBILE, SOMBRAS E ÍCONES SOCIAIS
   ========================================================= */

/* Sem sombras aplicadas às fotografias ou aos seus contêineres. */
.hero-photo,
.bio-photo,
.proposal-person {
  box-shadow: none !important;
  filter: none !important;
}

.hero-photo img,
.bio-photo img,
.proposal-person img {
  box-shadow: none !important;
  filter: none !important;
  text-shadow: none !important;
}

/* O hover mantém apenas uma ampliação discreta, sem sombra. */
.hero-photo:hover img,
.bio-photo:hover img {
  filter: none !important;
}

.proposal-person:hover img {
  filter: none !important;
  transform: none !important;
}

/*
 * Ícones com a mesma leitura visual da referência:
 * Instagram em gradiente, Facebook azul, WhatsApp verde e TikTok preto.
 */
.social-icon {
  width: 2.15rem;
  height: 2.15rem;
  border: 0;
  color: #fff;
  box-shadow: none !important;
}

.social-icon svg {
  width: 1.3rem;
  height: 1.3rem;
  color: #fff;
}

.social[data-social="instagram"] .social-icon {
  border-radius: .58rem;
  background:
    radial-gradient(circle at 30% 105%, #ffd36b 0 18%, #f77737 29%, #e1306c 52%, #c13584 68%, #833ab4 84%, #405de6 100%);
}

.social[data-social="facebook"] .social-icon {
  border-radius: .38rem;
  background: #1877f2;
}

.social[data-social="whatsapp"] .social-icon {
  border-radius: 50%;
  background: #25d366;
}

.social[data-social="tiktok"] .social-icon {
  position: relative;
  border-radius: 50%;
  background: #090909;
}

/* Pequenos acentos que lembram o ícone oficial sem prejudicar a legibilidade. */
.social[data-social="tiktok"] .social-icon::before,
.social[data-social="tiktok"] .social-icon::after {
  content: "";
  position: absolute;
  width: .38rem;
  height: .38rem;
  border-radius: 50%;
  opacity: .9;
  pointer-events: none;
}

.social[data-social="tiktok"] .social-icon::before {
  left: .34rem;
  bottom: .39rem;
  background: #25f4ee;
}

.social[data-social="tiktok"] .social-icon::after {
  right: .34rem;
  top: .39rem;
  background: #fe2c55;
}

.social:hover .social-icon {
  box-shadow: none !important;
}

/*
 * No mobile a foto do discurso deixa de aparecer.
 * O conteúdo continua com respiro suficiente para a transição laranja.
 */
@media (max-width: 767px) {
  .proposal-person {
    display: none !important;
  }

  .proposal-layout {
    display: block;
  }

  .proposal-content {
    padding-bottom: clamp(7.5rem, 24vw, 10rem);
  }

  .proposals::after {
    bottom: -4.8rem;
    height: 11rem;
  }
}

.support-button[aria-disabled="true"] {
  cursor: pointer;
  opacity: .82;
}

.support-button[aria-disabled="true"]:hover {
  transform: translateY(-2px);
}

