/* =========================================================
   EDSON WELTEN 30.222 | CSS
   Paleta oficial da campanha: azul royal #002580, verde #019642,
   amarelo #FFCB01, azul marinho #00164E (base escura)
   ========================================================= */

:root {
  --azul-petroleo: #002580;
  --azul-petroleo-escuro: #00164E;
  --azul-petroleo-claro: #1c3f96;
  --amarelo: #FFCB01;
  --amarelo-claro: #ffe066;
  --verde: #019642;
  --verde-claro: #1fae54;
  --laranja: #002580;
  --laranja-claro: #1c3f96;
  --branco: #ffffff;
  --off-white: #f6f7f9;
  --cinza-texto: #4a5568;
  --cinza-escuro: #1a1a1a;

  --font-titulo: 'Poppins', -apple-system, sans-serif;
  --font-texto: 'Poppins', -apple-system, sans-serif;

  --radius: 20px;
  --radius-sm: 14px;
  --shadow-soft: 0 2px 8px rgba(0, 37, 128, 0.06), 0 12px 28px -8px rgba(0, 37, 128, 0.14);
  --shadow-strong: 0 8px 16px -4px rgba(0, 37, 128, 0.12), 0 28px 56px -16px rgba(0, 37, 128, 0.3);
  --shadow-glow-amarelo: 0 10px 34px rgba(255, 203, 1, 0.35);
  --shadow-glow-verde: 0 10px 30px rgba(1, 150, 66, 0.4);
  --noise: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

* { box-sizing: border-box; margin: 0; padding: 0; }

/* ============ PLACEHOLDER DE FOTO (temporário, para localizar os espaços) ============ */
.photo-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  color: #fff;
  font-weight: 800;
  font-size: 1.1rem;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: 3px dashed #fff;
  border-radius: var(--radius);
  background: repeating-linear-gradient(45deg, #ff2fb0, #ff2fb0 12px, #ff6fc7 12px, #ff6fc7 24px);
  text-shadow: 0 1px 3px rgba(0,0,0,0.4);
}
.photo-placeholder span {
  display: block;
  font-weight: 600;
  font-size: 0.7rem;
  letter-spacing: 0.5px;
  text-transform: none;
  opacity: 0.9;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  width: 100%;
}

body {
  font-family: var(--font-texto);
  color: var(--cinza-escuro);
  background: var(--branco);
  overflow-x: hidden;
  width: 100%;
  position: relative;
  font-display: swap;
}

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

.container {
  width: 100%;
  max-width: 560px;
  margin: 0 auto;
  padding: 0 24px;
}

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

h1, h2, h3 { font-family: var(--font-titulo); line-height: 1.15; }

.section { padding: 70px 0; position: relative; }
@media (min-width: 600px) {
  .section { padding: 100px 0; }
}

.section-kicker {
  display: flex;
  width: fit-content;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-size: 0.72rem;
  color: var(--azul-petroleo);
  background: rgba(0, 37, 128, 0.07);
  padding: 7px 16px;
  border-radius: 50px;
  margin: 0 auto 16px;
}
.section-kicker::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--amarelo);
  flex-shrink: 0;
}
.section-kicker.light { color: var(--amarelo); background: rgba(255, 203, 1, 0.12); }
.section-kicker.light::before { background: var(--branco); }

.section-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  text-align: center;
  color: var(--azul-petroleo);
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}
.section-title.light { color: var(--branco); }

.section-lead {
  max-width: 700px;
  margin: 0 auto 50px;
  text-align: center;
  color: var(--cinza-texto);
  font-size: 1.1rem;
  line-height: 1.7;
}
.section-lead.center { max-width: 640px; }
.section-lead.light { color: rgba(255,255,255,0.85); }

/* ============ BOTÕES ============ */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  cursor: pointer;
  border: none;
  overflow: hidden;
  isolation: isolate;
}
.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 30%, rgba(255,255,255,0.35) 48%, rgba(255,255,255,0.35) 52%, transparent 70%);
  transform: translateX(-100%);
  transition: transform 0.6s ease;
  z-index: 1;
  pointer-events: none;
}
.btn:hover::before { transform: translateX(100%); }
.btn:hover { transform: translateY(-3px); }
.hero-actions .btn, .contato-box .btn { width: 100%; justify-content: center; }
@media (min-width: 600px) {
  .hero-actions .btn, .contato-box .btn { width: auto; }
}

