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

:root {
  --pink: #F0427A;
  --raspberry: #C8155A;
  --gold: #D2A14B;
  --rose: #F9C7D8;
  --blush: #FBDAE5;
  --petal: #F6E5FA;
  --violet: #9C3FA8;
  --violet-deep: #6B2379;
  --orchid: #E066E8;
  --ink: #23102E;
  --slate: #4A2E56;
  --muted: #6E5D78;
  --white: #fff;
  --black: #170A1F;
  --line: rgba(35, 16, 46, .12);
  --radius-lg: 32px;
  --radius-md: 20px;
  --shadow: 0 22px 70px rgba(35, 16, 46, .16);
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Poppins", sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.7;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, a { -webkit-tap-highlight-color: transparent; }
button { font: inherit; }

.skip-link {
  position: fixed;
  left: 16px;
  top: -80px;
  z-index: 1000;
  padding: 12px 16px;
  background: var(--white);
  color: var(--ink);
  border-radius: 10px;
}
.skip-link:focus { top: 16px; }

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  background: rgba(35, 16, 46, .72);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255,255,255,.08);
  transition: .3s ease;
}
.site-header.scrolled { background: rgba(27, 12, 36, .94); }

.nav-wrap {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.brand { width: 155px; }
.brand-group {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}
.header-novo-group {
  display: flex;
  align-items: center;
  gap: 10px;
}
.header-novo-logo {
  width: 106px;
  height: 106px;
  object-fit: contain;
  display: block;
}
.header-candidate-number {
  font-size: 1.7rem;
  font-weight: 900;
  letter-spacing: -.03em;
  color: var(--white);
  line-height: 1;
  white-space: nowrap;
}
.brand img { width: 100%; height: 54px; object-fit: contain; object-position: left center; }

.main-nav {
  display: flex;
  align-items: center;
  gap: 26px;
}
.main-nav a {
  color: rgba(255,255,255,.86);
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .02em;
  position: relative;
}
.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -9px;
  width: 100%;
  height: 2px;
  background: var(--pink);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s ease;
}
.main-nav a:hover::after,
.main-nav a.active::after { transform: scaleX(1); }

.menu-toggle {
  display: none;
  border: 0;
  background: transparent;
  width: 46px;
  height: 46px;
  padding: 10px;
  cursor: pointer;
}
.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  margin: 6px 0;
  background: var(--white);
  transition: .25s ease;
}

.hero {
  min-height: 860px;
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
  padding-top: 82px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 75% 20%, rgba(224,102,232,.32), transparent 32%),
    radial-gradient(circle at 12% 88%, rgba(156,63,168,.28), transparent 42%),
    linear-gradient(120deg, #23102E 0%, #4A2260 55%, #7A2D8C 100%);
}
.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(135deg, rgba(255,255,255,.045) 25%, transparent 25%);
  background-size: 90px 90px;
  opacity: .25;
}
.hero-grid {
  min-height: 800px;
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  align-items: center;
  gap: 0;
  position: relative;
  z-index: 1;
}
.hero-copy { max-width: 700px; }
.eyebrow, .section-kicker {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: .72rem;
  font-weight: 700;
}
.eyebrow { color: var(--rose); margin-bottom: 18px; }
.hero-identity {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 6px 0 0;
}
.hero-identity-logo {
  width: min(380px, 82%);
  height: auto;
  margin: 0 0 4px;
  filter: drop-shadow(0 12px 26px rgba(0,0,0,.4));
}
.hero-identity-number {
  margin: 0;
  font-size: clamp(6rem, 12.3vw, 10.9rem);
  font-weight: 900;
  line-height: .84;
  letter-spacing: -.045em;
  background: linear-gradient(120deg, #fff 0%, var(--rose) 26%, var(--pink) 58%, var(--orchid) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 18px 34px rgba(240,66,122,.28));
}
.name-highlight {
  color: var(--pink);
  font-weight: 800;
}
.acolhida-text .name-highlight { color: var(--orchid); }
.footer .name-highlight { color: var(--pink); font-weight: 700; }

.hero-lead-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-top: 32px;
}
.hero-lead-rule {
  display: block;
  width: 58px;
  height: 3px;
  margin-bottom: 20px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--pink), var(--orchid));
}
.hero-lead {
  max-width: 560px;
  margin: 0;
  color: rgba(255,255,255,.92);
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1.72;
  letter-spacing: .012em;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}
.btn {
  min-height: 50px;
  padding: 13px 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-weight: 700;
  font-size: .86rem;
  transition: transform .25s ease, background .25s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--pink); color: var(--white); }
.btn-primary:hover { background: var(--raspberry); }
.btn-ghost { color: var(--white); border: 1px solid rgba(255,255,255,.25); }
.btn-ghost:hover { background: rgba(255,255,255,.08); }
.identity-line {
  margin-top: 42px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: rgba(255,255,255,.7);
  font-size: .78rem;
}
.identity-line span:not(:last-child)::after {
  content: "•";
  margin-left: 8px;
  color: var(--gold);
}

