/* ===========================
   GOOGLE FONTS
   =========================== */
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;500;600;700&family=Barlow+Condensed:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500;1,600&family=Barlow:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=Kaushan+Script&display=swap');

/* ===========================
   CSS CUSTOM PROPERTIES
   =========================== */
:root {
  --dark: #1b1c20;
  --dark-green: #0a2e14;
  --green: #0d6b2e;
  --green-medium: #1a7a3a;
  --green-dark: #0a5a23;
  --green-light: #b8d4ac;
  --green-pale: rgba(26, 122, 58, 0.07);
  --yellow: #e8b500;
  --yellow-bright: #f5c518;
  --yellow-light: #fde68a;
  --cream: #f5f0e0;
  --cream-light: #faf6eb;
  --cream-card: rgba(250, 246, 235, 0.9);
  --white: #ffffff;
  --text-dark: #1b1c20;
  --text-gray: #555;
  --border-light: rgba(26, 122, 58, 0.15);
  --radius: 14px;
  --radius-sm: 8px;
  --radius-lg: 20px;
  --shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  --shadow-hover: 0 8px 32px rgba(0, 0, 0, 0.1);
  --max-w: 1240px;
  --header-h: 72px;
  --font-heading: 'Oswald', sans-serif;
  --font-label: 'Barlow Condensed', sans-serif;
  --font-body: 'Barlow', sans-serif;
  --font-script: 'Kaushan Script', cursive;
  --transition: 0.3s ease;
}

/* ===========================
   RESET & BASE
   =========================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: var(--header-h); }
body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--cream);
  overflow-x: hidden;
  position: relative;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul, ol { list-style: none; }
button, input, select, textarea {
  font-family: inherit; font-size: inherit; border: none; outline: none;
}
button { cursor: pointer; }

/* ===========================
   DECORATIVE PATTERNS
   =========================== */
/* Diagonal stripes on left */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 260px;
  height: 100%;
  background: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 14px,
    var(--green-pale) 14px,
    var(--green-pale) 28px
  );
  z-index: 1;
  pointer-events: none;
}

/* Target circles on right */
.target-circles {
  position: fixed;
  top: 50%;
  right: -120px;
  width: 400px;
  height: 400px;
  transform: translateY(-50%);
  z-index: 1;
  pointer-events: none;
}
.target-circles::before,
.target-circles::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  border: 1.5px solid rgba(26, 122, 58, 0.08);
}
.target-circles::before {
  top: 50%; left: 50%;
  width: 300px; height: 300px;
  transform: translate(-50%, -50%);
  box-shadow:
    0 0 0 50px transparent,
    0 0 0 51.5px rgba(26, 122, 58, 0.06),
    0 0 0 100px transparent,
    0 0 0 101.5px rgba(26, 122, 58, 0.05),
    0 0 0 150px transparent,
    0 0 0 151.5px rgba(26, 122, 58, 0.04);
}
.target-circles::after {
  top: 50%; left: 50%;
  width: 120px; height: 120px;
  transform: translate(-50%, -50%);
}
.target-dot {
  position: fixed;
  top: 50%;
  right: calc(260px / 2 - 120px);
  width: 8px; height: 8px;
  background: rgba(26, 122, 58, 0.12);
  border-radius: 50%;
  transform: translateY(-50%);
  z-index: 1;
  pointer-events: none;
}

/* ===========================
   LAYOUT UTILITIES
   =========================== */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 32px;
  position: relative;
  z-index: 2;
}
section { position: relative; z-index: 2; }

/* ===========================
   TYPOGRAPHY
   =========================== */
.heading-xl {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  line-height: 1.05;
  text-transform: uppercase;
  letter-spacing: -0.01em;
}
.heading-lg {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  line-height: 1.1;
  text-transform: uppercase;
}
.heading-md {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  line-height: 1.2;
  text-transform: uppercase;
}
.heading-sm {
  font-family: var(--font-label);
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
}
.text-yellow { color: var(--yellow); }
.text-green { color: var(--green); }
.text-white { color: var(--white); }
.slogan {
  font-family: var(--font-script);
  font-size: clamp(1.4rem, 3vw, 2rem);
  color: var(--yellow);
  font-weight: 400;
}

