/* ===== 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-name {
  font-size: 14px;
  font-weight: 900;
  color: var(--purple);
  letter-spacing: 1px;
}

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

.logo-sun {
  font-size: 20px;
  color: var(--orange);
}

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

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

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

/* ===== HERO ===== */
.hero {
  background: linear-gradient(135deg, var(--purple) 0%, var(--purple-dark) 60%, #3D1560 100%);
  position: relative;
  overflow: hidden;
  min-height: 480px;
}

.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;
  margin: 0 auto;
  padding: 60px 24px 100px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.hero-text {
  flex: 1;
}

.hero-sempre {
  display: block;
  font-size: 42px;
  font-weight: 900;
  color: var(--white);
  letter-spacing: 2px;
}

.hero-por {
  display: block;
  font-size: 52px;
  font-weight: 900;
  color: var(--orange);
  letter-spacing: 2px;
  line-height: 1.1;
}

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

.badge-sun {
  font-size: 32px;
  color: var(--orange);
}

.hero-subtitle {
  color: var(--white);
  font-size: 16px;
  line-height: 1.5;
  margin-top: 8px;
}

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

.hero-image {
  flex: 0 0 800px;
  position: relative;
}

.hero-photo-placeholder {
  width: 760px;
  height: 680px;
  background: linear-gradient(180deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.05) 100%);
  border-radius: 20px;
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
}

.hero-person {
  width: 320px;
  height: 440px;
  background: linear-gradient(180deg, #8B5E3C 0%, #6B4226 100%);
  border-radius: 50% 50% 0 0;
  position: absolute;
  bottom: 0;
  z-index: 2;
}

.hero-supporters {
  display: flex;
  gap: 8px;
  position: absolute;
  bottom: 0;
  z-index: 1;
}

.supporter {
  width: 100px;
  height: 160px;
  background: rgba(255,255,255,0.15);
  border-radius: 50% 50% 0 0;
}

.hero-bridge {
  position: absolute;
  bottom: 60px;
  left: 0;
  right: 0;
  height: 30px;
  background: rgba(255,255,255,0.08);
}

/* ===== CTA BUTTONS ===== */
.cta-buttons {
  max-width: 1100px;
  margin: 30px auto 0;
  padding: 0 24px;
  display: flex;
  gap: 16px;
  position: relative;
  z-index: 10;
}

.cta-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 12px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.5px;
  color: var(--white);
  transition: transform 0.2s, box-shadow 0.2s;
  cursor: pointer;
  text-align: center;
}

.cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}

.cta-doar { background: var(--pink); }
.cta-parte { background: var(--orange); }
.cta-manifesto { background: var(--purple); }
.cta-material { background: var(--purple); }

/* ===== 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;
}

.section-icon {
  font-size: 28px;
  margin-bottom: 8px;
}

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

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

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

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

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

.manifesto-form form,
.material-form form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

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

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

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

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

.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: 14px;
  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);
}

.form-secure {
  font-size: 12px;
  color: var(--gray);
  text-align: center;
  margin-top: 4px;
}

/* ===== VEM SER PARTE ===== */
.vem-ser-section {
  background: var(--purple);
  margin: 50px 0 0 0;
  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;
  background: linear-gradient(135deg, #8B5E3C, #6B4226);
  border-radius: 50%;
}

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

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

.vem-ser-hearts {
  color: var(--pink-light);
  font-size: 20px;
  margin-top: 12px;
}

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

.vem-ser-right p {
  font-size: 14px;
  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: 13px;
  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 1fr;
  gap: 40px;
  align-items: start;
}

.material-form {
  display: flex;
  flex-direction: column;
}

.material-form-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}

.material-form .section-icon {
  margin-bottom: 0;
  font-size: 28px;
}

.material-form h2 {
  font-size: 20px;
  font-weight: 900;
  color: var(--purple);
  margin-bottom: 0;
  line-height: 1.3;
}

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

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

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

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

.conheca-text {
  flex: 1;
}

.conheca-text p {
  font-size: 13px;
  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: 13px;
  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 280px;
  width: 280px;
  height: 360px;
  background: linear-gradient(135deg, #8B5E3C, #6B4226);
  border-radius: 12px;
}

/* ===== QUEM NOS APOIA ===== */
.quem-apoia {
  background: var(--white);
  padding: 50px 24px;
  text-align: center;
  border-top: 3px solid var(--purple);
}

.quem-apoia h2 {
  font-size: 22px;
  font-weight: 900;
  color: var(--purple);
  margin-bottom: 30px;
  letter-spacing: 1px;
}

.apoia-categories {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.apoia-category h3 {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1px;
  padding: 6px 16px;
  border-radius: 20px;
  color: var(--white);
  display: inline-block;
  margin-bottom: 16px;
}

.cat-artistas { background: var(--pink); }
.cat-politicos { background: var(--orange); }
.cat-professores { background: var(--purple); }
.cat-militantes { background: var(--pink); }

.apoia-photos {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: center;
}

.apoia-photos .apoia-person {
  width: 100%;
  justify-content: flex-start;
}

.apoia-person {
  display: flex;
  align-items: center;
  gap: 10px;
  text-align: left;
}

.apoia-avatar {
  width: 96px;
  height: 96px;
  min-width: 96px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--purple), var(--pink));
  flex-shrink: 0;
}

.apoia-person span {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.3;
}

.apoia-person small {
  font-size: 10px;
  color: var(--gray);
  font-weight: 400;
}

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

  .nav {
    gap: 16px;
  }

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

  .hero-image {
    flex: none;
  }

  .cta-buttons {
    flex-wrap: wrap;
  }

  .cta-btn {
    flex: 1 1 45%;
  }

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

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

  .apoia-categories {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .apoiadores-container-line {
    gap: 40px;
  }

  .hero-sempre { font-size: 28px; }
  .hero-por { font-size: 36px; }
  .hero-number-badge { font-size: 36px; padding: 6px 20px; }

  .cta-buttons {
    flex-direction: column;
  }

  .cta-btn {
    flex: 1 1 100%;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .apoia-categories {
    grid-template-columns: 1fr;
  }

  .conheca-content {
    flex-direction: column;
  }

  .conheca-photo {
    flex: none;
    width: 100%;
    height: 200px;
  }
}

/* ===== 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-slogan {
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  opacity: 0.9;
}

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

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

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

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

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

#apoiadores-container {
  width: 100%;
  margin-top: 32px;
}

.apoiadores-container-line {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 110px;
  padding: 15px 0;
}

.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: 1rem;
  color: #000;
}

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