.hero-visual {
  min-height: 760px;
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  align-self: stretch;
}
.hero-photo {
  width: min(620px, 100%);
  height: 740px;
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: visible;
  background: transparent;
  border: 0;
  box-shadow: none;
  border-radius: 0;
}
.hero-photo::before,
.hero-photo::after {
  display: none;
  content: none;
}
.hero-photo img {
  position: relative;
  z-index: 2;
  width: 118%;
  height: 118%;
  object-fit: contain;
  object-position: center bottom;
  filter: drop-shadow(0 30px 34px rgba(0,0,0,.22));
}
.hero-badge {
  position: absolute;
  z-index: 3;
  left: -5px;
  bottom: 55px;
  padding: 16px 20px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(13,13,13,.72);
  backdrop-filter: blur(16px);
  border-radius: 18px;
}
.hero-badge strong {
  display: block;
  font-size: 2.25rem;
  line-height: 1;
  font-weight: 900;
  color: var(--pink);
}
.hero-badge span {
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: rgba(255,255,255,.76);
}

section { scroll-margin-top: 90px; }
.section-light { background: var(--white); }
.section-petal { background: var(--petal); }
.section-dark {
  background:
    radial-gradient(circle at 88% 0%, rgba(224,102,232,.16), transparent 38%),
    radial-gradient(circle at 0% 100%, rgba(156,63,168,.14), transparent 42%),
    var(--ink);
  color: var(--white);
}

.intro { padding: 110px 0; }
.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
  align-items: start;
}
.section-kicker { color: var(--pink); margin-bottom: 12px; }
.section-kicker.light { color: var(--rose); }
h2 {
  margin: 0;
  font-size: clamp(2.2rem, 4vw, 4.3rem);
  line-height: 1.05;
  letter-spacing: -.045em;
}
.intro p { margin: 0 0 16px; color: var(--muted); font-size: 1rem; }
.intro-text-block {
  padding: 8px 0 8px 28px;
  border-left: 4px solid var(--pink);
}
.intro-lead {
  color: var(--ink) !important;
  font-size: 1.22rem !important;
  font-weight: 600;
  line-height: 1.5;
}
@media (max-width: 780px) {
  .intro-text-block { border-left: 0; border-top: 4px solid var(--pink); padding: 20px 0 0; }
}

.acolhida { padding: 120px 0; }
.section-heading { max-width: 760px; margin-bottom: 55px; }
.section-heading.centered { text-align: center; margin-inline: auto; }
.section-heading p { color: rgba(255,255,255,.7); margin: 16px 0 0; }
.section-heading:not(.centered) p { color: var(--muted); }
.proposal-note {
  display: inline-flex;
  margin-top: 20px;
  padding: 8px 13px;
  border-radius: 999px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  font-size: .72rem;
  color: rgba(255,255,255,.68);
}
.acolhida-feature {
  display: grid;
  grid-template-columns: 1.12fr .88fr;
  gap: 45px;
  align-items: center;
}
.acolhida-photo {
  min-height: 620px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  position: relative;
  overflow: visible;
  border-radius: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}
.acolhida-photo img {
  width: 118%;
  height: 660px;
  object-fit: contain;
  object-position: center bottom;
  filter: drop-shadow(0 28px 30px rgba(0,0,0,.26));
}
.acolhida-text p { color: rgba(255,255,255,.75); }
.acolhida-text blockquote {
  margin: 35px 0 0;
  padding: 26px 0 0 25px;
  border-left: 3px solid var(--pink);
  font-size: clamp(1.6rem, 3vw, 2.6rem);
  line-height: 1.15;
  font-weight: 600;
}
.acolhida-text blockquote span { color: var(--pink); }
.pillars {
  margin-top: 70px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}
.pillar {
  min-height: 240px;
  padding: 25px;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 20px;
  background: rgba(255,255,255,.035);
}
.pillar > span, .proposal-card > span {
  color: var(--gold);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .14em;
}
.pillar h3, .proposal-card h3 {
  margin: 24px 0 10px;
  line-height: 1.15;
  font-size: 1.08rem;
}
.pillar p { color: rgba(255,255,255,.62); font-size: .82rem; }

.proposals { padding: 120px 0; }
.proposal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.proposal-card {
  padding: 0;
  min-height: 470px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--white);
  box-shadow: 0 12px 45px rgba(23,28,38,.05);
  overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease;
}
.proposal-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.proposal-image {
  height: 285px;
  width: 100%;
  overflow: hidden;
  background: #eee;
}
.proposal-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.proposal-content {
  padding: 26px 28px 30px;
}
.proposal-card > .proposal-content > span {
  color: var(--pink);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .14em;
}
.proposal-card h3 { font-size: 1.35rem; margin: 12px 0 9px; }
.proposal-card p { color: var(--muted); font-size: .9rem; margin: 0; }
.about-photo {
  max-width: 560px;
  min-height: 650px;
  margin-inline: auto;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  position: relative;
  border-radius: 0;
  background: transparent;
  overflow: visible;
  box-shadow: none;
}
.about-photo img {
  width: 120%;
  height: 650px;
  object-fit: contain;
  object-position: center bottom;
  filter: drop-shadow(0 26px 30px rgba(23,28,38,.18));
}
.about-copy p { color: var(--muted); }
.about-subtitle { font-size: 1.3rem; color: var(--ink) !important; font-weight: 600; }

