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

:root {
  --yellow: #f4c400;
  --yellow-soft: #ffd84d;
  --black: #0b0b0d;
  --black-soft: #15171c;
  --white: #ffffff;
  --gray: #c7ccd5;
  --border: rgba(255,255,255,0.10);
  --shadow: 0 18px 60px rgba(0,0,0,0.35);
}

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

body {
  font-family: 'Poppins', sans-serif;
  background: linear-gradient(180deg, #0a0a0c 0%, #111317 100%);
  color: var(--white);
  overflow-x: hidden;
  width: 100%;
  max-width: 100%;
}

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

button,
textarea {
  font-family: inherit;
}

.hero {
  min-height: 100vh;
  background:
    linear-gradient(rgba(0,0,0,0.38), rgba(0,0,0,0.70)),
    radial-gradient(circle at top right, rgba(244,196,0,0.18), transparent 30%),
    url('../img/renan-fundo.jpeg');
  background-size: cover;
  background-position: center top;
  display: flex;
  align-items: center;
  padding: 30px 2vw;
  position: relative;
  overflow-x: clip;
  overflow-y: hidden;
  width: 100%;
  max-width: 100%;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(110deg, rgba(244,196,0,0.06), transparent 35%),
    linear-gradient(300deg, rgba(255,255,255,0.04), transparent 30%);
  pointer-events: none;
}

.hero-layout {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1580px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(320px, 560px) minmax(300px, 400px);
  justify-content: space-between;
  align-items: center;
  gap: 48px;
  min-width: 0;
}

.hero-content {
  text-align: left;
  padding-top: 40px;
  width: 100%;
  max-width: 560px;
  min-width: 0;
}

.hero-side {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-self: end;
  width: 100%;
  max-width: 400px;
  gap: 22px;
  min-width: 0;
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border: 1px solid rgba(244,196,0,0.35);
  background: rgba(10,10,10,0.42);
  border-radius: 999px;
  color: var(--yellow-soft);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.4px;
  margin-bottom: 20px;
  backdrop-filter: blur(8px);
  box-shadow: var(--shadow);
  max-width: 100%;
}

.tag-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--yellow);
  box-shadow: 0 0 12px rgba(244,196,0,0.8);
  flex-shrink: 0;
}

.hero h1 {
  font-size: clamp(36px, 5.6vw, 78px);
  font-weight: 700;
  margin-bottom: 16px;
  line-height: 1.02;
  text-shadow: 0 6px 24px rgba(0,0,0,0.45);
  max-width: 10ch;
  word-break: break-word;
}

.hero .highlight {
  color: var(--yellow);
  display: block;
}

.hero h2 {
  font-size: clamp(17px, 2vw, 24px);
  font-weight: 300;
  max-width: 640px;
  opacity: 0.97;
  color: #f5f5f5;
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 30px;
  align-items: flex-start;
}

.btn {
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 600;
  transition: 0.25s ease;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 185px;
  border: 1px solid transparent;
  font-size: 15px;
  text-align: center;
}

.btn-primary {
  background: rgba(244, 196, 0, 0.82);
  color: #111;
  box-shadow: 0 12px 30px rgba(244,196,0,0.25);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.btn-primary:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 18px 34px rgba(244,196,0,0.35);
}

.btn-secondary {
  background: rgba(255,255,255,0.08);
  color: var(--yellow);
  border: 1px solid rgba(255,255,255,0.18);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.btn-secondary:hover {
  transform: translateY(-2px) scale(1.02);
  border-color: rgba(244,196,0,0.45);
  background: rgba(255,255,255,0.12);
}

.hero-socials {
  display: grid;
  gap: 14px;
  width: 100%;
  max-width: 400px;
  margin: 0;
  min-width: 0;
}

.social-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(15,17,23,0.42);
  border: 1px solid rgba(255,255,255,0.14);
  transition: 0.25s ease;
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
  min-width: 0;
  width: 100%;
}

.social-card > div:last-child {
  min-width: 0;
}

.social-card:hover {
  transform: translateY(-4px);
  border-color: rgba(244,196,0,0.45);
  background: rgba(15,17,23,0.56);
}

.social-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(244,196,0,0.12);
  color: var(--yellow);
  font-size: 22px;
  border: 1px solid rgba(244,196,0,0.24);
  flex-shrink: 0;
}

.social-card strong {
  display: block;
  font-size: 16px;
  margin-bottom: 4px;
}

