/* ===== VARIABLES ===== */
:root {
  --purple: #5b2c86;
  --purple-dark: #4a2070;
  --pink: #e91e8c;
  --pink-light: #f54da6;
  --orange: #f5a623;
  --orange-light: #ffc940;
  --yellow: #ffd93d;
  --white: #ffffff;
  --offwhite: #fff8f0;
  --gray-light: #f5f5f5;
  --gray: #666666;
  --text-dark: #333333;
  --font-main: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

/* ===== RESET ===== */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-main);
  color: var(--text-dark);
  background: var(--offwhite);
  line-height: 1.6;
}

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

/* ===== HEADER ===== */
.header {
  background: var(--white);
  border-bottom: 3px solid var(--purple);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 12px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 6px;
  line-height: 1;
}

.logo-img {
  height: 46px;
  width: auto;
  display: block;
  max-width: 240px;
}

.logo-name {
  font-size: 21px;
  font-weight: 900;
  color: var(--purple);
  letter-spacing: 1px;
}

.logo-number {
  font-size: 33px;
  font-weight: 900;
  color: var(--pink);
}

.nav {
  display: flex;
  gap: 28px;
}

.nav a {
  font-size: 20px;
  font-weight: 700;
  color: var(--purple);
  letter-spacing: 1px;
  transition: color 0.2s;
}

.nav a:hover {
  color: var(--pink);
}

/* ===== HERO ===== */
.hero {
  background:
    url("camila/hero.jpg") 65% 20% / cover no-repeat,
    linear-gradient(
      135deg,
      var(--purple) 0%,
      var(--purple-dark) 60%,
      #3d1560 100%
    );
  position: relative;
  overflow: hidden;
  min-height: 480px;
  display: flex;
  align-items: center;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 80'%3E%3Cpath fill='%23FFF8F0' d='M0,40 C360,80 720,0 1080,40 C1260,60 1380,50 1440,40 L1440,80 L0,80Z'/%3E%3C/svg%3E")
    no-repeat bottom;
  background-size: cover;
}

.hero-content {
  max-width: 1100px;
  width: 100%;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  padding: 40px 24px 80px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 40px;
}

.hero-text {
  flex: 1;
  max-width: 280px;
}

.hero-texto-img {
  display: block;
  width: 100%;
  max-width: 260px;
  height: auto;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.35));
}

.hero-sempre {
  display: block;
  font-size: 63px;
  font-weight: 900;
  color: var(--white);
  letter-spacing: 2px;
  -webkit-text-stroke: 2px #a8a8a8;
}

.hero-por {
  display: block;
  font-size: 78px;
  font-weight: 900;
  color: var(--orange);
  letter-spacing: 2px;
  line-height: 1.1;
  -webkit-text-stroke: 2px #c08020;
}

.hero-number-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(233, 30, 140, 0.8);
  color: var(--white);
  font-size: 72px;
  font-weight: 900;
  padding: 8px 28px;
  border-radius: 12px;
  margin: 16px 0;
}

.hero-subtitle {
  color: var(--white);
  font-size: 24px;
  font-weight: 700;
  line-height: 1.5;
  margin-top: 8px;
  text-shadow:
    0 1px 2px rgba(0, 0, 0, 0.8),
    0 2px 6px rgba(0, 0, 0, 0.6);
}

.hero-subtitle strong {
  color: var(--white);
}

/* ===== MANIFESTO SECTION ===== */
.manifesto-section {
  max-width: 1100px;
  margin: 50px auto;
  padding: 0 24px;
}

.manifesto-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.manifesto-text h2,
.manifesto-form h2 {
  font-size: 33px;
  font-weight: 900;
  color: var(--purple);
  margin-bottom: 16px;
  letter-spacing: 1px;
}

.manifesto-text p {
  font-size: 21px;
  margin-bottom: 12px;
  color: var(--text-dark);
}

.manifesto-highlight {
  color: var(--pink);
  font-size: 23px;
}

.manifesto-mic {
  font-size: 54px;
  margin-top: 12px;
}

/* FORM STYLES */
.form-subtitle {
  font-size: 21px;
  color: var(--gray);
  margin-bottom: 16px;
}

* {
  scroll-margin-top: 150px;
}