.topics { padding: 110px 0; }
.topic-band {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  margin-top: 45px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.topic-band span {
  padding: 26px 12px;
  text-align: center;
  font-weight: 700;
  font-size: .86rem;
  border-right: 1px solid var(--line);
}
.topic-band span:last-child { border-right: 0; }

.faq { padding: 120px 0; }
.faq-grid {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 80px;
  align-items: start;
}
.accordion details {
  border-bottom: 1px solid rgba(23,28,38,.15);
}
.accordion summary {
  list-style: none;
  cursor: pointer;
  padding: 23px 45px 23px 0;
  font-weight: 700;
  position: relative;
}
.accordion summary::-webkit-details-marker { display: none; }
.accordion summary::after {
  content: "+";
  position: absolute;
  right: 4px;
  top: 20px;
  color: var(--pink);
  font-size: 1.5rem;
  font-weight: 400;
}
.accordion details[open] summary::after { content: "−"; }
.accordion p { color: var(--muted); margin: 0 0 22px; max-width: 720px; }

.contact { padding: 100px 0; }
.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 70px;
  align-items: center;
}
.contact-copy p { color: rgba(255,255,255,.7); max-width: 650px; }
.contact-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(160px, 1fr));
  gap: 10px;
  margin-top: 28px;
}
.contact-link {
  padding: 15px 17px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 14px;
  color: rgba(255,255,255,.86);
  display: flex;
  justify-content: space-between;
  transition: .25s ease;
}
.contact-link:hover { border-color: var(--pink); background: rgba(240,66,122,.08); }
.candidate-label {
  margin-top: 14px;
  color: rgba(255,255,255,.8);
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: .16em;
}
.contact-mark img {
  width: min(260px, 80%);
  margin: 28px auto 0;
  height: 90px;
  object-fit: contain;
}

.footer {
  background: var(--black);
  color: rgba(255,255,255,.55);
  font-size: .76rem;
}
.footer-inner {
  min-height: 75px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
.footer a:hover { color: var(--white); }

.footer-coalition {
  display: flex;
  align-items: center;
  gap: 16px;
  color: rgba(255,255,255,.78);
  font-weight: 600;
}
.footer-novo-logo {
  width: 84px;
  height: auto;
  display: block;
  flex-shrink: 0;
}
.footer-coalition-text {
  display: flex;
  flex-direction: column;
  gap: 3px;
  text-align: left;
  line-height: 1.3;
}
.footer-coalition-text em {
  font-style: normal;
  font-size: .66rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--pink);
}
.footer-coalition-text strong {
  font-size: .92rem;
  font-weight: 700;
  color: var(--white);
}
.footer-coalition-text small {
  font-size: .72rem;
  font-weight: 500;
  color: rgba(255,255,255,.6);
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 3px;
  text-align: left;
  line-height: 1.3;
}
.footer-contact a {
  font-size: .82rem;
  font-weight: 600;
  color: var(--white);
}
.footer-contact small {
  font-size: .68rem;
  font-weight: 500;
  color: rgba(255,255,255,.55);
}

.back-to-top {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid rgba(23,28,38,.12);
  background: var(--white);
  color: var(--ink);
  box-shadow: var(--shadow);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: .25s ease;
  z-index: 80;
}
.back-to-top.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

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