.social-card span {
  color: var(--gray);
  font-size: 14px;
  word-break: break-word;
}

.divider {
  height: 5px;
  background: linear-gradient(90deg, var(--yellow) 0%, var(--white) 50%, var(--yellow) 100%);
}

section {
  padding: 84px 20px;
}

.container {
  max-width: 1180px;
  margin: auto;
}

.section-header {
  text-align: center;
  margin-bottom: 36px;
}

.eyebrow {
  color: var(--yellow);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1.6px;
  font-weight: 700;
  margin-bottom: 10px;
}

.title {
  font-size: clamp(28px, 4vw, 42px);
  margin-bottom: 12px;
}

.section-text {
  max-width: 760px;
  margin: 0 auto;
  color: var(--gray);
  font-size: 16px;
  line-height: 1.8;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px,1fr));
  gap: 22px;
}

.card {
  background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.02));
  padding: 28px;
  border-radius: 22px;
  transition: 0.25s ease;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(244,196,0,0.10), transparent 40%);
  opacity: 0;
  transition: 0.25s ease;
}

.card:hover {
  transform: translateY(-6px);
  border-color: rgba(244,196,0,0.45);
}

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

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

.card-icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(244,196,0,0.12);
  color: var(--yellow);
  font-size: 24px;
  margin-bottom: 18px;
  border: 1px solid rgba(244,196,0,0.24);
}

.card h3 {
  margin-bottom: 12px;
  font-size: 22px;
}

.card p {
  font-size: 15px;
  line-height: 1.8;
  color: var(--gray);
}

.quote-box {
  margin-top: 42px;
  padding: 26px;
  border-radius: 22px;
  border: 1px solid rgba(244,196,0,0.24);
  background: linear-gradient(135deg, rgba(244,196,0,0.10), rgba(255,255,255,0.03));
  box-shadow: var(--shadow);
  text-align: center;
}

.quote-box p {
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.7;
  color: #fff8d6;
}

footer {
  text-align: center;
  padding: 34px 20px;
  background: #090a0d;
  font-size: 14px;
  color: #c7cad1;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.disclaimer {
  margin-top: 10px;
  font-size: 12px;
  opacity: 0.75;
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.audio-toggle {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 9999;
  border: none;
  border-radius: 999px;
  padding: 16px 22px;
  min-width: 220px;
  font-size: 15px;
  font-weight: 700;
  color: #111;
  background: linear-gradient(135deg, #f4c400 0%, #ffd84d 100%);
  box-shadow: 0 14px 40px rgba(244,196,0,0.35);
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}

.audio-toggle:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 18px 45px rgba(244,196,0,0.45);
}

.audio-toggle.is-on {
  background: linear-gradient(135deg, #ffffff 0%, #f3f3f3 100%);
  color: #111;
  box-shadow: 0 14px 40px rgba(255,255,255,0.18);
}

/* MODAL */

.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.72);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  padding: 20px;
}

.modal-overlay.active {
  display: flex;
}

.modal-box {
  width: 100%;
  max-width: 500px;
  background: linear-gradient(180deg, #12141a 0%, #1a1d26 100%);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 24px;
  box-shadow: 0 18px 60px rgba(0,0,0,0.45);
  padding: 28px;
  position: relative;
  animation: modalFadeIn 0.22s ease;
}

@keyframes modalFadeIn {
  from {
    opacity: 0;
    transform: translateY(14px) scale(0.98);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 42px;
  height: 42px;
  border: none;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  color: #fff;
  font-size: 20px;
  cursor: pointer;
  transition: 0.2s ease;
}

.modal-close:hover {
  background: rgba(255,255,255,0.16);
  transform: rotate(90deg);
}

.modal-title {
  font-size: clamp(24px, 4vw, 28px);
  margin-bottom: 10px;
  color: var(--white);
  padding-right: 42px;
}

.modal-text {
  color: var(--gray);
  line-height: 1.6;
  margin-bottom: 20px;
  font-size: 15px;
}

.modal-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 12px;
}

.modal-actions-single {
  grid-template-columns: 1fr;
}

.btn-vote-yes,
.btn-vote-no {
  border: none;
  border-radius: 16px;
  padding: 14px 16px;
  font-weight: 700;
  cursor: pointer;
  font-size: 15px;
  transition: 0.2s ease;
}

.btn-vote-yes {
  background: linear-gradient(135deg, var(--yellow) 0%, #f0b300 100%);
  color: #111;
}

.btn-vote-no {
  background: rgba(255,255,255,0.10);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.16);
}

.btn-vote-yes:hover,
.btn-vote-no:hover {
  transform: translateY(-2px);
}

.modal-msg {
  margin-top: 16px;
  min-height: 22px;
  font-size: 14px;
  text-align: center;
  line-height: 1.5;
}

.modal-textarea {
  width: 100%;
  min-height: 145px;
  resize: vertical;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.16);
  padding: 14px 16px;
  font-size: 14px;
  outline: none;
  color: #fff;
  background: rgba(255,255,255,0.08);
  margin-top: 4px;
  margin-bottom: 14px;
  line-height: 1.6;
  transition: 0.2s ease;
}