/* ===========================
   BADGES & TAGS
   =========================== */
.badge {
  display: inline-block;
  font-family: var(--font-label);
  font-weight: 600;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 6px 16px;
  border-radius: 4px;
  border: 1.5px solid;
}
.badge--outline { border-color: var(--white); color: var(--white); }
.badge--green { background: var(--green); color: var(--white); border-color: var(--green); }
.badge--green-outline { border-color: var(--green); color: var(--green); background: transparent; }
.badge--yellow-outline { border-color: var(--yellow); color: var(--yellow); background: transparent; }

.tag {
  display: inline-block;
  font-family: var(--font-label);
  font-weight: 500;
  font-size: 0.82rem;
  padding: 8px 18px;
  border-radius: 6px;
  border: 1.5px solid var(--border-light);
  background: var(--white);
  color: var(--text-dark);
  letter-spacing: 0.02em;
}

/* ===========================
   BUTTONS
   =========================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-label);
  font-weight: 700;
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  transition: var(--transition);
  cursor: pointer;
  text-align: center;
  justify-content: center;
}
.btn--yellow {
  background: var(--yellow-bright);
  color: var(--dark);
  border-color: var(--yellow-bright);
}
.btn--yellow:hover { background: var(--yellow); border-color: var(--yellow); transform: translateY(-2px); box-shadow: var(--shadow-hover); }
.btn--outline-white {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn--outline-white:hover { background: rgba(255,255,255,0.1); }
.btn--outline-green {
  background: transparent;
  color: var(--green);
  border-color: var(--green);
}
.btn--outline-green:hover { background: rgba(13,107,46,0.05); }
.btn--outline-dark {
  background: transparent;
  color: var(--text-dark);
  border-color: var(--text-dark);
}
.btn--outline-dark:hover { background: rgba(0,0,0,0.03); }
.btn--green {
  background: var(--green);
  color: var(--white);
  border-color: var(--green);
}
.btn--green:hover { background: var(--green-dark); transform: translateY(-2px); box-shadow: var(--shadow-hover); }

/* ===========================
   CARDS
   =========================== */
.card {
  background: var(--cream-card);
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius);
  padding: 32px;
  transition: var(--transition);
}
.card:hover { box-shadow: var(--shadow); }
.card--accent-left { border-left: 4px solid var(--yellow); }
.card--accent-top { border-top: 4px solid var(--yellow); }
.card--green {
  background: rgba(13, 107, 46, 0.08);
  border-color: rgba(13, 107, 46, 0.2);
}

/* ===========================
   ICON CIRCLES
   =========================== */
.icon-circle {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--yellow-bright);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--white);
  font-size: 1.2rem;
}

/* ===========================
   HEADER / NAVIGATION
   =========================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-h);
  background: var(--dark);
  z-index: 1000;
  border-top: 4px solid var(--green);
  transition: var(--transition);
}
.header::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--green), var(--yellow));
}
.header__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 32px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 0;
  text-decoration: none;
}
.logo__badge {
  background: var(--green);
  padding: 6px 14px;
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1;
}
.logo__name-small {
  font-family: var(--font-label);
  font-size: 0.55rem;
  font-weight: 600;
  color: var(--yellow-bright);
  text-transform: uppercase;
  letter-spacing: 0.15em;
}
.logo__name {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}
.logo__number {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--yellow-bright);
  line-height: 1;
}
.logo__subtitle {
  font-family: var(--font-label);
  font-size: 0.45rem;
  font-weight: 600;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-top: 2px;
}

/* Nav */
.nav { display: flex; align-items: center; gap: 32px; }
.nav a {
  font-family: var(--font-label);
  font-size: 0.88rem;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
  text-transform: capitalize;
  letter-spacing: 0.02em;
  transition: var(--transition);
  position: relative;
}
.nav a:hover, .nav a.active { color: var(--white); }
.nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--yellow);
  transition: var(--transition);
}
.nav a:hover::after { width: 100%; }