.btn-whatsapp {
  background: linear-gradient(135deg, var(--verde), var(--verde-claro));
  color: var(--branco);
  box-shadow: 0 10px 25px rgba(1, 150, 66, 0.4);
}
.btn-whatsapp:hover { box-shadow: 0 14px 32px rgba(1, 150, 66, 0.55); }

.btn-ghost {
  background: transparent;
  color: var(--amarelo);
  border: 2px solid var(--amarelo);
}
.btn-ghost:hover { background: rgba(255,203,1,0.12); border-color: var(--amarelo-claro); color: var(--amarelo-claro); }

.btn-large { padding: 20px 44px; font-size: 1.15rem; }

.pulse { position: relative; }
.pulse::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50px;
  box-shadow: 0 0 0 0 rgba(1, 150, 66, 0.6);
  animation: pulseRing 2.2s infinite;
  pointer-events: none;
}
@keyframes pulseRing {
  0% { box-shadow: 0 0 0 0 rgba(1, 150, 66, 0.55); }
  70% { box-shadow: 0 0 0 18px rgba(1, 150, 66, 0); }
  100% { box-shadow: 0 0 0 0 rgba(1, 150, 66, 0); }
}

/* ============ HEADER ============ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(0, 37, 128, 0.0);
  transition: background 0.35s ease, box-shadow 0.35s ease;
}
.site-header.scrolled {
  background: rgba(0, 22, 78, 0.92);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}
.header-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 12px;
  padding-bottom: 12px;
}
.brand-logo {
  height: 34px;
  width: auto;
  display: block;
  margin-left: 16px;
}

.main-nav {
  position: fixed;
  top: 0; right: -100%;
  height: 100vh;
  width: 280px;
  max-width: 80vw;
  background: var(--azul-petroleo-escuro);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 22px;
  padding: 40px;
  transition: right 0.35s ease;
  z-index: 1001;
}
.main-nav.open { right: 0; }
.main-nav a:not(.nav-cta) {
  position: relative;
  color: var(--branco);
  font-weight: 600;
  font-size: 0.92rem;
  opacity: 0.9;
  transition: opacity 0.2s, color 0.2s;
}
.main-nav a:not(.nav-cta)::after {
  content: '';
  position: absolute;
  left: 0; bottom: -4px;
  width: 0;
  height: 2px;
  background: var(--amarelo);
  transition: width 0.3s ease;
}
.main-nav a:not(.nav-cta):hover { opacity: 1; color: var(--amarelo); }
.main-nav a:not(.nav-cta):hover::after { width: 100%; }
.nav-cta {
  background: var(--laranja);
  padding: 10px 20px;
  border-radius: 50px;
  color: var(--branco) !important;
}
.nav-cta:hover { color: var(--branco) !important; background: var(--laranja-claro); }

.nav-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  width: 26px; height: 3px;
  background: var(--branco);
  border-radius: 2px;
}

.urna-badge {
  position: absolute;
  top: 100%;
  left: 44px;
  background: var(--amarelo);
  color: var(--azul-petroleo);
  padding: 8px 22px;
  border-radius: 0 0 14px 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1.1;
  box-shadow: 0 6px 16px rgba(0,0,0,0.2);
}
.urna-label { font-size: 0.7rem; font-weight: 800; letter-spacing: 1.5px; text-transform: uppercase; }
.urna-number { font-size: 1.4rem; font-weight: 800; font-family: var(--font-titulo); }

/* ============ FUNDO COM FOTO (compartilhado: usado no Legado) ============ */
.hero-bg {
  position: absolute;
  inset: -10% -5%;
  z-index: 0;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,22,78,0.35) 0%, rgba(0,22,78,0.85) 100%);
  z-index: 1;
}
.hero-overlay::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: var(--noise);
  opacity: 0.05;
  mix-blend-mode: overlay;
  pointer-events: none;
}

/* ============ HERO ============ */
.hero {
  position: relative;
  background: var(--azul-petroleo-escuro);
  padding: 54px 0 60px;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: var(--noise);
  opacity: 0.04;
  mix-blend-mode: overlay;
  pointer-events: none;
}

.hero-card {
  position: relative;
  padding-top: 0;
}