.modal-textarea:focus {
  border-color: rgba(244,196,0,0.55);
  box-shadow: 0 0 0 4px rgba(244,196,0,0.10);
  background: rgba(255,255,255,0.10);
}

.modal-textarea::placeholder {
  color: rgba(255,255,255,0.55);
}

/* STATS CARD */

.stats-card {
  position: relative;
  width: 100%;
  padding: 20px;
  border-radius: 22px;
  background: rgba(35, 35, 35, 0.78);
  border: 1px solid rgba(255, 204, 0, 0.22);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 5;
  min-width: 0;
  max-width: 100%;
}

.stats-header {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #ffd23f;
  font-weight: 700;
  font-size: 15px;
  margin-bottom: 16px;
}

.stats-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #ffd23f;
  box-shadow: 0 0 10px rgba(255, 210, 63, 0.7);
  flex-shrink: 0;
}

.stats-total {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 18px;
  flex-wrap: wrap;
}

.stats-total span {
  font-size: 36px;
  font-weight: 800;
  color: #ffffff;
  line-height: 1;
}

.stats-total small {
  color: rgba(255, 255, 255, 0.75);
  font-size: 14px;
}

.stats-chart {
  margin-bottom: 16px;
}

.stats-bar {
  width: 100%;
  height: 18px;
  display: flex;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
}

.stats-fill {
  height: 100%;
  transition: width 0.5s ease;
}