.header__cta .btn { font-size: 0.8rem; padding: 10px 22px; }

/* Mobile menu */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.menu-toggle span {
  width: 26px; height: 2.5px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}
.menu-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ===========================
   HERO SECTION
   =========================== */
.hero {
  margin-top: var(--header-h);
  min-height: calc(100vh - var(--header-h));
  background: linear-gradient(135deg, var(--dark) 0%, #0f1a12 50%, var(--dark-green) 100%);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 60px 0;
}
.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 70%;
  height: 200%;
  background: linear-gradient(45deg, transparent 40%, rgba(232, 181, 0, 0.06) 50%, transparent 60%);
  transform: rotate(-15deg);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--green), var(--yellow), var(--green));
}
.hero__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 60px;
  align-items: center;
  width: 100%;
}
.hero__content { color: var(--white); }
.hero__badges { display: flex; gap: 12px; margin-bottom: 24px; flex-wrap: wrap; }
.hero__title { margin-bottom: 20px; }
.hero__subtitle {
  font-family: var(--font-body);
  font-size: 1rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: 32px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero__subtitle::before {
  content: '';
  width: 3px;
  height: 24px;
  background: var(--yellow);
  border-radius: 2px;
  flex-shrink: 0;
}
.hero__subtitle strong { color: var(--white); }
.hero__buttons { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 32px; }
.hero__vote {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 16px 28px;
  border: 2px solid var(--yellow);
  border-radius: var(--radius-sm);
  color: var(--white);
}
.hero__vote-icon {
  font-size: 1.8rem;
  color: var(--yellow);
}
.hero__vote-label {
  font-family: var(--font-label);
  font-weight: 600;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.7);
}
.hero__vote-number {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 2.8rem;
  line-height: 1;
  color: var(--white);
}

/* Hero card */
.hero__card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
  transform: perspective(800px) rotateY(-3deg);
  transition: var(--transition);
}
.hero__card:hover { transform: perspective(800px) rotateY(0deg); }
.hero__card img { width: 100%; height: auto; }

/* ===========================
   MARQUEE / TICKER
   =========================== */
.marquee {
  background: var(--dark);
  padding: 14px 0;
  overflow: hidden;
  position: relative;
  z-index: 2;
  border-bottom: 3px solid var(--yellow);
}
.marquee__track {
  display: flex;
  animation: marquee-scroll 30s linear infinite;
  width: max-content;
}
.marquee__content {
  display: flex;
  align-items: center;
  gap: 0;
  white-space: nowrap;
  padding-right: 0;
}
.marquee__item {
  font-family: var(--font-label);
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--yellow-bright);
  padding: 0 24px;
}
.marquee__dot {
  width: 6px;
  height: 6px;
  background: var(--yellow);
  border-radius: 50%;
  flex-shrink: 0;
}
@keyframes marquee-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Scroll down indicator */
.scroll-down {
  text-align: center;
  padding: 12px 0;
  color: var(--green);
  font-size: 1.5rem;
  animation: bounce 2s infinite;
  position: relative;
  z-index: 2;
}
@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(8px); }
}

/* ===========================
   SECTION SHARED STYLES
   =========================== */
.section {
  padding: 100px 0;
  position: relative;
  z-index: 2;
}
.section--cream { background: var(--cream); }
.section--green {
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green) 100%);
  color: var(--white);
}
.section__label {
  font-family: var(--font-label);
  font-weight: 600;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--green);
  margin-bottom: 12px;
}
.section__label--yellow { color: var(--yellow); }
.section__label--white { color: rgba(255,255,255,0.8); }
.section__title { margin-bottom: 20px; }
.section__desc {
  font-size: 1rem;
  color: var(--text-gray);
  max-width: 700px;
  line-height: 1.7;
}
.section__desc--white { color: rgba(255,255,255,0.85); }