.hero-photo-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 1744 / 3101;
  border-radius: 0;
  overflow: hidden;
  margin-top: 4px;
}
.hero-photo-frame > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.hero-photo-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg,
    rgba(0,22,78,1) 0%,
    rgba(0,22,78,1) 8%,
    rgba(0,22,78,0.85) 18%,
    rgba(0,22,78,0.45) 32%,
    rgba(0,22,78,0.05) 46%,
    transparent 55%);
  pointer-events: none;
}
.hero-bg-placeholder {
  width: 100%; height: 100%;
  border-radius: 0;
}
.hero-bg-placeholder:not(.photo-placeholder) {
  background:
    radial-gradient(circle at 30% 20%, rgba(255,203,1,0.15), transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(1,150,66,0.2), transparent 50%),
    linear-gradient(160deg, var(--azul-petroleo) 0%, var(--azul-petroleo-escuro) 100%);
}

.hero-text {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  z-index: 2;
  padding: 22px 22px 14px;
  text-align: center;
}
.hero-kicker {
  color: rgba(255,255,255,0.7);
  font-weight: 600;
  letter-spacing: 0.5px;
  font-size: 0.85rem;
  margin-bottom: 6px;
}
.hero-logo {
  height: clamp(56px, 14vw, 78px);
  width: auto;
  margin: 0 auto 16px;
  filter: drop-shadow(0 4px 14px rgba(0,0,0,0.4));
}
.hero-slogan {
  font-size: 1rem;
  color: rgba(255,255,255,0.9);
  max-width: 340px;
  margin: 0 auto 22px;
  line-height: 1.5;
  text-shadow: 0 1px 6px rgba(0,0,0,0.35);
}

.hero-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
@media (min-width: 600px) {
  .hero-actions { flex-direction: row; flex-wrap: wrap; justify-content: center; gap: 18px; }
}

.scroll-cue {
  width: 26px; height: 42px;
  margin: 26px auto 0;
  border: 2px solid rgba(255,203,1,0.55);
  border-radius: 20px;
  position: relative;
}
.scroll-cue span {
  position: absolute;
  top: 8px; left: 50%;
  width: 5px; height: 5px;
  background: var(--amarelo);
  border-radius: 50%;
  transform: translateX(-50%);
  animation: scrollCue 1.6s infinite;
}
@keyframes scrollCue {
  0% { opacity: 1; top: 8px; }
  100% { opacity: 0; top: 24px; }
}

/* ============ BIOGRAFIA / TIMELINE ============ */
.bio { background: var(--off-white); }

.bio-photo {
  width: 100%;
  max-width: 320px;
  aspect-ratio: 4 / 5;
  margin: 40px auto 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}
.bio-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.timeline-photo {
  width: 100%;
  aspect-ratio: 16 / 10;
  margin-top: 14px;
  font-size: 0.85rem;
}

.timeline {
  position: relative;
  max-width: 900px;
  margin: 60px auto 0;
  padding-left: 24px;
}
.timeline-line {
  position: absolute;
  left: 10px; top: 0;
  width: 3px;
  height: 100%;
  background: rgba(0,37,128,0.12);
}
.timeline-line::after {
  content: '';
  position: absolute;
  left: 0; top: 0;
  width: 100%;
  height: var(--progress, 0%);
  background: linear-gradient(180deg, var(--verde), var(--amarelo));
  transition: height 0.1s linear;
}
.timeline-item {
  position: relative;
  padding: 0 0 40px 22px;
}
.timeline-dot {
  position: absolute;
  left: -32px; top: 4px;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--branco);
  border: 4px solid var(--verde);
  box-shadow: 0 0 0 4px rgba(1,150,66,0.12);
  z-index: 2;
  transition: box-shadow 0.3s ease;
}
.timeline-item:hover .timeline-dot { box-shadow: 0 0 0 6px rgba(1,150,66,0.2); }
.timeline-item-highlight .timeline-dot { box-shadow: 0 0 0 5px rgba(255,203,1,0.25); }
@media (min-width: 600px) {
  .timeline { padding-left: 40px; }
  .timeline-item { padding: 0 0 46px 30px; }
  .timeline-dot { left: -40px; }
}
.timeline-item-highlight .timeline-dot { border-color: var(--laranja); }
.timeline-year {
  display: inline-block;
  font-family: var(--font-titulo);
  font-weight: 700;
  color: var(--laranja);
  font-size: 1rem;
  margin-bottom: 6px;
}
.timeline-content {
  background: var(--branco);
  padding: 20px 24px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}