.stats-fill.conhece {
  background: linear-gradient(90deg, #ffd000, #ffb800);
}

.stats-fill.nao-conhece {
  background: linear-gradient(90deg, #7a7a7a, #b0b0b0);
}

.stats-legend {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.legend-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #ffffff;
  font-size: 14px;
  flex-wrap: wrap;
}

.legend-color {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  flex-shrink: 0;
}

.legend-color.conhece {
  background: #ffd000;
}

.legend-color.nao-conhece {
  background: #9a9a9a;
}

.stats-actions {
  margin-top: 18px;
  display: grid;
  gap: 12px;
}

.btn-stats {
  width: 100%;
  min-width: 0;
  max-width: 100%;
}

/* RESPONSIVO */

@media (max-width: 1200px) {
  .stats-card {
    max-width: 420px;
    margin: 0;
  }
}

@media (max-width: 1024px) {
  .hero-layout {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .hero-content {
    text-align: center;
    padding-top: 10px;
    width: 100%;
    max-width: 100%;
  }

  .hero h1 {
    max-width: none;
    margin-left: auto;
    margin-right: auto;
  }

  .hero h2 {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-side {
    justify-self: center;
    max-width: 420px;
    width: 100%;
  }

  .hero-socials {
    max-width: 420px;
    width: 100%;
  }
}

@media (max-width: 768px) {

  .hero {
    background-position: center top;
    background-size: cover;
    padding: 24px 14px 90px;
    align-items: flex-start;
    overflow-x: clip;
    min-height: 100svh;
  }

  .hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
      linear-gradient(
        to bottom,
        rgba(0,0,0,0.18) 0%,
        rgba(0,0,0,0.34) 38%,
        rgba(0,0,0,0.82) 100%
      );
    pointer-events: none;
  }

  .hero-layout {
    position: relative;
    z-index: 2;
    gap: 20px;
    width: calc(100vw - 32px);
    max-width: calc(100vw - 32px);
    margin: 0 auto;
  }

  .hero-content,
  .hero-side,
  .stats-card,
  .hero-socials {
    width: 100%;
    max-width: calc(100vw - 32px);
    min-width: 0;
  }

  .hero-content {
    padding-top: 8px;
  }

  .hero h1 {
    font-size: clamp(32px, 11vw, 52px);
    line-height: 1.04;
  }

  .hero h2 {
    font-size: 16px;
    line-height: 1.5;
  }

  .btn {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .btn-stats {
    width: 100%;
    max-width: 100%;
  }

  .tag {
    max-width: 100%;
    font-size: 13px;
    padding: 9px 14px;
  }

  .social-card {
    padding: 15px 16px;
    width: 100%;
  }

  .social-card strong {
    font-size: 15px;
  }

  .social-card span {
    font-size: 13px;
  }

  section {
    padding: 64px 18px;
  }

  .audio-toggle {
    right: 14px;
    left: 14px;
    bottom: 14px;
    width: auto;
    min-width: 0;
    max-width: calc(100vw - 28px);
  }
}

@media (max-width: 640px) {

  .hero {
    background-position: center top;
    background-size: cover;
    padding: 24px 14px 90px;
  }

  .hero-layout {
    width: calc(100vw - 28px);
    max-width: calc(100vw - 28px);
  }

  .hero-content,
  .hero-side,
  .stats-card,
  .hero-socials {
    max-width: calc(100vw - 28px);
  }

  .hero h1 {
    font-size: clamp(30px, 10.5vw, 44px);
  }

  .stats-card {
    padding: 18px;
    border-radius: 20px;
  }

  .stats-total span {
    font-size: 32px;
  }

  .modal-actions {
    grid-template-columns: 1fr;
  }

  .modal-box {
    padding: 24px 20px;
    max-height: calc(100vh - 40px);
    overflow-y: auto;
  }

  .modal-title {
    font-size: 24px;
  }

  .modal-textarea {
    min-height: 130px;
  }
}

@media (max-width: 380px) {

  .hero {
    background-position: center top;
    background-size: cover;
    padding: 22px 12px 90px;
  }

  .hero-layout {
    width: calc(100vw - 24px);
    max-width: calc(100vw - 24px);
  }

  .hero-content,
  .hero-side,
  .stats-card,
  .hero-socials {
    max-width: calc(100vw - 24px);
  }

  .hero h1 {
    font-size: 28px;
  }

  .hero h2 {
    font-size: 15px;
  }

  .social-icon {
    width: 42px;
    height: 42px;
    font-size: 20px;
  }

  .social-card {
    gap: 12px;
    padding: 14px;
  }

  .stats-card {
    padding: 16px;
  }
}

.modal-input {
  width: 100%;
  height: 48px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.16);
  padding: 0 16px;
  font-size: 14px;
  outline: none;
  color: #fff;
  background: rgba(255,255,255,0.08);
  margin-bottom: 12px;
  transition: 0.2s ease;
}

.modal-input:focus {
  border-color: rgba(244,196,0,0.55);
  box-shadow: 0 0 0 4px rgba(244,196,0,0.10);
  background: rgba(255,255,255,0.10);
}

.modal-input::placeholder {
  color: rgba(255,255,255,0.55);
}

.modal-ai-warning {
  margin-top: 4px;
  margin-bottom: 18px;
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(244,196,0,0.10);
  border: 1px solid rgba(244,196,0,0.22);
  color: #ffd84d;
  font-size: 13px;
  line-height: 1.6;
  text-align: center;
  font-weight: 500;
}

.quote-btn {
  margin-top: 20px;
}

.modal-share-box {
  max-width: 560px;
}

.share-image-box {
  margin: 20px 0;
  display: flex;
  justify-content: center;
}

.share-image {
  width: 100%;
  max-width: 320px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 18px 45px rgba(0,0,0,0.35);
}

.share-highlight {
  margin-top: 12px;
  margin-bottom: 18px;
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(244,196,0,0.10);
  border: 1px solid rgba(244,196,0,0.24);
  color: #ffd84d;
  line-height: 1.7;
  font-size: 14px;
  text-align: center;
}

.modal-text-small {
  font-size: 14px;
  text-align: center;
}

.share-download-btn {
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* MAPA DO BRASIL - PROPOSTAS POR REGIÃO */

.mapa-propostas-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 20% 20%, rgba(244,196,0,0.08), transparent 30%),
    linear-gradient(180deg, #0b0b0d 0%, #111317 100%);
}

.mapa-propostas-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at center, rgba(244,196,0,0.08), transparent 60%);
  pointer-events: none;
}

.mapa-propostas-section .container {
  position: relative;
  z-index: 1;
}

.mapa-layout {
  display: grid;
  grid-template-columns: minmax(320px, 1fr) minmax(320px, 1fr);
  gap: 48px;
  align-items: stretch;
}

.mapa-card,
.propostas-card {
  background: rgba(255,255,255,0.045);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 24px;
  padding: 32px;
  box-shadow: var(--shadow);
  min-width: 0;
}

.mapa-card {
  border-color: rgba(244,196,0,0.18);
}

.mapa-brasil-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 430px;
  padding-top: 90px;
}

