/* ============================================
   APOIE JESSE - DESIGN DO VÍDEO
   Cores: Preto #000 + Dourado #d4af37
   ============================================ */

:root {
  --preto: #000000;
  --dourado: #d4af37;
  --dourado-escuro: #b8941f;
  --branco: #ffffff;
  --cinza-claro: #f5f5f5;
  --cinza-medio: #666666;
  --verde-escuro: #1a2a1a;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: var(--preto);
  color: var(--branco);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ============================================
   HEADER
   ============================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(10px);
  padding: 20px 40px;
  z-index: 1000;
  border-bottom: 2px solid var(--dourado);
}

.header-content {
  max-width: 1400px;
  margin: 0 auto;
  text-align: center;
}

.site-title {
  font-size: 28px;
  color: var(--dourado);
  margin-bottom: 5px;
  font-weight: bold;
}

.site-tagline {
  font-size: 14px;
  color: var(--cinza-claro);
  margin-bottom: 15px;
}

.nav-links {
  display: flex;
  gap: 30px;
  justify-content: center;
  align-items: center;
}

.nav-links a {
  color: var(--branco);
  text-decoration: none;
  font-size: 16px;
  transition: color 0.3s;
  padding: 8px 16px;
}

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

.btn-doar {
  background: linear-gradient(135deg, var(--dourado), var(--dourado-escuro));
  color: var(--preto) !important;
  padding: 10px 24px !important;
  border-radius: 50px;
  font-weight: bold;
}

.btn-doar:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 140px 40px 60px;
  position: relative;
  overflow: hidden;
  background: var(--preto);
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('/bateria-fundo.jpg') center/cover no-repeat;
  opacity: 0.3;
  z-index: 0;
}

.hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.85), rgba(26,42,26,0.7));
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
}

.hero-title {
  font-size: 48px;
  margin-bottom: 30px;
  color: var(--dourado);
  text-shadow: 2px 2px 10px rgba(0,0,0,0.8);
  font-weight: bold;
  line-height: 1.2;
}

.hero-text {
  font-size: 20px;
  margin-bottom: 40px;
  color: var(--cinza-claro);
  line-height: 1.8;
}

.highlight {
  color: var(--dourado);
  font-weight: bold;
}

.cta-button {
  display: inline-block;
  background: linear-gradient(135deg, var(--dourado), var(--dourado-escuro));
  color: var(--preto);
  padding: 18px 48px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 18px;
  transition: all 0.3s;
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.6);
}

.cta-button i {
  margin-right: 10px;
}

/* ============================================
   HISTÓRIA SECTION
   ============================================ */
.historia {
  padding: 80px 40px;
  background: linear-gradient(180deg, rgba(0,0,0,1), rgba(26,42,26,0.8));
}

.historia-content {
  max-width: 1400px;
  margin: 0 auto;
}

.section-title {
  font-size: 42px;
  color: var(--dourado);
  margin-bottom: 50px;
  text-align: center;
  font-weight: bold;
}

.section-title i {
  margin-right: 15px;
}

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

.historia-text p {
  font-size: 18px;
  line-height: 1.9;
  margin-bottom: 25px;
  color: var(--cinza-claro);
}

.destaque {
  color: var(--dourado);
  font-weight: bold;
}

.quote {
  background: rgba(212, 175, 55, 0.1);
  border-left: 4px solid var(--dourado);
  padding: 25px 30px;
  margin: 30px 0;
  font-style: italic;
  color: var(--cinza-claro);
  position: relative;
}

.quote i {
  color: var(--dourado);
  font-size: 20px;
}

.quote .fa-quote-left {
  margin-right: 10px;
}

.quote .fa-quote-right {
  margin-left: 10px;
  float: right;
}

.cards-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.info-card {
  background: rgba(26, 42, 26, 0.6);
  border: 2px solid var(--dourado);
  border-radius: 20px;
  padding: 30px;
  text-align: center;
  transition: transform 0.3s;
}

.info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
}

.info-card i {
  font-size: 48px;
  color: var(--dourado);
  margin-bottom: 20px;
}

.info-card h3 {
  font-size: 22px;
  color: var(--dourado);
  margin-bottom: 15px;
  font-weight: bold;
}

.info-card p {
  font-size: 16px;
  color: var(--cinza-claro);
  line-height: 1.6;
  margin: 0;
}

/* ============================================
   DOAÇÃO SECTION
   ============================================ */
.doar {
  padding: 80px 40px;
  background: var(--preto);
}