.manifesto-form form {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.manifesto-form .form-content {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.manifesto-form input[type="text"],
.manifesto-form input[type="email"],
.manifesto-form input[type="tel"],
.manifesto-form select {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 21px;
  font-family: var(--font-main);
  background: var(--white);
  transition: border-color 0.2s;
}

.manifesto-form input:focus,
.manifesto-form select:focus {
  outline: none;
  border-color: var(--purple);
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 20px;
  color: var(--gray);
  cursor: pointer;
  margin: 16px 0;
}

.checkbox-label input[type="checkbox"] {
  width: 16px;
  height: 16px;
  accent-color: var(--purple);
}

.btn-primary {
  background: var(--pink);
  color: var(--white);
  border: none;
  padding: 14px 24px;
  border-radius: 8px;
  font-size: 21px;
  font-weight: 800;
  letter-spacing: 1px;
  cursor: pointer;
  transition:
    background 0.2s,
    transform 0.2s;
  font-family: var(--font-main);
}

.btn-primary:hover {
  background: var(--purple);
  transform: translateY(-1px);
}

.resposta {
  text-align: center;
  padding: 20px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.resposta h3 {
  font-size: 24px;
  font-weight: 900;
  color: var(--purple);
  line-height: 1.3;
}

.resposta p {
  font-size: 18px;
  color: var(--text-dark);
  line-height: 1.5;
}

.resposta .btn-primary {
  display: inline-block;
  text-decoration: none;
  margin-top: 8px;
}

/* ===== VEM SER PARTE ===== */
.vem-ser-section {
  background: var(--purple);
  padding: 0;
  overflow: hidden;
}

.vem-ser-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: center;
  min-height: 400px;
}

.vem-ser-left {
  display: flex;
  align-items: center;
  justify-content: center;
}

.vem-ser-photo {
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background-image: url("camila/vem_fazer_parte.jpg");
  background-size: cover;
  background-position: center;
}

.vem-ser-center {
  text-align: center;
  padding: 30px 20px;
}

.vem-ser-center h2 {
  color: var(--orange);
  font-size: 39px;
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: 1px;
}

.vem-ser-right {
  padding: 30px 24px;
  color: var(--white);
}

.vem-ser-right p {
  font-size: 21px;
  margin-bottom: 8px;
}

.btn-agente {
  display: inline-block;
  margin-top: 12px;
  padding: 12px 24px;
  background: var(--orange);
  color: var(--white);
  border-radius: 8px;
  font-size: 20px;
  font-weight: 800;
  letter-spacing: 0.5px;
  transition: background 0.2s;
}

.btn-agente:hover {
  background: var(--yellow);
  color: var(--purple);
}

/* ===== MATERIAL + CONHEÇA ===== */
.material-conheca {
  max-width: 1100px;
  margin: 50px auto;
  padding: 0 24px;
}

.material-conheca-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: start;
}

.conheca-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.conheca-icon {
  font-size: 42px;
}

.conheca-header h2 {
  font-size: 33px;
  font-weight: 900;
  color: var(--purple);
}

.conheca-content {
  display: flex;
  gap: 20px;
}

.conheca-text-col {
  flex: 1;
}

.conheca-text {
  flex: 1;
}

.conheca-text p {
  font-size: 20px;
  margin-bottom: 12px;
  color: var(--text-dark);
  line-height: 1.6;
}

.btn-saiba-mais {
  display: inline-block;
  margin-top: 8px;
  padding: 10px 24px;
  background: var(--orange);
  color: var(--white);
  border-radius: 8px;
  font-size: 20px;
  font-weight: 800;
  letter-spacing: 0.5px;
  transition: background 0.2s;
}

.btn-saiba-mais:hover {
  background: var(--yellow);
  color: var(--purple);
}

.conheca-photo {
  flex: 0 0 auto;
  width: auto;
  max-width: 280px;
  height: auto;
  max-height: 400px;
  border: 2px solid var(--orange);
  border-radius: 12px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .header-inner {
    flex-direction: column;
    gap: 12px;
  }

  .nav {
    gap: 16px;
  }

  .hero-content {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    padding: 40px 24px 80px;
  }

  .manifesto-grid,
  .material-conheca-grid {
    grid-template-columns: 1fr;
  }

  .vem-ser-inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 20px;
    padding: 30px 20px;
  }
}

@media (max-width: 600px) {
  .hero-sempre {
    font-size: 42px;
  }
  .hero-por {
    font-size: 54px;
  }
  .hero-number-badge {
    font-size: 54px;
    padding: 6px 20px;
  }

  .conheca-content {
    flex-direction: column;
    align-items: center;
  }

  .conheca-photo {
    flex: none;
    width: 280px;
    max-width: 280px;
    height: auto;
    max-height: 400px;
  }
}