.mapa-brasil-img {
  width: 100%;
  max-width: 560px;
  display: block;
  filter:
    drop-shadow(0 0 20px rgba(244,196,0,0.14))
    drop-shadow(0 0 42px rgba(244,196,0,0.08));
  user-select: none;
}

.mapa-label {
  position: absolute;
  border: none;
  background: transparent;
  color: rgba(255,255,255,0.76);
  font-weight: 800;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  text-shadow: 0 3px 10px rgba(0,0,0,0.7);
  cursor: pointer;
  transition: 0.2s ease;
  padding: 6px 8px;
  z-index: 2;
}

.mapa-label:hover,
.mapa-label.active {
  color: var(--yellow);
  transform: scale(1.08);
}

.mapa-label-norte {
  top: 27%;
  left: 25%;
}

.mapa-label-nordeste {
  top: 35%;
  right: 16%;
}

.mapa-label-centro {
  top: 53%;
  left: 36%;
}

.mapa-label-sudeste {
  bottom: 28%;
  right: 25%;
}

.mapa-label-sul {
  bottom: 13%;
  left: 48%;
}

.mapa-tabs {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 24px;
}

.mapa-tab {
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.05);
  color: var(--gray);
  padding: 10px 16px;
  border-radius: 8px;
  font-weight: 800;
  cursor: pointer;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0.7px;
  transition: 0.2s ease;
}

.mapa-tab.active,
.mapa-tab:hover {
  background: var(--yellow);
  color: #111;
  border-color: var(--yellow);
  box-shadow: 0 10px 24px rgba(244,196,0,0.22);
}

.propostas-card {
  display: flex;
  flex-direction: column;
}

.propostas-card h3 {
  font-size: clamp(34px, 4vw, 52px);
  color: var(--yellow);
  text-transform: uppercase;
  margin-top: 12px;
  line-height: 1;
}

.linha-amarela {
  width: 82px;
  height: 4px;
  background: var(--yellow);
  margin: 18px 0 32px;
  border-radius: 999px;
}

.propostas-lista {
  display: grid;
  gap: 16px;
}

.proposta-item {
  display: flex;
  gap: 16px;
  padding: 18px;
  border-radius: 16px;
  background: rgba(255,255,255,0.045);
  border: 1px solid rgba(255,255,255,0.10);
  transition: 0.22s ease;
}

.proposta-item:hover {
  transform: translateY(-3px);
  border-color: rgba(244,196,0,0.35);
  background: rgba(255,255,255,0.065);
}

.proposta-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: rgba(244,196,0,0.16);
  color: var(--yellow);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 20px;
}