/* ===========================
   CONHEÇA O HIGA (BIO)
   =========================== */
.bio { padding-top: 100px; }
.bio__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 24px;
}
.bio__text { max-width: 700px; margin-bottom: 48px; }
.bio__text p { margin-bottom: 12px; color: var(--text-gray); line-height: 1.7; }
.bio__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

/* Personal data card */
.data-card { padding: 36px; }
.data-card__title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.3rem;
  text-transform: uppercase;
  margin-bottom: 28px;
}
.data-field { margin-bottom: 20px; }
.data-field__label {
  font-family: var(--font-label);
  font-weight: 600;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--green);
  margin-bottom: 4px;
}
.data-field__value {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-dark);
}

/* Trajectory card */
.trajectory-card { padding: 36px; }
.trajectory-card__title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.3rem;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.trajectory-card p {
  color: var(--text-gray);
  margin-bottom: 16px;
  line-height: 1.7;
}

/* ===========================
   PROFESSIONAL GRID
   =========================== */
.professional { padding: 80px 0; }
.professional__title { margin-bottom: 40px; }
.professional__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.role-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 24px;
}
.role-card__title {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.role-card__desc {
  font-size: 0.85rem;
  color: var(--text-gray);
  line-height: 1.5;
}

/* ===========================
   TIRO ESPORTIVO SECTION
   =========================== */
.tiro { padding-top: 60px; }
.tiro__intro { margin-bottom: 40px; }
.tiro__intro p { color: var(--text-gray); line-height: 1.7; }
.tiro__green {
  background: linear-gradient(135deg, var(--green-dark), var(--green));
  border-radius: var(--radius-lg);
  padding: 60px 48px;
  color: var(--white);
  margin-bottom: 0;
}
.tiro__green-title {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  margin-bottom: 16px;
}
.tiro__green-desc {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.85);
  margin-bottom: 36px;
  max-width: 700px;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 32px;
}
.stat-card {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius);
  padding: 24px;
}
.stat-card__number {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 2.2rem;
  color: var(--yellow);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-card__label {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.8);
}
.tiro__bullets { margin: 24px 0; }
.tiro__bullets li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 12px;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.85);
}
.tiro__bullets li::before {
  content: '●';
  color: var(--yellow);
  font-size: 0.6rem;
  margin-top: 6px;
  flex-shrink: 0;
}
.tiro__note {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.15);
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
  font-style: italic;
}

/* ===========================
   POLITICAL SECTION
   =========================== */
.political { padding: 80px 0; }
.political__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.political-card { padding: 36px; }
.political-card__title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.3rem;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.political-card p {
  color: var(--text-gray);
  line-height: 1.7;
  margin-bottom: 20px;
}
.political-card__tags-label {
  font-family: var(--font-label);
  font-weight: 600;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--green);
  margin-bottom: 16px;
}
.political-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

/* Project card */
.project-card {
  padding: 36px;
  border-left: 4px solid var(--yellow);
}
.project-card__icon {
  font-size: 2rem;
  color: var(--yellow);
  margin-bottom: 16px;
}
.project-card__title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.3rem;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.project-card p {
  color: var(--text-gray);
  line-height: 1.7;
  margin-bottom: 16px;
}
.project-card__sig {
  font-family: var(--font-label);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-dark);
  margin-top: 16px;
}

/* ===========================
   PROPOSTAS (PROPOSALS)
   =========================== */
.propostas { padding: 100px 0; }
.propostas__header { margin-bottom: 48px; }
.propostas__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.proposal-card {
  padding: 28px;
  position: relative;
  border-top: 3px solid var(--yellow-bright);
}
.proposal-card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}
.proposal-card__header-left {
  display: flex;
  align-items: center;
  gap: 12px;
}
.proposal-card__number {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.8rem;
  color: var(--yellow);
  opacity: 0.5;
}
.proposal-card__title {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.1rem;
  text-transform: uppercase;
}
.proposal-card__desc {
  font-size: 0.88rem;
  color: var(--text-gray);
  line-height: 1.6;
}

