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

:root {
  --navy-950: #061b34;
  --navy-900: #082746;
  --navy-800: #0c355d;
  --blue: #125ca8;
  --yellow: #ffd817;
  --green: #169447;
  --cream: #f5f2e9;
  --white: #ffffff;
  --ink: #0c2340;
  --muted: #5b6877;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: "Montserrat", Arial, Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  right: 0;
  height: 82px;
  padding: 0 clamp(20px, 5vw, 72px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: white;
  background: rgba(6, 27, 52, .94);
  border-bottom: 1px solid rgba(255, 255, 255, .12);
  backdrop-filter: blur(14px);
}
.brand, .footer-brand { display: flex; align-items: center; gap: 14px; }
.wordmark {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  color: white;
  line-height: .73;
  text-transform: uppercase;
}
.wordmark > span {
  margin-bottom: 5px;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: .15em;
}
.wordmark > strong {
  font-size: 23px;
  font-weight: 900;
  letter-spacing: -.055em;
}
.nav { display: flex; align-items: center; gap: clamp(18px, 2.4vw, 36px); font-size: 13px; font-weight: 700; }
.nav a:not(.nav-number) { color: #dce7f0; transition: color .2s; }
.nav a:hover { color: var(--yellow); }
.nav-number { padding: 12px 18px; border-radius: 999px; color: var(--navy-950); background: var(--yellow); font-size: 17px; font-weight: 900; }
.menu-button { display: none; border: 0; background: transparent; padding: 8px; }
.menu-button span { display: block; width: 26px; height: 2px; margin: 5px; background: white; }

.hero {
  position: relative;
  min-height: 800px;
  padding-top: 82px;
  overflow: hidden;
  color: white;
  background: #079526 url("home-top-background.png") center center / cover no-repeat;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(4, 26, 46, .84) 0%, rgba(4, 26, 46, .62) 38%, rgba(4, 26, 46, .12) 78%),
    linear-gradient(0deg, rgba(4, 26, 46, .38), transparent 40%);
}
.hero-glow { position: absolute; width: 560px; height: 560px; right: 8%; top: 20%; border-radius: 50%; background: rgba(255, 216, 23, .10); filter: blur(80px); }
.hero-content { position: relative; z-index: 2; min-height: 650px; max-width: 1280px; margin: 0 auto; padding: 54px 32px 0; display: grid; grid-template-columns: .9fr 1.1fr; gap: 24px; align-items: center; }
.hero-copy { position: relative; z-index: 2; }
.hero-candidacy { display: flex; align-items: center; gap: 16px; margin: 0 0 24px; color: var(--yellow); text-transform: uppercase; }
.hero-candidacy img { width: 62px; height: 68px; flex: 0 0 auto; object-fit: cover; border-radius: 6px; box-shadow: 0 8px 22px rgba(0, 0, 0, .25); }
.hero-candidacy strong { font-size: clamp(15px, 1.35vw, 19px); font-weight: 900; line-height: 1.25; letter-spacing: .12em; }
.eyebrow { margin: 0 0 20px; color: var(--yellow); font-size: 12px; font-weight: 900; letter-spacing: .18em; text-transform: uppercase; }
.eyebrow span { display: inline-block; margin-right: 10px; padding: 6px 8px; color: white; background: var(--blue); border: 1px solid rgba(255,255,255,.2); }
.eyebrow.dark { color: var(--blue); }
.hero h1 { margin: 0; max-width: 650px; font-size: clamp(62px, 7vw, 108px); font-weight: 900; line-height: .82; letter-spacing: -.075em; text-transform: uppercase; }
.hero h1 span { display: block; margin-bottom: 15px; color: #aec4d6; font-size: .36em; font-weight: 400; line-height: 1; letter-spacing: .18em; }
.campaign-number { display: flex; flex-direction: column; align-items: flex-start; margin-top: 24px; text-transform: uppercase; }
.campaign-number strong { color: white; font-size: clamp(70px, 7.15vw, 107px); font-weight: 900; line-height: .94; letter-spacing: -.065em; text-shadow: 0 4px 18px rgba(0,0,0,.35); }
.hero-lead { max-width: 550px; margin: 22px 0 26px; color: #d9e5ef; font-size: clamp(20px, 2.1vw, 30px); font-weight: 500; line-height: 1.25; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.button { display: inline-flex; align-items: center; justify-content: center; min-height: 52px; padding: 0 22px; border: 1px solid transparent; border-radius: 5px; font-size: 13px; font-weight: 900; text-transform: uppercase; letter-spacing: .05em; transition: transform .2s, background .2s; cursor: pointer; }
.button:hover { transform: translateY(-2px); }
.button-primary, .button-yellow { color: var(--navy-950); background: var(--yellow); }
.button-outline { color: white; border-color: rgba(255,255,255,.45); }
.button-outline:hover { background: rgba(255,255,255,.1); }
.button-whatsapp { min-height: 56px; gap: 11px; padding: 5px 24px 5px 8px; border: 2px solid rgba(255,255,255,.16); border-radius: 999px; color: white; background: #07658f; box-shadow: 0 10px 24px rgba(0,0,0,.2); }
.button-whatsapp:hover { background: #0876a5; }
.button-whatsapp img { width: 42px; height: 42px; object-fit: contain; }
.hero-portrait { position: relative; z-index: 1; align-self: stretch; min-height: 650px; width: 120%; margin-left: -20%; overflow: hidden; background: url("pastor-dinho-topo.png") center bottom / contain no-repeat; }
.hero-portrait::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(4, 26, 46, .52) 0%, transparent 25%); pointer-events: none; }
.hero-portrait img { display: none; }
.hero-ribbon { position: relative; z-index: 3; min-height: 68px; display: flex; align-items: center; justify-content: center; gap: clamp(14px, 4vw, 50px); padding: 20px; color: var(--navy-950); background: var(--yellow); font-size: 12px; font-weight: 900; letter-spacing: .13em; text-transform: uppercase; }
.hero-ribbon i { width: 5px; height: 5px; border-radius: 50%; background: var(--blue); }

.section { padding: 110px clamp(24px, 6vw, 84px); }
.section-heading { max-width: 820px; margin-bottom: 55px; }
.section-heading.centered { margin-left: auto; margin-right: auto; text-align: center; }
.section-heading h2, .join h2 { margin: 0; font-size: clamp(40px, 5vw, 68px); font-weight: 800; line-height: 1.04; letter-spacing: -.04em; }
.section-heading > p:last-child { margin-top: 20px; color: var(--muted); font-size: 18px; line-height: 1.7; }
.about { max-width: 1360px; margin: 0 auto; }
.about-grid { display: grid; grid-template-columns: 1.08fr .92fr; gap: 80px; }
.about-copy p { color: #445264; font-size: 18px; line-height: 1.8; }
.about-copy .dropcap { color: var(--ink); font-size: 25px; font-weight: 600; line-height: 1.5; }
.about-copy .dropcap::first-letter { float: left; margin: 7px 8px 0 0; color: var(--blue); font-size: 66px; font-weight: 900; line-height: .75; }
.text-link { display: inline-flex; gap: 12px; align-items: center; margin-top: 15px; color: var(--blue); font-size: 14px; font-weight: 900; }
.text-link span { font-size: 24px; }
.about-stats { display: grid; gap: 1px; background: #cfd6dc; border: 1px solid #cfd6dc; }
.about-stats article { padding: 32px; background: white; }
.about-stats strong { display: block; margin-bottom: 7px; color: var(--blue); font-size: 28px; }
.about-stats span { color: var(--muted); font-size: 14px; }

.values { color: white; background: var(--navy-950); }
.section-heading.light > p:last-child { color: #a8bdce; }
.value-grid { max-width: 1240px; margin: 0 auto; display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid rgba(255,255,255,.16); border-left: 1px solid rgba(255,255,255,.16); }
.value-card { min-height: 300px; padding: 34px 26px; border-right: 1px solid rgba(255,255,255,.16); border-bottom: 1px solid rgba(255,255,255,.16); }
.value-card > span { display: inline-block; margin-bottom: 58px; color: var(--yellow); font-weight: 900; }
.value-card h3 { margin: 0 0 18px; font-size: 23px; }
.value-card p { margin: 0; color: #a9bdcd; font-size: 14px; line-height: 1.7; }

.priorities { max-width: 1360px; margin: 0 auto; }
.priority-list { border-top: 1px solid #b9c3cb; }
.priority-item { border-bottom: 1px solid #b9c3cb; }
.priority-item summary { min-height: 84px; display: grid; grid-template-columns: 60px 1fr 40px; gap: 20px; align-items: center; list-style: none; cursor: pointer; }
.priority-item summary::-webkit-details-marker { display: none; }
.priority-item summary > span { color: var(--blue); font-size: 12px; font-weight: 900; }
.priority-item summary strong { font-size: clamp(24px, 3vw, 38px); font-weight: 700; }
.priority-item summary i { display: grid; place-items: center; width: 34px; height: 34px; border: 1px solid #9aa8b4; border-radius: 50%; color: var(--blue); font-style: normal; font-size: 22px; transition: transform .2s; }
.priority-item[open] summary i { transform: rotate(45deg); }
.priority-item p { margin: 0; padding: 0 60px 28px 80px; color: var(--muted); font-size: 17px; line-height: 1.7; }

.join { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; padding: 110px clamp(24px, 8vw, 120px); color: white; background: linear-gradient(135deg, var(--blue), var(--navy-950)); }
.join-copy > p:not(.eyebrow) { color: #c9d8e4; font-size: 18px; line-height: 1.7; }
.contact-line { margin-top: 50px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.24); display: flex; justify-content: space-between; color: #b7c8d6; }
.contact-line a { color: var(--yellow); font-weight: 900; }
.contact-form { display: grid; gap: 18px; padding: 34px; color: var(--ink); background: white; border-radius: 8px; box-shadow: 0 24px 70px rgba(0,0,0,.22); }
.contact-form label { display: grid; gap: 8px; font-size: 12px; font-weight: 900; text-transform: uppercase; letter-spacing: .06em; }
.contact-form input, .contact-form textarea { width: 100%; padding: 14px 0; border: 0; border-bottom: 1px solid #bbc5ce; outline: none; color: var(--ink); background: transparent; font-size: 15px; resize: vertical; }
.contact-form input:focus, .contact-form textarea:focus { border-color: var(--blue); }
.contact-form .consent { grid-template-columns: auto 1fr; align-items: start; color: var(--muted); font-size: 10px; font-weight: 600; text-transform: none; letter-spacing: 0; line-height: 1.4; }
.consent input { width: 16px; margin-top: 1px; }
.contact-form .button-yellow { color: white; background: #20a957; }
.contact-form .button-yellow:hover { background: #188b47; }

footer { min-height: 160px; padding: 38px clamp(24px, 6vw, 84px); display: grid; grid-template-columns: 1fr auto 1fr; gap: 30px; align-items: center; color: white; background: #031426; }
.footer-brand p { margin: 0; color: #b8c8d5; font-size: 12px; line-height: 1.5; }
.footer-brand strong { color: white; font-size: 14px; }
.footer-wordmark > span { font-size: 12px; }
.footer-wordmark > strong { font-size: 22px; }
.footer-legal { display: flex; flex-direction: column; gap: 5px; text-align: center; color: #8fa6b9; font-size: 11px; }
.footer-legal strong { color: white; }
.footer-links { text-align: right; color: var(--yellow); font-size: 12px; font-weight: 900; }
.whatsapp-float { position: fixed; z-index: 90; right: 22px; bottom: 22px; display: grid; place-items: center; width: 62px; height: 62px; border-radius: 50%; color: white; background: transparent; box-shadow: 0 12px 30px rgba(0,0,0,.3); transition: transform .2s; }
.whatsapp-float:hover { transform: translateY(-3px) scale(1.04); }
.whatsapp-float img { display: block; width: 100%; height: 100%; object-fit: contain; }

@media (max-width: 900px) {
  .site-header { height: 70px; }
  .wordmark > span { margin-bottom: 4px; font-size: 11px; }
  .wordmark > strong { font-size: 20px; }
  .menu-button { display: block; }
  .nav { position: absolute; top: 70px; left: 0; right: 0; display: none; flex-direction: column; align-items: stretch; gap: 0; padding: 18px 24px 26px; background: var(--navy-950); border-top: 1px solid rgba(255,255,255,.12); }
  .nav.open { display: flex; }
  .nav a { padding: 15px 0; border-bottom: 1px solid rgba(255,255,255,.1); }
  .nav-number { margin-top: 14px; text-align: center; border: 0 !important; }
  .hero { padding-top: 70px; }
  .hero-content { padding-top: 55px; grid-template-columns: 1fr; gap: 30px; }
  .hero-copy { text-align: center; }
  .hero-candidacy { justify-content: center; }
  .campaign-number { align-items: center; }
  .hero-lead { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .hero-portrait { min-height: 600px; max-width: none; width: 120%; margin: -80px -10% 0; }
  .hero-ribbon { flex-wrap: wrap; }
  .about-grid, .join { grid-template-columns: 1fr; gap: 45px; }
  .value-grid { grid-template-columns: repeat(2, 1fr); }
  footer { grid-template-columns: 1fr; text-align: center; }
  .footer-brand { justify-content: center; }
  .footer-links { text-align: center; }
}

@media (max-width: 560px) {
  .wordmark > span { font-size: 10px; }
  .wordmark > strong { font-size: 19px; }
  .hero-content { padding: 45px 18px 0; }
  .hero-candidacy { gap: 12px; margin-bottom: 22px; }
  .hero-candidacy img { width: 52px; height: 57px; }
  .hero-candidacy strong { max-width: 270px; font-size: 14px; letter-spacing: .09em; text-align: left; }
  .hero h1 { font-size: 60px; }
  .hero-lead { font-size: 24px; }
  .hero-actions { flex-direction: column; }
  .button { width: 100%; }
  .hero-portrait { min-height: 510px; }
  .campaign-number { margin-top: 20px; }
  .campaign-number strong { font-size: 78px; }
  .hero-ribbon i { display: none; }
  .hero-ribbon { gap: 16px 24px; font-size: 10px; }
  .section { padding: 76px 20px; }
  .section-heading { margin-bottom: 38px; }
  .section-heading h2, .join h2 { font-size: 39px; }
  .about-grid { gap: 34px; }
  .about-copy .dropcap { font-size: 22px; }
  .about-copy p { font-size: 16px; }
  .about-stats article { padding: 24px; }
  .value-grid { grid-template-columns: 1fr; }
  .value-card { min-height: 240px; }
  .value-card > span { margin-bottom: 30px; }
  .priority-item summary { grid-template-columns: 32px 1fr 34px; gap: 12px; }
  .priority-item p { padding: 0 10px 24px 44px; }
  .join { padding: 76px 20px; }
  .contact-line { display: grid; gap: 8px; }
  .contact-form { padding: 24px 20px; }
  .whatsapp-float { width: 52px; height: 52px; right: 16px; bottom: 16px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; }
}