.timeline-content h3 {
  font-size: 1.15rem;
  color: var(--azul-petroleo);
  margin-bottom: 8px;
}
.timeline-content p { color: var(--cinza-texto); line-height: 1.6; font-size: 0.96rem; }
.timeline-item-highlight .timeline-content {
  border: 2px solid var(--amarelo);
  background: linear-gradient(135deg, #fff, #fffaf0);
}

.formacao { margin-top: 70px; text-align: center; }
.formacao h3 {
  color: var(--azul-petroleo);
  font-size: 1.5rem;
  margin-bottom: 30px;
}
.formacao-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}
.formacao-item {
  text-align: left;
  background: var(--branco);
  padding: 26px 20px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  border-top: 4px solid var(--verde);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.formacao-item:hover { transform: translateY(-6px); box-shadow: var(--shadow-strong); }
.formacao-item span {
  display: block;
  font-weight: 800;
  color: var(--laranja);
  text-transform: uppercase;
  font-size: 0.78rem;
  letter-spacing: 1px;
  margin-bottom: 8px;
}
.formacao-item p { color: var(--cinza-texto); }

/* ============ NÚMEROS ============ */
.numeros {
  position: relative;
  background: linear-gradient(160deg, var(--azul-petroleo), var(--azul-petroleo-escuro));
  border-top: 3px solid var(--amarelo);
  border-bottom: 3px solid var(--amarelo);
}
.numeros::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: var(--noise);
  opacity: 0.05;
  mix-blend-mode: overlay;
  pointer-events: none;
  z-index: 0;
}
.numeros .container { position: relative; z-index: 1; }
.numeros-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 24px;
  margin-top: 50px;
}
@media (min-width: 460px) {
  .numeros-grid > .numero-card:last-child {
    grid-column: 1 / -1;
    max-width: calc(50% - 12px);
    margin: 0 auto;
  }
}
.numero-card {
  text-align: center;
  padding: 34px 16px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,203,1,0.25);
  border-radius: var(--radius);
  backdrop-filter: blur(8px);
  transition: transform 0.3s ease, background 0.3s ease, border-color 0.3s ease;
}
.numero-card:hover {
  transform: translateY(-6px);
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,203,1,0.55);
}
.numero-card strong {
  display: inline-block;
  font-family: var(--font-titulo);
  font-size: 2.8rem;
  color: var(--amarelo);
  font-weight: 800;
  text-shadow: 0 0 24px rgba(255,203,1,0.45);
}
.numero-card .plus { font-size: 2rem; color: var(--amarelo); margin-left: 2px; }
.numero-card span:last-child {
  display: block;
  margin-top: 10px;
  color: rgba(255,255,255,0.85);
  font-size: 0.92rem;
  line-height: 1.4;
}

/* ============ PROPÓSITO ============ */
.proposito { background: var(--branco); }
.quote-photo {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  margin: 0 auto 30px;
  font-size: 0.8rem;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}
.quote-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.proposito-quote {
  max-width: 780px;
  margin: 0 auto 50px;
  text-align: center;
  font-family: var(--font-titulo);
  font-size: clamp(1.4rem, 3vw, 2rem);
  color: var(--azul-petroleo);
  line-height: 1.5;
  font-style: italic;
  position: relative;
  padding: 0 20px;
}
.proposito-quote cite {
  display: block;
  margin-top: 20px;
  font-style: normal;
  font-size: 1rem;
  font-family: var(--font-texto);
  font-weight: 700;
  color: var(--laranja);
}
.problemas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  max-width: 960px;
  margin: 0 auto;
}
.problema-card {
  background: var(--off-white);
  padding: 30px 18px;
  border-radius: var(--radius);
  text-align: center;
  border-bottom: 4px solid var(--laranja);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.problema-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-soft); }
.problema-icon { width: 44px; height: 44px; margin: 0 auto 14px; color: var(--laranja); }
.problema-icon svg { width: 100%; height: 100%; }
.problema-card h3 { font-size: 1.05rem; color: var(--azul-petroleo); font-family: var(--font-texto); font-weight: 700; }