/* ===========================
   REGIONAL SECTION (MS)
   =========================== */
.regional { padding: 100px 0; }
.regional__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.regional__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 24px 0;
}
.regional__municipios {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 24px;
  border: 2px solid var(--yellow);
  border-radius: var(--radius);
  margin-top: 24px;
}
.regional__municipios-icon {
  width: 60px;
  height: 60px;
  flex-shrink: 0;
}
.regional__municipios p {
  font-size: 0.95rem;
  color: var(--text-gray);
  line-height: 1.6;
}
.regional__municipios strong { color: var(--green); }
.regional__photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.photo-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
}
.photo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}
.photo-card:hover img { transform: scale(1.05); }
.photo-card__overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
  background: linear-gradient(transparent, rgba(0,0,0,0.7));
  color: var(--white);
}
.photo-card__title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.photo-card__desc {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.8);
}

/* ===========================
   APOIE / PARTICIPE
   =========================== */
.apoie {
  padding: 100px 0;
  background: linear-gradient(180deg, var(--cream) 0%, var(--cream-light) 100%);
}
.apoie__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.apoie__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 32px 0;
}
.apoie__number {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 18px 28px;
  border: 2px solid var(--yellow);
  border-radius: var(--radius-sm);
  margin-top: 8px;
}
.apoie__number-big {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 2.4rem;
  color: var(--yellow);
  line-height: 1;
}
.apoie__number-text {
  font-family: var(--font-label);
  font-weight: 600;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-dark);
  line-height: 1.3;
}

/* Form */
.form-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: var(--shadow);
}
.form-card__title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.2rem;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.form-card__desc {
  font-size: 0.88rem;
  color: var(--text-gray);
  margin-bottom: 28px;
}
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-family: var(--font-label);
  font-weight: 600;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
  color: var(--text-dark);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid #ddd;
  border-radius: var(--radius-sm);
  font-size: 0.92rem;
  background: var(--white);
  transition: var(--transition);
  color: var(--text-dark);
}
.form-input::placeholder,
.form-textarea::placeholder {
  color: #aaa;
}
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(13, 107, 46, 0.1);
}
.form-textarea { resize: vertical; min-height: 120px; }
.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23555' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}
.form-submit {
  width: 100%;
  padding: 16px;
  font-size: 0.95rem;
}

/* ===========================
   CONTATO
   =========================== */
.contato { padding: 80px 0; }
.contato__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.contato__title {
  margin-bottom: 32px;
}
.contato__info { margin-top: 24px; }
.contato__item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  background: var(--cream-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  margin-bottom: 12px;
}
.contato__item-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.1rem;
  flex-shrink: 0;
}
.contato__item-label {
  font-family: var(--font-label);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
}
.contato__item-value {
  font-size: 0.88rem;
  color: var(--text-gray);
}

/* ===========================
   FOOTER
   =========================== */
.footer {
  background: var(--cream-light);
  padding: 80px 0 0;
  position: relative;
  z-index: 2;
  border-top: 3px solid var(--green);
}
.footer__inner {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer__brand {}
.footer__brand-label {
  font-family: var(--font-label);
  font-weight: 600;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--green);
  margin-bottom: 8px;
}
.footer__brand-name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 2.4rem;
  color: var(--yellow);
  text-transform: uppercase;
  line-height: 1.1;
}
.footer__brand-slogan {
  font-family: var(--font-script);
  font-size: 1.4rem;
  color: var(--green);
  margin: 12px 0;
}
.footer__brand-number {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 3rem;
  background: linear-gradient(135deg, var(--yellow), var(--green));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.1;
}
.footer__brand-state {
  font-family: var(--font-label);
  font-weight: 600;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-gray);
  margin-top: 4px;
}