.proposta-item h4 {
  color: #fff;
  font-size: 15px;
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.proposta-item p {
  color: var(--gray);
  font-size: 14px;
  line-height: 1.7;
}

/* RESPONSIVO DO MAPA */

@media (max-width: 1000px) {
  .mapa-layout {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .mapa-brasil-wrap {
    min-height: auto;
  }
}

@media (max-width: 768px) {
  .mapa-card,
  .propostas-card {
    padding: 22px 16px;
    border-radius: 20px;
  }

  .mapa-label {
    font-size: 11px;
  }

  .mapa-label-norte {
    top: 26%;
    left: 22%;
  }

  .mapa-label-nordeste {
    top: 34%;
    right: 10%;
  }

  .mapa-label-centro {
    top: 52%;
    left: 33%;
  }

  .mapa-label-sudeste {
    bottom: 27%;
    right: 20%;
  }

  .mapa-label-sul {
    bottom: 12%;
    left: 45%;
  }

  .mapa-tab {
    flex: 1 1 calc(50% - 10px);
    padding: 10px 8px;
    font-size: 11px;
  }

  .proposta-item {
    padding: 16px;
  }
}

@media (max-width: 420px) {
  .mapa-label {
    font-size: 9px;
    padding: 4px;
  }

  .mapa-tab {
    flex: 1 1 100%;
  }

  .proposta-item {
    gap: 12px;
  }

  .proposta-icon {
    width: 38px;
    height: 38px;
  }
}

.propostas-em-breve {
  font-weight: 600;
  font-size: 1rem;
  color: rgba(255,255,255,0.35);
  font-style: italic;
  padding: 8px 0 24px;
}

.video-section {
  margin-top: 32px;
  padding-top: 26px;
  border-top: 1px solid rgba(255,255,255,0.10);
}

.video-section-label {
  color: rgba(255,255,255,0.42);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.video-cards {
  display: grid;
  gap: 12px;
}

.video-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px;
  border-radius: 14px;
  background: rgba(255,255,255,0.045);
  border: 1px solid rgba(255,255,255,0.10);
  transition: 0.22s ease;
}

.video-card:hover {
  transform: translateY(-3px);
  border-color: rgba(244,196,0,0.35);
  background: rgba(255,255,255,0.065);
}

.video-card-play {
  width: 38px;
  height: 38px;
  border-radius: 999px;
  background: rgba(244,196,0,0.16);
  color: var(--yellow);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 14px;
}

.video-card-body {
  flex: 1;
  min-width: 0;
}

.video-title {
  color: #fff;
  font-size: 14px;
  font-weight: 800;
}

.video-type {
  color: rgba(255,255,255,0.35);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 4px;
}

.video-card-arrow {
  color: rgba(255,255,255,0.5);
  font-size: 16px;
  flex-shrink: 0;
}

.mapa-label-brasil {
  top: 4%;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.78);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 999px;
  padding: 10px 18px;
  transition: 0.22s ease;
}

.mapa-label-brasil:hover {
  transform: translateX(-50%) scale(1.06);
  color: #ffe978;
  border-color: rgba(255,209,0,0.55);
  background: rgba(255,209,0,0.08);
}

.mapa-label-brasil.active {
  transform: translateX(-50%) scale(1.06);
  color: #ffd100;
  background: rgba(255,209,0,0.16);
  border-color: var(--yellow);
  box-shadow:
    0 0 18px rgba(255,209,0,0.35),
    0 0 34px rgba(255,209,0,0.16);
}

.proposta-categoria {
  color: rgba(255,255,255,0.38);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 6px;
}

/* LIVRO AMARELO */

.livro-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at top, rgba(255,209,0,0.08), transparent 35%),
    linear-gradient(180deg, #0d0f14 0%, #090909 100%);
}

.livro-card {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 48px;
  align-items: center;

  padding: 42px;
  border-radius: 28px;

  background:
    linear-gradient(
      180deg,
      rgba(255,255,255,0.04),
      rgba(255,255,255,0.02)
    );

  border: 1px solid rgba(255,255,255,0.10);

  box-shadow:
    0 20px 60px rgba(0,0,0,0.35),
    0 0 50px rgba(255,209,0,0.05);
}

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

.livro-features {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.livro-feature {
  display: flex;
  align-items: center;
  gap: 14px;

  padding: 16px 18px;

  border-radius: 14px;

  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);

  color: rgba(255,255,255,0.86);
  font-weight: 500;
}

.livro-feature span {
  font-size: 22px;
  flex-shrink: 0;
}

.livro-actions {
  margin-top: 32px;
}

.livro-side {
  display: flex;
  justify-content: center;
  align-items: center;
}

.livro-cover-wrap {
  position: relative;
}

.livro-glow {
  position: absolute;
  inset: 0;

  background:
    radial-gradient(circle, rgba(255,209,0,0.28), transparent 70%);

  filter: blur(34px);
  transform: scale(1.2);
}

.livro-cover {
  position: relative;
  z-index: 2;

  width: 100%;
  max-width: 340px;

  border-radius: 18px;

  box-shadow:
    0 28px 60px rgba(0,0,0,0.45),
    0 0 36px rgba(255,209,0,0.10);

  transition: 0.35s ease;
}

.livro-cover:hover {
  transform: translateY(-6px) scale(1.02);
}

@media (max-width: 980px) {

  .livro-card {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 32px;
    padding: 28px;
  }

  .livro-features {
    text-align: left;
  }

  .livro-actions .btn {
    width: 100%;
  }

  .livro-cover {
    max-width: 260px;
  }
}

.mapa-card[data-regiao-ativa="brasil"] .mapa-label:not(.mapa-label-brasil) {
  color: #ffd100;
  text-shadow:
    0 0 8px rgba(255,209,0,0.75),
    0 0 18px rgba(255,209,0,0.35),
    0 3px 10px rgba(0,0,0,0.85);
}