/* ============ BANDEIRAS ============ */
.bandeiras { background: var(--off-white); }
.bandeiras-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 26px;
  margin-top: 50px;
}
.bandeira-card {
  background: var(--branco);
  padding: 40px 26px;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: var(--shadow-soft);
  border-top: 5px solid var(--verde);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.bandeira-card:nth-child(2) { border-top-color: var(--amarelo); }
.bandeira-card:nth-child(3) { border-top-color: var(--laranja); }
.bandeira-card:nth-child(4) { border-top-color: var(--azul-petroleo); }
.bandeira-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-strong); }
.bandeira-icon { width: 50px; height: 50px; margin: 0 auto 16px; color: var(--verde); }
.bandeira-icon svg { width: 100%; height: 100%; }
.bandeira-card:nth-child(2) .bandeira-icon { color: var(--amarelo); }
.bandeira-card:nth-child(3) .bandeira-icon { color: var(--laranja); }
.bandeira-card:nth-child(4) .bandeira-icon { color: var(--azul-petroleo); }
.bandeira-card h3 { color: var(--azul-petroleo); font-size: 1.25rem; margin-bottom: 10px; }
.bandeira-card p { color: var(--cinza-texto); font-size: 0.94rem; line-height: 1.6; }

/* ============ FAIXA VOTE ============ */
.vote-banner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 18px 20px;
  background: linear-gradient(90deg, var(--azul-petroleo-escuro), var(--azul-petroleo) 50%, var(--azul-petroleo-escuro));
  border-top: 2px solid var(--amarelo);
  border-bottom: 2px solid var(--amarelo);
  flex-wrap: wrap;
}
.vote-banner span {
  color: rgba(255,255,255,0.7);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.vote-banner strong {
  color: var(--branco);
  font-family: var(--font-titulo);
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: 1px;
}
.vote-banner strong em {
  font-style: normal;
  color: var(--amarelo);
  font-size: 1.35rem;
}

/* ============ PROPOSTAS ============ */
.propostas { background: var(--branco); }
.propostas-lista {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 46px;
}
.proposta-card {
  background: linear-gradient(160deg, var(--azul-petroleo), var(--azul-petroleo-claro));
  color: var(--branco);
  border-radius: var(--radius);
  padding: 24px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  position: relative;
  border-left: 4px solid var(--amarelo);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.proposta-card:hover { transform: translateX(4px); box-shadow: var(--shadow-strong); }
.proposta-num {
  position: absolute;
  top: 16px;
  right: 20px;
  font-family: var(--font-titulo);
  font-weight: 700;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.25);
}
.proposta-icon {
  width: 44px; height: 44px;
  flex-shrink: 0;
  color: var(--amarelo);
  background: rgba(255,203,1,0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
}
.proposta-icon svg { width: 100%; height: 100%; }
.proposta-texto h3 { font-size: 1.05rem; margin-bottom: 8px; color: var(--amarelo); padding-right: 30px; }
.proposta-texto p { color: rgba(255,255,255,0.85); font-size: 0.92rem; line-height: 1.6; }

/* ============ VALORES ============ */
.valores { background: var(--off-white); }
.valores-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
}
.valor-item {
  text-align: center;
  padding: 26px 14px;
  background: var(--branco);
  border-radius: var(--radius);
  border: 1px solid rgba(0,37,128,0.08);
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.valor-item:hover {
  transform: translateY(-6px);
  border-color: var(--amarelo);
  box-shadow: var(--shadow-soft);
}
.valor-icon { width: 34px; height: 34px; margin: 0 auto 12px; color: var(--azul-petroleo); transition: transform 0.3s ease; }
.valor-icon svg { width: 100%; height: 100%; }
.valor-item:hover .valor-icon { transform: scale(1.12); }
.valor-item h3 { font-size: 1rem; color: var(--azul-petroleo); font-family: var(--font-texto); font-weight: 700; }

/* ============ LEGADO ============ */
.legado {
  position: relative;
  overflow: hidden;
  padding: 120px 0;
  border-top: 3px solid var(--amarelo);
  border-bottom: 3px solid var(--amarelo);
}
.legado-bg-placeholder {
  width: 100%; height: 100%;
  border-radius: 0;
}
.legado-bg-placeholder:not(.photo-placeholder) {
  background: linear-gradient(160deg, var(--azul-petroleo), var(--azul-petroleo-escuro));
}
.legado::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: var(--noise);
  opacity: 0.05;
  mix-blend-mode: overlay;
  pointer-events: none;
  z-index: 1;
}
.legado-content { position: relative; z-index: 2; }
.legado-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 900px;
  margin: 40px auto 50px;
}
.legado-item {
  background: rgba(255,255,255,0.08);
  border-left: 4px solid var(--amarelo);
  padding: 26px 28px;
  border-radius: 8px;
}
.legado-item h3 { color: var(--amarelo); font-size: 1.2rem; margin-bottom: 10px; }
.legado-item p { color: rgba(255,255,255,0.88); line-height: 1.6; }
.legado-destaque {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  background: rgba(255,203,1,0.12);
  border: 2px solid var(--amarelo);
  border-radius: var(--radius);
  padding: 28px 24px;
}
.legado-destaque span {
  display: block;
  color: var(--amarelo);
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 0.78rem;
  margin-bottom: 10px;
}
.legado-destaque strong {
  color: var(--branco);
  font-family: var(--font-titulo);
  font-size: 1.3rem;
  line-height: 1.4;
}