/* ===== FOOTER ===== */
.footer {
  background: linear-gradient(
    135deg,
    var(--purple) 0%,
    var(--purple-dark) 60%,
    #3d1560 100%
  );
  color: var(--white);
  padding: 32px 24px;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
}

.footer-logo {
  display: block;
  width: 100%;
  max-width: 480px;
  height: auto;
  max-height: 92px;
  object-fit: contain;
}

@media (max-width: 600px) {
  .footer-logo {
    max-width: 300px;
    max-height: 64px;
  }
}

.footer-slogan {
  font-size: 1.3rem;
  letter-spacing: 0.05em;
  opacity: 0.9;
}

.footer-legal {
  font-size: 1.2rem;
  line-height: 1.6;
  opacity: 0.8;
}

.footer-evag {
  display: inline-flex;
  align-items: center;
}

.evag-logo {
  height: 24px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.85;
}

/* ===== JINGLE ===== */
.jingle-section {
  background: var(--offwhite);
  padding: 50px 24px;
}

.jingle-inner {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.jingle-title {
  font-size: 33px;
  font-weight: 900;
  color: var(--purple);
  letter-spacing: 1px;
  margin-bottom: 24px;
}

.jingle-player {
  width: 100%;
  max-width: 560px;
  margin: 0 auto;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(91, 44, 134, 0.15);
}

.jingle-player iframe {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  height: auto;
}

.jingle-download {
  display: inline-block;
  margin-top: 24px;
  padding: 12px 24px;
  background: var(--purple);
  color: var(--white);
  border-radius: 8px;
  font-size: 20px;
  font-weight: 800;
  letter-spacing: 0.5px;
  transition: background 0.2s;
}

.jingle-download:hover {
  background: var(--pink);
}

@media (max-width: 600px) {
  .jingle-section {
    padding: 32px 16px;
  }

  .jingle-player {
    max-width: none;
  }
}

/* ===== APOIADORES ===== */
.apoiadores-title {
  text-align: center;
  font-size: 2.9rem;
  font-weight: bold;
  margin: 0;
}

.apoiadores-main-container {
  padding: 0 24px 50px 24px;
}

#apoiadores-container {
  width: 100%;
  margin-top: 32px;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  justify-items: center;
  gap: 40px;
}

.apoiadores-container-line {
  display: contents;
}

.apoiador {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 160px;
}

.apoiador-foto-wrapper {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 12px;
}

.apoiador-foto {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.apoiador-nome {
  margin: 0;
  font-size: 1.5rem;
  color: #000;
}

.apoiador-descricao {
  font-size: 1.3rem;
  color: #666;
}

/* ===== PROPOSTAS (prefixo prop- para não conflitar) ===== */

.prop-hero {
  background: linear-gradient(
    135deg,
    var(--purple) 0%,
    var(--purple-dark) 60%,
    #3d1560 100%
  );
  color: var(--white);
  padding: 56px 24px 48px;
}

.prop-hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.prop-eyebrow {
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--orange-light);
  margin-bottom: 8px;
}

.prop-hero h1 {
  font-size: 48px;
  font-weight: 900;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.prop-lead {
  font-size: 21px;
  max-width: 760px;
  margin: 0 auto 32px;
  line-height: 1.6;
}

.prop-stats {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  max-width: 1000px;
  margin: 0 auto;
}

.prop-stat {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 12px;
  padding: 16px 12px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.prop-stat strong {
  font-size: 36px;
  font-weight: 900;
  color: var(--yellow);
  line-height: 1;
}

.prop-stat span {
  font-size: 15px;
  line-height: 1.4;
}

/* ===== EIXOS NAV ===== */
.prop-eixos-nav {
  max-width: 1100px;
  margin: -0px auto 0;
  padding: 32px 24px 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(260px, 380px));
  justify-content: center;
  gap: 16px;
}

.prop-eixo-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px 16px;
  border-radius: 12px;
  font-size: 20px;
  font-weight: 800;
  color: var(--white);
  transition: transform 0.2s;
  min-height: 96px;
}

.prop-eixo-btn:hover {
  transform: translateY(-2px);
}

.prop-eixo-btn.eixo-1 {
  background: var(--pink);
}

.prop-eixo-btn.eixo-2 {
  background: var(--purple);
}

/* ===== EIXO SECTIONS ===== */
.prop-eixo {
  padding: 40px 24px 8px;
}

.prop-eixo-inner {
  max-width: 900px;
  margin: 0 auto;
}

.prop-eixo h2 {
  font-size: 33px;
  font-weight: 900;
  color: var(--purple);
  margin-bottom: 8px;
  letter-spacing: 0.5px;
}