@media (max-width: 1000px) {
  .hero { min-height: auto; }
  .hero-grid { grid-template-columns: 1fr; padding-top: 70px; padding-bottom: 80px; }
  .hero-copy { text-align: center; margin-inline: auto; }
  .hero-actions, .identity-line { justify-content: center; }
  .hero-identity { align-items: center; }
  .hero-lead-wrap { align-items: center; }
  .hero-visual { min-height: 610px; }
@media (max-width: 780px) {
  .hero-number {
    right: 4%;
    top: 50%;
    font-size: clamp(5.2rem, 20vw, 8rem);
    color: rgba(240,66,122,.10);
  }

  .hero-number {
    right: -38px;
    top: 52%;
    font-size: clamp(4rem, 18vw, 7rem);
    color: rgba(240,66,122,.09);
  }

  .container { width: min(calc(100% - 28px), var(--container)); }
  .nav-wrap { min-height: 72px; }
  .brand { width: 96px; }
  .brand-group { gap: 8px; }
  .header-novo-group { gap: 5px; }
  .header-novo-logo { width: 52px; height: 52px; }
  .header-candidate-number { font-size: 1rem; }
  .menu-toggle { display: block; }
  .main-nav {
    position: absolute;
    left: 14px;
    right: 14px;
    top: calc(100% + 8px);
    padding: 10px;
    display: grid;
    gap: 2px;
    background: rgba(13,13,13,.97);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 18px;
    opacity: 0;
    transform: translateY(-8px);
    pointer-events: none;
    transition: .25s ease;
  }
  .main-nav.open { opacity: 1; transform: translateY(0); pointer-events: auto; }
  .main-nav a { padding: 13px 14px; }
  .main-nav a::after { display: none; }
  .hero { padding-top: 72px; }
  .hero-grid { min-height: auto; gap: 20px; }
  .hero-lead { font-size: 1.02rem; }
  .hero-visual { min-height: 540px; }
  .hero-photo { width: min(500px, 100%); height: 590px; }
  .hero-photo img { width: 120%; height: 120%; }
  .hero-badge { left: 3%; bottom: 22px; }
  .intro, .acolhida, .proposals, .about, .topics, .faq { padding: 80px 0; }
  .intro-grid, .acolhida-feature, .about-grid, .faq-grid, .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .acolhida-photo { min-height: 520px; }
  .acolhida-photo img { width: 120%; height: 560px; }
  .proposal-grid { grid-template-columns: 1fr; }
  .about-photo { max-width: 460px; min-height: 540px; }
  .about-photo img { width: 120%; height: 540px; }
  .contact-actions { grid-template-columns: 1fr; }
}

@media (max-width: 520px) {
  .hero-actions { flex-direction: column; }
  .btn { width: 100%; }
  .identity-line { gap: 5px; font-size: .72rem; }
  .identity-line span:not(:last-child)::after { margin-left: 5px; }
  .pillars { grid-template-columns: 1fr; }
  .topic-band { grid-template-columns: repeat(2, 1fr); }
  .topic-band span:nth-child(2n) { border-right: 0; }
  .topic-band span:nth-child(3) { border-right: 1px solid var(--line); }
  .topic-band span:nth-child(-n+4) { border-bottom: 1px solid var(--line); }
  .footer-inner { flex-direction: column; justify-content: center; padding: 16px 0; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1; transform: none; }
}


/* Diretriz visual: fotografias recortadas são protagonistas.
   Não usar molduras, cards ou caixas limitando a presença das pessoas. */
.hero-photo,
.acolhida-photo,
.about-photo {
  background: transparent;
  border: 0;
}


/* ===== DIRETRIZ DE FOTOGRAFIA — PRESENÇA MÁXIMA ===== */
.hero-visual,
.acolhida-photo,
.about-photo {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: visible;
}

.hero-photo img,
.acolhida-photo img,
.about-photo img {
  display: block;
  max-width: none;
  background: transparent;
  border: 0;
  box-shadow: none;
}

/* A pessoa deve ser o elemento dominante, nunca uma miniatura dentro de um card. */
.hero-photo::before,
.acolhida-photo::before,
.about-photo::before {
  display: none !important;
}

/* Fotos da candidata: protagonistas e apoiadas visualmente na base da seção. */
.hero, .acolhida, .about { overflow: hidden; }
.hero-grid, .acolhida-feature, .about-grid { align-items: end; }
.hero-visual, .hero-photo, .acolhida-photo, .about-photo {
  align-self: end;
  align-items: flex-end;
}
.hero-photo img, .acolhida-photo img, .about-photo img {
  object-position: center bottom;
}
.hero-photo img { width: 128%; height: 128%; max-height: none; }
.acolhida-photo img { width: 128%; height: 700px; max-height: none; }
.about-photo img { width: 130%; height: 700px; max-height: none; }

/* Cards temáticos: a foto ocupa toda a largura do quadro, sem margens internas. */
@media (max-width: 980px) {
  .proposal-grid { grid-template-columns: repeat(2, 1fr); }
  .proposal-image { height: 300px; }
}
@media (max-width: 680px) {
  .proposal-grid { grid-template-columns: 1fr; }
  .proposal-card { min-height: 0; }
  .proposal-image { height: 330px; }
  .hero-photo img { width: 112%; height: 112%; }
  .acolhida-photo img { width: 118%; height: 620px; }
  .about-photo img { width: 120%; height: 620px; }
}


/* =========================================================
   NOVA SEÇÃO "QUEM É" — composição baseada na referência aprovada
   O restante do site permanece com os estilos originais.
   ========================================================= */
.about-reference {
  --ref-pink: #c81e63;
  --ref-pink-light: #f9dce9;
  --ref-burgundy: #74183f;
  --ref-burgundy-dark: #55102f;
  --ref-ink: #191520;
  position: relative;
  overflow: hidden;
  min-height: 820px;
  background:
    radial-gradient(circle at 47% 34%, rgba(255,255,255,.78) 0 2%, rgba(255,255,255,.16) 10%, transparent 27%),
    linear-gradient(112deg, #f8d9e7 0%, #fde9f1 52%, #f8d7e5 100%);
  isolation: isolate;
}

.about-reference-grid {
  position: relative;
  z-index: 3;
  min-height: 820px;
  display: grid;
  grid-template-columns: minmax(480px, .92fr) minmax(520px, 1.08fr);
  align-items: center;
  gap: clamp(30px, 4.5vw, 90px);
}

.about-reference-visual {
  position: relative;
  height: 820px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  isolation: isolate;
}

.about-reference-circle {
  position: absolute;
  width: 720px;
  height: 720px;
  left: 50%;
  bottom: -120px;
  transform: translateX(-50%);
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 30%, #8e2755 0%, var(--ref-burgundy) 48%, var(--ref-burgundy-dark) 100%);
  box-shadow:
    0 0 0 2px rgba(200,30,99,.38),
    0 0 0 13px rgba(255,255,255,.15);
  z-index: 1;
}

.about-reference-circle::after {
  content: "";
  position: absolute;
  inset: 13px;
  border: 1px solid rgba(255,177,210,.58);
  border-radius: inherit;
}

.about-reference-glow {
  display: none;
}

.about-reference-glow::before,
.about-reference-glow::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: #fff;
  box-shadow: 0 0 24px rgba(255,255,255,.9);
}

.about-reference-glow::before {
  width: 2px;
  height: 72px;
}

.about-reference-glow::after {
  width: 72px;
  height: 2px;
}

.about-reference-photo {
  position: absolute;
  z-index: 4;
  bottom: 0;
  left: 50%;
  width: min(610px, 92%);
  height: 780px;
  transform: translateX(-50%);
  object-fit: contain;
  object-position: center bottom;
  filter: drop-shadow(0 26px 30px rgba(67, 11, 39, .18));
}

.about-reference-signature {
  display: none;
}

.about-reference-orbit {
  display: none;
}

.about-reference-orbit-a {
  width: 770px;
  height: 770px;
  left: -170px;
  bottom: -160px;
}

.about-reference-orbit-b {
  width: 800px;
  height: 800px;
  left: -140px;
  bottom: -130px;
  border-color: rgba(255,255,255,.55);
}

.about-reference-content {
  position: relative;
  z-index: 5;
  padding: 85px 0 115px;
  max-width: 720px;
}

.about-reference-kicker {
  display: block;
  margin-bottom: 22px;
  color: var(--ref-pink);
  font-size: .86rem;
  font-weight: 900;
  letter-spacing: .28em;
}

.about-reference-content h2 {
  margin: 0;
  color: var(--ref-ink);
  line-height: .86;
  letter-spacing: -.055em;
}

.about-reference-first-name {
  display: block;
  font-family: "Poppins", sans-serif;
  font-size: clamp(3.7rem, 5.3vw, 6.4rem);
  font-weight: 700;
}

.about-reference-last-name {
  display: block;
  margin-top: 2px;
  color: var(--ref-burgundy);
  font-family: "Poppins", sans-serif;
  font-size: clamp(4.8rem, 7.3vw, 8.6rem);
  font-weight: 900;
  letter-spacing: -.075em;
}

.about-reference-divider {
  display: flex;
  align-items: center;
  gap: 18px;
  margin: 25px 0 28px;
}

.about-reference-divider span {
  display: block;
  width: 285px;
  max-width: 48%;
  height: 3px;
  border-radius: 999px;
  background: var(--ref-pink);
}

.about-reference-divider strong {
  color: var(--ref-pink);
  font-size: .88rem;
  font-weight: 800;
  letter-spacing: .08em;
  white-space: nowrap;
}

.about-reference-lead {
  max-width: 610px;
  margin: 0 0 19px;
  color: var(--ref-ink);
  font-size: clamp(1.15rem, 1.55vw, 1.42rem);
  line-height: 1.38;
  font-weight: 700;
}

.about-reference-text {
  max-width: 655px;
  margin: 0;
  color: #3f3a43;
  font-size: 1rem;
  line-height: 1.68;
}

.about-reference-values {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 45px;
}

.about-reference-value {
  min-height: 125px;
  padding: 16px 15px 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 10px;
}

.about-reference-value + .about-reference-value {
}

.about-reference-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(145deg, #d52e72, #a70f4d);
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-size: 28px;
  line-height: 1;
  box-shadow: 0 8px 20px rgba(125,24,63,.16);
}

.about-reference-value strong {
  color: var(--ref-ink);
  font-size: .77rem;
  line-height: 1.28;
}

.about-reference-wave {
  display: none;
}

@media (max-width: 1100px) {
  .about-reference-grid {
    grid-template-columns: minmax(420px, .9fr) minmax(430px, 1.1fr);
    gap: 20px;
  }

  .about-reference-photo {
    width: 560px;
  }

  .about-reference-circle {
    width: 640px;
    height: 640px;
  }

  .about-reference-divider strong {
    font-size: .75rem;
  }
}

@media (max-width: 900px) {
  .about-reference {
    min-height: auto;
  }

  .about-reference-grid {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 0;
  }

  .about-reference-visual {
    height: 620px;
    order: 1;
  }

  .about-reference-photo {
    width: min(530px, 90%);
    height: 610px;
  }

  .about-reference-circle {
    width: 570px;
    height: 570px;
    bottom: -110px;
  }

  .about-reference-content {
    order: 2;
    padding: 25px 0 110px;
  }

  .about-reference-signature {
  display: none;
}

@media (max-width: 560px) {
  .about-reference-visual {
    height: 520px;
  }

  .about-reference-photo {
    width: 105%;
    height: 520px;
  }

  .about-reference-circle {
    width: 460px;
    height: 460px;
    bottom: -75px;
  }

  .about-reference-first-name {
    font-size: 3rem;
  }

  .about-reference-last-name {
    font-size: 4.1rem;
  }

  .about-reference-divider {
    align-items: flex-start;
    flex-direction: column;
    gap: 9px;
  }

  .about-reference-divider span {
    max-width: none;
    width: 100px;
  }

  .about-reference-divider strong {
    white-space: normal;
  }

  .about-reference-values {
    grid-template-columns: 1fr 1fr;
  }

  .about-reference-value {
    min-height: 115px;
    padding-inline: 8px;
  }

  .about-reference-icon {
    width: 42px;
    height: 42px;
  }

  .about-reference-wave {
  display: none;
}

@media (prefers-reduced-motion: reduce) {
  .about-reference *,
  .about-reference *::before,
  .about-reference *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
}

/* Ajuste final: seção "Quem é" sem foto da candidata */
.about-reference-photo {
  display: none !important;
}
.about-reference-visual {
  min-height: 1px;
}


/* =========================================================
   QUEM É — layout informativo alinhado ao início do site
   ========================================================= */
.about-info-layout {
  position: relative;
  overflow: hidden;
  padding: 100px 0 110px;
  background:
    radial-gradient(circle at 12% 50%, rgba(205, 25, 92, .08), transparent 30%),
    #fff;
}

.about-info-grid {
  display: grid;
  grid-template-columns: minmax(390px, .86fr) minmax(500px, 1.14fr);
  align-items: center;
  gap: clamp(55px, 7vw, 110px);
}

.about-info-photo {
  position: relative;
  min-height: 650px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.about-info-photo-bg {
  position: absolute;
  width: min(570px, 100%);
  aspect-ratio: 1 / 1;
  left: 50%;
  bottom: 10px;
  transform: translateX(-50%);
  border-radius: 50%;
  background: linear-gradient(145deg, #8b2451, #641338);
  box-shadow: 0 24px 55px rgba(92, 18, 55, .16);
}

.about-info-photo-bg::after {
  content: "";
  position: absolute;
  inset: 15px;
  border: 1px solid rgba(255,255,255,.28);
  border-radius: 50%;
}

.about-info-photo img {
  position: relative;
  z-index: 2;
  width: min(570px, 100%);
  height: 650px;
  object-fit: contain;
  object-position: center bottom;
  filter: drop-shadow(0 20px 28px rgba(60, 10, 35, .16));
}

.about-info-number {
  position: absolute;
  z-index: 1;
  left: 0;
  top: 20px;
  color: rgba(125, 24, 63, .08);
  font-size: clamp(90px, 12vw, 165px);
  font-weight: 900;
  letter-spacing: -.08em;
  line-height: .8;
}

.about-info-content {
  max-width: 690px;
}

.about-info-content h2 {
  margin: 0;
  color: #171c26;
  font-size: clamp(2.8rem, 5vw, 5.2rem);
  line-height: .98;
  letter-spacing: -.055em;
}

.about-info-lead {
  margin: 18px 0 0;
  color: #c8155a;
  font-size: clamp(1.15rem, 1.7vw, 1.45rem);
  line-height: 1.4;
  font-weight: 700;
}

.about-info-rule {
  width: 90px;
  height: 4px;
  margin: 24px 0;
  border-radius: 999px;
  background: #f0427a;
}

.about-info-content > p:not(.eyebrow):not(.about-info-lead) {
  color: #565d6b;
  font-size: 1rem;
  line-height: 1.72;
  margin: 0 0 16px;
}

.about-info-content > p strong {
  color: #252936;
}

.about-info-points {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin-top: 30px;
  border-top: 1px solid rgba(125,24,63,.16);
}

.about-info-points div {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 17px 12px 17px 0;
  color: #252936;
}

.about-info-points div:nth-child(odd) {
  border-right: 1px solid rgba(125,24,63,.16);
  padding-right: 20px;
}

.about-info-points div:nth-child(n+3) {
  border-top: 1px solid rgba(125,24,63,.16);
}

.about-info-points span {
  color: #c8155a;
  font-size: .75rem;
  font-weight: 900;
  letter-spacing: .08em;
}

.about-info-points strong {
  font-size: .86rem;
}

@media (max-width: 900px) {
  .about-info-layout {
    padding: 65px 0 80px;
  }

  .about-info-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .about-info-photo {
    min-height: 520px;
  }

  .about-info-photo img {
    height: 520px;
  }

  .about-info-photo-bg {
    width: min(480px, 100%);
  }

  .about-info-content h2 {
    font-size: 3.2rem;
  }
}

@media (max-width: 560px) {
  .about-info-photo {
    min-height: 440px;
  }

  .about-info-photo img {
    height: 440px;
    width: 105%;
  }

  .about-info-photo-bg {
    width: 390px;
  }

  .about-info-points {
    grid-template-columns: 1fr;
  }

  .about-info-points div:nth-child(odd) {
    border-right: 0;
    padding-right: 12px;
  }

  .about-info-points div:nth-child(n+2) {
    border-top: 1px solid rgba(125,24,63,.16);
  }

  .about-info-content h2 {
    font-size: 2.65rem;
  }
}


/* QUEM É — versão informativa sem foto */
.about-info-grid-no-photo {
  display: block;
  max-width: 1080px;
}

.about-info-grid-no-photo .about-info-content {
  max-width: 980px;
  margin: 0 auto;
}

.about-info-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 58px;
  row-gap: 0;
}

.about-info-intro p {
  color: #565d6b;
  font-size: 1rem;
  line-height: 1.75;
  margin: 0 0 18px;
}

.about-info-intro p:first-child {
  grid-column: 1 / -1;
  font-size: 1.16rem;
  color: #252936;
  margin-bottom: 24px;
}

.about-info-highlight {
  margin: 28px 0 34px;
  padding: 25px 30px;
  border-left: 5px solid #f0427a;
  background: linear-gradient(90deg, rgba(240,66,122,.08), rgba(240,66,122,.025));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.about-info-highlight span {
  flex: 0 0 auto;
  color: #c8155a;
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .18em;
}

.about-info-highlight strong {
  color: #252936;
  font-size: 1.1rem;
  line-height: 1.4;
}

.about-info-points-wide {
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(125,24,63,.16);
  border-bottom: 1px solid rgba(125,24,63,.16);
}

.about-info-points-wide div {
  min-height: 125px;
  padding: 22px 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 5px;
  border-right: 1px solid rgba(125,24,63,.16);
}

.about-info-points-wide div:last-child {
  border-right: 0;
}

.about-info-points-wide div:nth-child(n+3) {
  border-top: 0;
}

.about-info-points-wide span {
  font-size: .72rem;
}

.about-info-points-wide strong {
  font-size: .88rem;
  line-height: 1.3;
}

.about-info-points-wide small {
  color: #747b88;
  font-size: .75rem;
  line-height: 1.35;
}

@media (max-width: 900px) {
  .about-info-grid-no-photo .about-info-content {
    max-width: 100%;
  }

  .about-info-intro {
    grid-template-columns: 1fr;
    column-gap: 0;
  }

  .about-info-highlight {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .about-info-points-wide {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-info-points-wide div:nth-child(2) {
    border-right: 0;
  }

  .about-info-points-wide div:nth-child(n+3) {
    border-top: 1px solid rgba(125,24,63,.16);
  }
}

@media (max-width: 560px) {
  .about-info-points-wide {
    grid-template-columns: 1fr;
  }

  .about-info-points-wide div,
  .about-info-points-wide div:nth-child(n+3) {
    border-right: 0;
    border-top: 1px solid rgba(125,24,63,.16);
  }

  .about-info-points-wide div:first-child {
    border-top: 0;
  }
}


/* =========================================================
   QUEM É — cards informativos no mesmo padrão visual
   dos blocos de conteúdo do site
   ========================================================= */
.about-blocks-layout {
  position: relative;
  overflow: hidden;
  padding: 105px 0 115px;
  background: #151b25;
  color: #fff;
}

.about-blocks-layout::before {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  right: -260px;
  top: -280px;
  background: rgba(240, 66, 122, .08);
  pointer-events: none;
}

.about-blocks-layout .container {
  position: relative;
  z-index: 1;
}

.about-blocks-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, .7fr);
  align-items: end;
  gap: 60px;
  margin-bottom: 46px;
}

.about-blocks-heading .eyebrow {
  margin-bottom: 14px;
}

.about-blocks-heading h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(3rem, 5vw, 5rem);
  line-height: .95;
  letter-spacing: -.055em;
}

.about-blocks-lead {
  max-width: 450px;
  margin: 0 0 4px auto;
  color: #c7ccd5;
  font-size: 1.12rem;
  line-height: 1.55;
}

.about-blocks-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}

.about-card {
  position: relative;
  min-height: 295px;
  padding: 28px 24px 30px;
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 18px;
  background: #202631;
  box-shadow: 0 12px 30px rgba(0,0,0,.10);
  transition: transform .25s ease, border-color .25s ease, background .25s ease;
}

.about-card:hover {
  transform: translateY(-5px);
  border-color: rgba(240,66,122,.45);
  background: #232a35;
}

.about-card-number {
  display: block;
  margin-bottom: 40px;
  color: #f1b43c;
  font-size: .76rem;
  font-weight: 900;
  letter-spacing: .12em;
}

.about-card h3 {
  margin: 0 0 15px;
  color: #fff;
  font-size: 1.05rem;
  line-height: 1.08;
  letter-spacing: -.02em;
}

.about-card p {
  margin: 0;
  color: #bfc5ce;
  font-size: .83rem;
  line-height: 1.65;
}

.about-card-highlight {
  border-color: rgba(240,66,122,.30);
  background: linear-gradient(145deg, #252a36, #202631);
}

.about-card-highlight h3 {
  color: #ff4380;
}

@media (max-width: 1100px) {
  .about-blocks-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .about-card {
    min-height: 260px;
  }

  .about-card:nth-child(4),
  .about-card:nth-child(5) {
    grid-column: span 1;
  }
}

@media (max-width: 800px) {
  .about-blocks-layout {
    padding: 75px 0 85px;
  }

  .about-blocks-heading {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-bottom: 32px;
  }

  .about-blocks-lead {
    margin: 0;
  }

  .about-blocks-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-card {
    min-height: 240px;
  }
}

@media (max-width: 540px) {
  .about-blocks-grid {
    grid-template-columns: 1fr;
  }

  .about-card {
    min-height: auto;
  }

  .about-card-number {
    margin-bottom: 28px;
  }

  .about-blocks-heading h2 {
    font-size: 2.8rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .about-card {
    transition: none;
  }

  .about-card:hover {
    transform: none;
  }
}


/* QUEM É — layout baseado na referência enviada pelo cliente */
.about-upload-layout{position:relative;min-height:760px;overflow:hidden;background:#f7dce7;color:#171823;isolation:isolate}
.about-upload-layout::before{content:"";position:absolute;inset:0;z-index:-3;background:radial-gradient(circle at 78% 24%,rgba(255,255,255,.30),transparent 24%),linear-gradient(135deg,#f8dfe9 0%,#f6d6e4 52%,#f8dce8 100%)}
.about-upload-bg-shape{position:absolute;z-index:-2;width:700px;height:700px;left:-210px;top:85px;border-radius:50%;background:#741744}
.about-upload-bg-shape::after{content:"";position:absolute;inset:17px;border:2px solid rgba(255,151,190,.55);border-radius:50%;box-shadow:0 0 0 9px rgba(255,190,213,.18)}
.about-upload-circle{position:absolute;z-index:-2;width:610px;height:610px;right:-80px;top:-190px;border-radius:50%;background:rgba(255,255,255,.18)}
.about-upload-inner{min-height:760px;display:grid;grid-template-columns:minmax(420px,.82fr) minmax(560px,1.18fr);align-items:center;gap:50px;position:relative}
.about-upload-photo{position:relative;align-self:end;height:720px;display:flex;align-items:flex-end;justify-content:center}
.about-upload-photo img{position:relative;z-index:2;width:min(530px,100%);height:720px;object-fit:contain;object-position:center bottom;filter:drop-shadow(0 22px 22px rgba(48,8,29,.18))}
.about-upload-content{max-width:710px;padding:80px 0 65px}
.about-upload-eyebrow{margin:0 0 12px;color:#cf1d62;font-size:.82rem;font-weight:900;letter-spacing:.18em}
.about-upload-content h2{margin:0;line-height:.88;letter-spacing:-.045em}
.about-upload-content h2 span{display:block;color:#50152e;font-family:Georgia,"Times New Roman",serif;font-size:clamp(3rem,4.5vw,4.7rem);font-weight:500}
.about-upload-content h2 strong{display:block;color:#c81459;font-size:clamp(4.5rem,7vw,7rem);font-weight:900;letter-spacing:-.06em}
.about-upload-meta{display:flex;align-items:center;gap:18px;margin:18px 0 30px;color:#c7195b}
.about-upload-meta span{display:block;width:275px;height:2px;background:#df326f}
.about-upload-meta b{white-space:nowrap;font-size:.94rem;letter-spacing:.05em}
.about-upload-content h3{margin:0 0 18px;color:#171823;font-size:1.32rem;line-height:1.35;letter-spacing:-.02em}
.about-upload-text{max-width:625px;margin:0;color:#262b35;font-size:1rem;line-height:1.58}
.about-upload-values{display:grid;grid-template-columns:repeat(4,1fr);margin-top:28px;max-width:650px}
.about-upload-value{min-height:105px;padding:0 18px;border-right:1px solid rgba(159,26,83,.25);text-align:center;display:flex;flex-direction:column;align-items:center}
.about-upload-value:first-child{padding-left:0}.about-upload-value:last-child{border-right:0}
.value-icon{width:62px;height:62px;margin-bottom:9px;display:grid;place-items:center;border-radius:50%;background:#99154f;color:#fff;font-size:1.8rem;line-height:1}
.about-upload-value strong{color:#171823;font-size:.76rem;line-height:1.25}.about-upload-value small{color:#171823;font-size:.73rem;line-height:1.3}
@media(max-width:1050px){.about-upload-inner{grid-template-columns:minmax(330px,.72fr) minmax(500px,1.28fr);gap:20px}.about-upload-photo{height:640px}.about-upload-photo img{height:640px}.about-upload-bg-shape{width:620px;height:620px;left:-270px}.about-upload-meta span{width:180px}}
@media(max-width:800px){.about-upload-layout{min-height:0}.about-upload-inner{min-height:0;grid-template-columns:1fr;padding-top:55px}.about-upload-photo{height:470px;order:2}.about-upload-photo img{height:470px}.about-upload-content{order:1;padding:0}.about-upload-bg-shape{width:500px;height:500px;left:50%;top:360px;transform:translateX(-50%)}.about-upload-values{max-width:none}}
@media(max-width:560px){.about-upload-inner{padding:45px 20px 0}.about-upload-content h2 span{font-size:2.7rem}.about-upload-content h2 strong{font-size:4.1rem}.about-upload-meta{gap:10px;flex-wrap:wrap}.about-upload-meta span{width:80px}.about-upload-meta b{font-size:.72rem}.about-upload-content h3{font-size:1.08rem}.about-upload-text{font-size:.92rem}.about-upload-values{grid-template-columns:repeat(2,1fr);row-gap:22px}.about-upload-value:nth-child(2){border-right:0}.about-upload-value:nth-child(3),.about-upload-value:nth-child(4){border-top:1px solid rgba(159,26,83,.25);padding-top:20px}.about-upload-photo{height:430px}.about-upload-photo img{height:430px}}


/* =========================================================
   QUEM É — arte fornecida pelo cliente
   A seção anterior é substituída integralmente pela imagem,
   preservando exatamente a composição enviada.
   ========================================================= */
.about-image-layout {
  width: 100%;
  margin: 0;
  padding: 0;
  overflow: hidden;
  background: #f2d9f4;
  line-height: 0;
}

.about-image-frame {
  width: 100%;
  margin: 0;
  padding: 0;
  overflow: hidden;
}

.about-image-frame img {
  display: block;
  width: 100%;
  height: auto;
  max-width: none;
  margin: 0;
  padding: 0;
  border: 0;
}

@media (max-width: 700px) {
  .about-image-frame {
    overflow-x: hidden;
  }

  .about-image-frame img {
    width: 100%;
    height: auto;
  }
}