.footer__links {}
.footer__links a {
  display: block;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  text-transform: uppercase;
  padding: 12px 0;
  border-bottom: 1px solid var(--border-light);
  color: var(--text-dark);
  transition: var(--transition);
}
.footer__links a:hover { color: var(--green); padding-left: 8px; }

.footer__social {}
.footer__social-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.social-link {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  background: var(--cream-card);
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-sm);
  margin-bottom: 12px;
  transition: var(--transition);
}
.social-link:hover { border-color: var(--green); box-shadow: var(--shadow); }
.social-link__icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--yellow-bright);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dark);
  font-size: 1.1rem;
  flex-shrink: 0;
}
.social-link__text {
  font-family: var(--font-label);
  font-weight: 600;
  font-size: 0.9rem;
}

.footer__disclaimer {
  padding: 24px 0;
  border-top: 1px solid var(--border-light);
  font-size: 0.8rem;
  color: var(--text-gray);
  line-height: 1.7;
}
.footer__bottom {
  background: var(--dark);
  padding: 16px 0;
}
.footer__bottom-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer__copyright {
  font-family: var(--font-label);
  font-weight: 500;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--yellow);
}
.footer__dev {
  font-family: var(--font-label);
  font-weight: 500;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--yellow);
}
.footer__dev a { color: var(--yellow); text-decoration: underline; }

/* ===========================
   WHATSAPP FLOAT
   =========================== */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 56px;
  height: 56px;
  background: var(--yellow-bright);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
  z-index: 999;
  transition: var(--transition);
  color: var(--dark);
  font-size: 1.5rem;
}
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(0,0,0,0.3);
}

/* ===========================
   SCROLL ANIMATIONS
   =========================== */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-in-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}
.fade-in-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* ===========================
   RESPONSIVE
   =========================== */
@media (max-width: 1024px) {
  .hero__inner { grid-template-columns: 1fr; gap: 40px; }
  .hero__card { max-width: 360px; margin: 0 auto; transform: none; }
  .bio__grid { grid-template-columns: 1fr; }
  .professional__grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .political__grid { grid-template-columns: 1fr; }
  .propostas__grid { grid-template-columns: repeat(2, 1fr); }
  .regional__inner { grid-template-columns: 1fr; }
  .apoie__inner { grid-template-columns: 1fr; }
  .contato__inner { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr; gap: 32px; }
  body::before { width: 120px; }
  .target-circles { display: none; }
}

@media (max-width: 768px) {
  :root { --header-h: 64px; }
  .container { padding: 0 20px; }
  .section { padding: 60px 0; }
  .nav {
    position: fixed;
    top: var(--header-h);
    left: 0;
    width: 100%;
    flex-direction: column;
    background: var(--dark);
    padding: 20px 32px;
    gap: 16px;
    transform: translateY(-120%);
    transition: var(--transition);
    z-index: 999;
    border-bottom: 3px solid var(--green);
  }
  .nav.active { transform: translateY(0); }
  .menu-toggle { display: flex; }
  .header__cta { display: none; }
  .hero { min-height: auto; padding: 40px 0; }
  .hero__inner { padding: 0 20px; }
  .heading-xl { font-size: 2rem; }
  .professional__grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr; }
  .propostas__grid { grid-template-columns: 1fr; }
  .regional__photos { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer__bottom-inner { flex-direction: column; gap: 8px; text-align: center; }
  body::before { width: 60px; }
  .tiro__green { padding: 36px 24px; }
  .hero__vote-number { font-size: 2rem; }
  .apoie__number-big { font-size: 1.8rem; }
}

@media (max-width: 480px) {
  .heading-xl { font-size: 1.6rem; }
  .hero__buttons { flex-direction: column; }
  .hero__buttons .btn { width: 100%; }
  .apoie__buttons { flex-direction: column; }
  .apoie__buttons .btn { width: 100%; }
  body::before { display: none; }
}