#eixo1 h2 {
  color: var(--pink);
}

.prop-eixo-intro {
  font-size: 20px;
  margin-bottom: 24px;
  color: var(--text-dark);
}

/* ===== CARDS ===== */
.prop-card {
  background: var(--white);
  border: 1px solid #e8e0f0;
  border-left: 6px solid var(--purple);
  border-radius: 12px;
  margin-bottom: 16px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(91, 44, 134, 0.08);
}

#eixo1 .prop-card {
  border-left-color: var(--pink);
}

.prop-card > summary {
  cursor: pointer;
  padding: 18px 20px;
  font-size: 22px;
  font-weight: 800;
  color: var(--purple-dark);
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.prop-card > summary::-webkit-details-marker {
  display: none;
}

.prop-card > summary::after {
  content: "+";
  font-size: 30px;
  font-weight: 900;
  color: var(--pink);
  flex-shrink: 0;
}

.prop-card[open] > summary::after {
  content: "–";
}

.prop-card-body {
  padding: 0 20px 20px;
}

.prop-card-body > p {
  font-size: 18px;
  margin-bottom: 16px;
}

.prop-sub {
  background: var(--offwhite);
  border: 1px solid #eee0e8;
  border-radius: 8px;
  margin-bottom: 12px;
}

.prop-sub > summary {
  cursor: pointer;
  padding: 14px 16px;
  font-size: 18px;
  font-weight: 800;
  color: var(--pink);
  list-style: none;
}

.prop-sub > summary::-webkit-details-marker {
  display: none;
}

.prop-sub ul {
  padding: 0 16px 16px 36px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.prop-sub li {
  font-size: 17px;
  line-height: 1.55;
}

/* ===== ENCERRAMENTO ===== */
.prop-cta {
  background: var(--purple);
  margin-top: 48px;
  padding: 56px 24px;
  text-align: center;
  color: var(--white);
}

.prop-cta-inner {
  max-width: 800px;
  margin: 0 auto;
}

.prop-cta h2 {
  font-size: 36px;
  font-weight: 900;
  color: var(--orange);
  margin-bottom: 12px;
  letter-spacing: 1px;
}

.prop-cta p {
  font-size: 20px;
  margin-bottom: 28px;
}

.prop-cta-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.prop-btn {
  display: inline-block;
  padding: 14px 24px;
  border-radius: 8px;
  font-size: 19px;
  font-weight: 800;
  transition: transform 0.2s, background 0.2s;
}

.prop-btn:hover {
  transform: translateY(-1px);
}

.prop-btn-pdf {
  background: var(--orange);
  color: var(--white);
}

.prop-btn-pdf:hover {
  background: var(--yellow);
  color: var(--purple);
}

.prop-btn-apoio {
  background: var(--pink);
  color: var(--white);
}

.prop-btn-apoio:hover {
  background: var(--pink-light);
}

.prop-btn-share {
  background: var(--white);
  color: var(--purple);
}

.prop-btn-share:hover {
  background: var(--gray-light);
}

/* ===== CTA NA PÁGINA PRINCIPAL ===== */
.prop-home-cta {
  background: var(--purple);
  padding: 48px 24px;
  text-align: center;
  color: var(--white);
}

.prop-home-cta h2 {
  font-size: 33px;
  font-weight: 900;
  margin-bottom: 8px;
  letter-spacing: 1px;
  color: var(--orange);
}

.prop-home-cta p {
  font-size: 20px;
  margin-bottom: 24px;
}

.prop-home-btn {
  display: inline-block;
  background: var(--orange);
  color: var(--white);
  padding: 14px 32px;
  border-radius: 8px;
  font-size: 21px;
  font-weight: 800;
  transition:
    background 0.2s,
    transform 0.2s;
}

.prop-home-btn:hover {
  background: var(--yellow);
  color: var(--purple);
  transform: translateY(-2px);
}

/* ===== PROPOSTAS RESPONSIVE ===== */
@media (max-width: 900px) {
  .prop-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .prop-eixos-nav {
    grid-template-columns: minmax(260px, 480px);
    justify-content: center;
  }

  .prop-eixo-btn {
    min-height: auto;
  }
}

@media (max-width: 600px) {
  .prop-hero h1 {
    font-size: 36px;
  }

  .prop-lead {
    font-size: 18px;
  }

  .prop-eixo h2 {
    font-size: 27px;
  }

  .prop-card > summary {
    font-size: 19px;
  }

  .prop-cta-btns {
    flex-direction: column;
    align-items: stretch;
  }
}