.doar-content {
  max-width: 1400px;
  margin: 0 auto;
}

.doar-subtitle {
  text-align: center;
  font-size: 18px;
  color: var(--cinza-claro);
  margin-bottom: 50px;
}

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

.pix-card {
  background: rgba(26, 42, 26, 0.6);
  border: 2px solid var(--dourado);
  border-radius: 20px;
  padding: 40px;
  text-align: center;
}

.pix-card h3 {
  font-size: 28px;
  color: var(--dourado);
  margin-bottom: 30px;
  font-weight: bold;
}

.pix-card h3 i {
  margin-right: 12px;
}

.qr-code {
  margin: 30px 0;
}

.qr-code img {
  width: 100%;
  max-width: 350px;
  border: 4px solid var(--dourado);
  border-radius: 20px;
  box-shadow: 0 6px 25px rgba(212, 175, 55, 0.3);
}

.pix-copia-cola {
  margin-top: 40px;
}

.pix-label {
  font-size: 18px;
  color: var(--dourado);
  margin-bottom: 15px;
  font-weight: bold;
}

.pix-input-group {
  display: flex;
  gap: 10px;
  align-items: center;
}

.pix-input {
  flex: 1;
  background: rgba(0, 0, 0, 0.6);
  border: 2px solid var(--dourado);
  border-radius: 10px;
  padding: 15px;
  font-family: monospace;
  font-size: 12px;
  color: var(--cinza-claro);
  outline: none;
}

.copy-btn {
  background: linear-gradient(135deg, var(--dourado), var(--dourado-escuro));
  color: var(--preto);
  border: none;
  padding: 15px 25px;
  border-radius: 10px;
  cursor: pointer;
  font-size: 20px;
  transition: all 0.3s;
  min-width: 60px;
}

.copy-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.5);
}

.copy-btn.success {
  background: linear-gradient(135deg, #28a745, #218838);
}

.info-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.meta-card,
.garantia-card,
.impacto-card {
  background: rgba(26, 42, 26, 0.6);
  border: 2px solid var(--dourado);
  border-radius: 20px;
  padding: 30px;
  text-align: center;
}

.meta-card i,
.garantia-card i,
.impacto-card i {
  font-size: 42px;
  color: var(--dourado);
  margin-bottom: 15px;
}

.meta-card h3,
.garantia-card h3,
.impacto-card h3 {
  font-size: 22px;
  color: var(--dourado);
  margin-bottom: 15px;
  font-weight: bold;
}

.meta-valor {
  font-size: 36px;
  color: var(--branco);
  font-weight: bold;
  margin: 15px 0;
}

.meta-desc {
  font-size: 16px;
  color: var(--cinza-claro);
  margin: 10px 0 0;
}

.garantia-card p,
.impacto-card p {
  font-size: 16px;
  color: var(--cinza-claro);
  line-height: 1.6;
  margin: 0;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--preto);
  padding: 40px 40px;
  text-align: center;
  border-top: 2px solid var(--dourado);
}

.footer p {
  color: var(--cinza-claro);
  font-size: 14px;
  margin-bottom: 20px;
}

.instagram-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--dourado), var(--dourado-escuro));
  color: var(--preto);
  font-size: 28px;
  border-radius: 50%;
  text-decoration: none;
  transition: all 0.3s;
}

.instagram-link:hover {
  transform: scale(1.15) rotate(10deg);
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.5);
}

/* ============================================
   RESPONSIVO - MOBILE
   ============================================ */
@media (max-width: 768px) {
  .header {
    padding: 15px 20px;
  }

  .site-title {
    font-size: 22px;
  }

  .site-tagline {
    font-size: 12px;
  }

  .nav-links {
    gap: 15px;
  }

  .nav-links a {
    font-size: 14px;
    padding: 6px 12px;
  }

  .btn-doar {
    padding: 8px 18px !important;
  }

  .hero {
    padding: 120px 20px 40px;
  }

  .hero-title {
    font-size: 32px;
  }

  .hero-text {
    font-size: 16px;
  }

  .cta-button {
    font-size: 16px;
    padding: 14px 32px;
  }

  .section-title {
    font-size: 28px;
  }

  .historia-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .historia-text p {
    font-size: 16px;
  }

  .donation-grid {
    grid-template-columns: 1fr;
  }

  .qr-code img {
    max-width: 280px;
  }

  .pix-input {
    font-size: 10px;
    padding: 12px;
  }
}