/* ============ APOIO ============ */
.apoio { background: var(--off-white); }
.apoio-carousel { position: relative; max-width: 560px; margin: 0 auto; }
.apoio-grid {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding: 4px 4px 40px;
  margin: 0 -4px -26px;
  scrollbar-width: none;
}
.apoio-grid::-webkit-scrollbar { display: none; }
.apoio-item {
  flex: 0 0 47%;
  scroll-snap-align: start;
  text-align: center;
}
.apoio-photo {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 12px;
  box-shadow: var(--shadow-soft);
  border: 3px solid var(--branco);
  outline: 2px solid rgba(0,37,128,0.1);
  transition: transform 0.3s ease, outline-color 0.3s ease;
}
.apoio-item:hover .apoio-photo { transform: translateY(-4px); outline-color: var(--amarelo); }
.apoio-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.apoio-item span {
  display: block;
  font-weight: 700;
  color: var(--azul-petroleo);
  font-size: 0.95rem;
}
.apoio-arrow {
  position: absolute;
  top: 40%;
  transform: translateY(-50%);
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--branco);
  color: var(--azul-petroleo);
  border: 1px solid rgba(0,37,128,0.12);
  box-shadow: var(--shadow-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 2;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.apoio-arrow:hover { transform: translateY(-50%) scale(1.08); box-shadow: var(--shadow-strong); }
.apoio-prev { left: -6px; }
.apoio-next { right: -6px; }

.apoio-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 6px;
}
.apoio-dots button {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(0,37,128,0.18);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: background 0.25s ease, transform 0.25s ease;
}
.apoio-dots button.active {
  background: var(--verde);
  transform: scale(1.3);
}


/* ============ CONTATO ============ */
.contato {
  position: relative;
  background: linear-gradient(160deg, var(--azul-petroleo), var(--azul-petroleo-escuro));
  text-align: center;
  border-top: 3px solid var(--amarelo);
  border-bottom: 3px solid var(--amarelo);
}
.contato::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: var(--noise);
  opacity: 0.05;
  mix-blend-mode: overlay;
  pointer-events: none;
  z-index: 0;
}
.contato .container { position: relative; z-index: 1; }
.contato-box {
  max-width: 560px;
  margin: 20px auto 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}
.urna-final {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.urna-final span { color: rgba(255,255,255,0.7); font-size: 0.85rem; text-transform: uppercase; letter-spacing: 1px; }
.urna-final strong { color: var(--amarelo); font-family: var(--font-titulo); font-size: 2.2rem; }

/* ============ FOOTER ============ */
.site-footer {
  background: var(--azul-petroleo-escuro);
  color: rgba(255,255,255,0.7);
  text-align: center;
  padding: 40px 0;
  border-top: 3px solid var(--amarelo);
}
.footer-logo { height: 40px; width: auto; margin: 0 auto 14px; }
.footer-caption {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.4px;
  color: rgba(255,255,255,0.85);
  border-top: 1px solid rgba(255,255,255,0.15);
  border-bottom: 1px solid rgba(255,255,255,0.15);
  padding: 14px 0;
  margin: 6px 0 18px;
  line-height: 1.6;
}
.footer-legal { font-size: 0.82rem; max-width: 600px; margin: 4px auto; line-height: 1.6; }

/* ============ WHATSAPP FLOAT ============ */
.whatsapp-float {
  position: fixed;
  bottom: 26px; right: 26px;
  width: 60px; height: 60px;
  background: linear-gradient(135deg, var(--verde), var(--verde-claro));
  color: var(--branco);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(1,150,66,0.5);
  z-index: 999;
  transition: transform 0.25s ease;
}
.whatsapp-float:hover { transform: scale(1.08); }

