/* Reset e Base */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Inter', 'Segoe UI', sans-serif;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
  color: #ffffff;
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Animações */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes gentleGlow {
  0%, 100% { box-shadow: 0 0 15px rgba(255, 215, 0, 0.2); }
  50% { box-shadow: 0 0 25px rgba(255, 215, 0, 0.4); }
}

/* Hero Section */
.hero-section {
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #2a1810 100%);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at center, rgba(255, 215, 0, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  animation: fadeInUp 0.8s ease-out;
}

.hero-headline {
  font-size: 3.2em;
  font-weight: 700;
  margin-bottom: 25px;
  background: linear-gradient(45deg, #FFD700, #FFA500, #FFD700);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.2;
}

.hero-subheadline {
  font-size: 1.3em;
  color: #e0e0e0;
  margin-bottom: 30px;
  font-weight: 400;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.mission-statement {
  background: rgba(255, 215, 0, 0.1);
  border: 1px solid rgba(255, 215, 0, 0.3);
  border-radius: 15px;
  padding: 20px;
  margin: 30px auto;
  max-width: 600px;
}

.mission-statement p {
  font-size: 1.2em;
  color: #FFD700;
  font-style: italic;
  font-weight: 500;
  margin: 0;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  margin: 50px 0;
  padding: 30px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-item {
  text-align: center;
}

.stat-number {
  display: block;
  font-size: 2.2em;
  font-weight: 700;
  color: #FFD700;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 0.95em;
  color: #cccccc;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 500;
}

.cta-primary {
  background: linear-gradient(45deg, #FFD700, #FFA500);
  color: #000;
  border: none;
  padding: 18px 35px;
  border-radius: 12px;
  font-size: 1.2em;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  margin: 30px 0;
  animation: gentleGlow 3s infinite;
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.3);
}

.cta-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.5);
}

.hero-promise {
  font-size: 1em;
  color: #28a745;
  margin-top: 25px;
  font-weight: 500;
}

/* About Section */
.about-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
}

.about-section h2 {
  font-size: 2.5em;
  margin-bottom: 40px;
  color: #ffffff;
  font-weight: 700;
  text-align: center;
}

.about-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 50px;
  margin-top: 40px;
}

.about-text p {
  font-size: 1.1em;
  color: #e0e0e0;
  margin-bottom: 20px;
  line-height: 1.7;
}

.about-values {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 30px;
  backdrop-filter: blur(10px);
}

.about-values h3 {
  color: #FFD700;
  font-size: 1.3em;
  margin-bottom: 20px;
  font-weight: 600;
}

.about-values ul {
  list-style: none;
}

.about-values li {
  color: #e0e0e0;
  margin-bottom: 15px;
  padding-left: 20px;
  position: relative;
  line-height: 1.6;
}

.about-values li::before {
  content: '✨';
  position: absolute;
  left: 0;
  top: 0;
}

.about-values li strong {
  color: #FFD700;
}

/* How We Work */
.how-we-work {
  padding: 80px 0;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
  text-align: center;
}

.how-we-work h2 {
  font-size: 2.5em;
  margin-bottom: 30px;
  color: #ffffff;
  font-weight: 700;
}

.section-intro {
  font-size: 1.2em;
  color: #cccccc;
  margin-bottom: 50px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.steps-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  margin: 50px 0;
}

.step-item {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  transition: all 0.3s ease;
}

.step-item:hover {
  transform: translateY(-5px);
  border-color: #FFD700;
  box-shadow: 0 10px 30px rgba(255, 215, 0, 0.15);
}

.step-number {
  width: 60px;
  height: 60px;
  background: linear-gradient(45deg, #FFD700, #FFA500);
  color: #000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5em;
  font-weight: 800;
  margin: 0 auto 20px;
}

.step-item h3 {
  font-size: 1.3em;
  color: #ffffff;
  margin-bottom: 15px;
  font-weight: 600;
}

.step-item p {
  color: #cccccc;
  line-height: 1.6;
}

.bible-verse-card {
  background: rgba(255, 215, 0, 0.1);
  border: 2px solid #FFD700;
  border-radius: 20px;
  padding: 40px;
  margin: 50px auto;
  max-width: 800px;
  text-align: center;
}

.bible-verse {
  font-size: 1.2em;
  color: #FFD700;
  font-style: italic;
  margin-bottom: 15px;
  line-height: 1.6;
}

.bible-reference {
  font-size: 1em;
  color: #ffffff;
  font-weight: 600;
}

/* Prayer Section */
.prayer-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
}

.prayer-section h2 {
  font-size: 2.5em;
  margin-bottom: 30px;
  color: #ffffff;
  font-weight: 700;
  text-align: center;
}

.prayer-intro {
  font-size: 1.2em;
  color: #cccccc;
  margin-bottom: 40px;
  text-align: center;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.prayer-form {
  max-width: 700px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.05);
  padding: 50px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}

.form-group {
  margin-bottom: 30px;
}

.form-group label {
  display: block;
  margin-bottom: 10px;
  color: #ffffff;
  font-weight: 600;
  font-size: 1em;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 18px 20px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
  color: white;
  font-size: 1em;
  font-family: 'Inter', sans-serif;
  outline: none;
  transition: all 0.3s ease;
  resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: #FFD700;
  box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.2);
  background: rgba(255, 255, 255, 0.08);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #888;
}

.prayer-submit-btn {
  width: 100%;
  background: linear-gradient(45deg, #FFD700, #FFA500);
  color: #000;
  border: none;
  padding: 20px 30px;
  border-radius: 15px;
  cursor: pointer;
  font-size: 1.2em;
  font-weight: 700;
  transition: all 0.3s ease;
  margin-top: 15px;
}

.prayer-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
}

.form-note {
  font-size: 0.9em;
  color: #28a745;
  text-align: center;
  margin-top: 15px;
  font-style: italic;
}

/* Prayer Success */
.prayer-success {
  padding: 80px 0;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
  text-align: center;
  animation: fadeInUp 0.8s ease-out;
}

.prayer-success h2 {
  font-size: 2.5em;
  margin-bottom: 30px;
  color: #28a745;
  font-weight: 700;
}

.prayer-success p {
  font-size: 1.2em;
  color: #ffffff;
  margin-bottom: 30px;
  line-height: 1.6;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.new-prayer-btn {
  background: linear-gradient(45deg, #667eea, #764ba2);
  color: white;
  border: none;
  padding: 18px 35px;
  border-radius: 12px;
  cursor: pointer;
  font-size: 1.1em;
  font-weight: 600;
  transition: all 0.3s ease;
}

.new-prayer-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

/* Testimonials */
.testimonials-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
  text-align: center;
}

.testimonials-section h2 {
  font-size: 2.5em;
  margin-bottom: 30px;
  color: #ffffff;
  font-weight: 700;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin: 50px 0;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 30px;
  text-align: left;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.testimonial-card:hover {
  transform: translateY(-5px);
  border-color: #28a745;
  box-shadow: 0 10px 30px rgba(40, 167, 69, 0.2);
}

.testimonial-content p {
  font-size: 1.1em;
  color: #ffffff;
  line-height: 1.6;
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 15px;
}

.author-avatar {
  width: 50px;
  height: 50px;
  background: linear-gradient(45deg, #28a745, #20c997);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5em;
}

.author-info strong {
  display: block;
  color: #FFD700;
  font-weight: 600;
}

.author-info span {
  color: #cccccc;
  font-size: 0.9em;
}

/* Support Section */
.support-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
  text-align: center;
}

.support-section h2 {
  font-size: 2.5em;
  margin-bottom: 30px;
  color: #ffffff;
  font-weight: 700;
}

.support-description {
  font-size: 1.2em;
  color: #cccccc;
  margin-bottom: 50px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.support-ways {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin: 50px 0;
}

.support-item {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 30px 20px;
  text-align: center;
  transition: all 0.3s ease;
}

.support-item:hover {
  transform: translateY(-5px);
  border-color: #FFD700;
  box-shadow: 0 10px 30px rgba(255, 215, 0, 0.15);
}

.support-icon {
  font-size: 2.5em;
  display: block;
  margin-bottom: 15px;
}

.support-item h3 {
  font-size: 1.2em;
  color: #FFD700;
  margin-bottom: 10px;
  font-weight: 600;
}

.support-item p {
  color: #cccccc;
  line-height: 1.5;
}

.donation-area {
  margin-top: 60px;
  padding: 40px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.donation-area h3 {
  font-size: 1.5em;
  color: #ffffff;
  margin-bottom: 20px;
  font-weight: 600;
}

.donation-area > p {
  color: #cccccc;
  margin-bottom: 30px;
  font-size: 1.1em;
}

.qr-container {
  margin: 30px 0;
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.qrcode {
  max-width: 280px;
  width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease;
  border: 2px solid #FFD700;
}

.qrcode:hover {
  transform: scale(1.02);
}

.loading {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1em;
  color: #FFD700;
}

.error {
  text-align: center;
  color: #ff6b6b;
}

.error p {
  margin-bottom: 15px;
  font-size: 1.1em;
}

.retry-btn {
  background: linear-gradient(45deg, #ff6b6b, #ff5252);
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: 10px;
  cursor: pointer;
  font-size: 1em;
  font-weight: 600;
  transition: all 0.3s ease;
}

.retry-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 107, 107, 0.4);
}

.pix-info {
  margin: 30px 0;
  padding: 25px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.pix-key {
  font-size: 1em;
  color: #ffffff;
  margin-bottom: 20px;
  word-break: break-all;
}

.copy-btn {
  background: linear-gradient(45deg, #28a745, #20c997);
  color: white;
  border: none;
  padding: 12px 25px;
  border-radius: 10px;
  cursor: pointer;
  font-size: 1em;
  font-weight: 600;
  transition: all 0.3s ease;
}

.copy-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(40, 167, 69, 0.4);
}

.donation-amounts {
  margin: 30px 0;
  padding: 25px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.donation-amounts p {
  margin-bottom: 20px;
  color: #ffffff;
  font-weight: 500;
  font-size: 1em;
}

.amount-buttons {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
  gap: 15px;
  margin-bottom: 20px;
}

.amount-btn {
  background: linear-gradient(45deg, #667eea, #764ba2);
  color: white;
  border: none;
  padding: 15px 18px;
  border-radius: 10px;
  cursor: pointer;
  font-size: 1em;
  font-weight: 600;
  transition: all 0.3s ease;
}

.amount-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

.custom-amount {
  display: flex;
  gap: 15px;
  margin-top: 15px;
}

#customAmount {
  flex: 1;
  padding: 15px 18px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.05);
  color: white;
  font-size: 1em;
  outline: none;
  transition: all 0.3s ease;
}

#customAmount:focus {
  border-color: #FFD700;
  box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.2);
}

#customAmount::placeholder {
  color: #888;
}

.custom-btn {
  background: linear-gradient(45deg, #FFD700, #FFA500);
  color: #000;
  border: none;
  padding: 15px 20px;
  border-radius: 10px;
  cursor: pointer;
  font-size: 1em;
  font-weight: 600;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.custom-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
}

.transparency-note {
  margin-top: 30px;
  padding: 20px;
  background: rgba(40, 167, 69, 0.1);
  border: 1px solid rgba(40, 167, 69, 0.3);
  border-radius: 12px;
}

.transparency-note p {
  color: #ffffff;
  font-size: 0.95em;
  line-height: 1.6;
  margin: 0;
}

/* Promise Section */
.promise-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
  text-align: center;
}

.promise-section h2 {
  font-size: 2.5em;
  margin-bottom: 50px;
  color: #ffffff;
  font-weight: 700;
}

.promise-card {
  max-width: 800px;
  margin: 0 auto;
  background: rgba(40, 167, 69, 0.1);
  border: 2px solid #28a745;
  border-radius: 20px;
  padding: 50px 40px;
  text-align: center;
}

.promise-icon {
  font-size: 3.5em;
  margin-bottom: 20px;
  display: block;
}

.promise-card h3 {
  font-size: 1.6em;
  color: #28a745;
  margin-bottom: 20px;
  font-weight: 700;
}

.promise-card p {
  font-size: 1.1em;
  color: #ffffff;
  line-height: 1.6;
  margin-bottom: 15px;
}

/* Footer */
.footer {
  padding: 60px 0 40px;
  background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
  margin-bottom: 30px;
}

.footer-content h3 {
  font-size: 2em;
  background: linear-gradient(45deg, #FFD700, #FFA500);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
  margin-bottom: 10px;
}

.footer-content p {
  color: #cccccc;
  margin-bottom: 10px;
  font-size: 1.1em;
}

.footer-mission {
  font-style: italic;
  color: #FFD700;
  max-width: 800px;
  margin: 20px auto;
  line-height: 1.6;
  font-size: 1em !important;
}

.footer-links {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.footer-btn {
  background: linear-gradient(45deg, #667eea, #764ba2);
  color: white;
  border: none;
  padding: 15px 25px;
  border-radius: 10px;
  cursor: pointer;
  font-size: 1em;
  font-weight: 600;
  transition: all 0.3s ease;
}

.footer-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

/* Responsividade */
@media (max-width: 768px) {
  .container {
    padding: 0 15px;
  }
  
  .hero-headline {
    font-size: 2.5em;
  }
  
  .hero-subheadline {
    font-size: 1.2em;
  }
  
  .hero-stats {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 25px;
  }
  
  .stat-number {
    font-size: 2em;
  }
  
  .cta-primary {
    padding: 16px 30px;
    font-size: 1.1em;
  }
  
  .about-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .about-section h2,
  .how-we-work h2,
  .testimonials-section h2,
  .support-section h2,
  .promise-section h2,
  .prayer-section h2 {
    font-size: 2em;
  }
  
  .steps-container {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .support-ways {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .amount-buttons {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .custom-amount {
    flex-direction: column;
    gap: 10px;
  }
  
  .qrcode {
    max-width: 250px;
  }
  
  .prayer-form {
    padding: 30px 25px;
  }
  
  .footer-links {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 480px) {
  .hero-headline {
    font-size: 2em;
  }
  
  .hero-subheadline {
    font-size: 1.1em;
  }
  
  .stat-number {
    font-size: 1.8em;
  }
  
  .amount-buttons {
    grid-template-columns: 1fr;
  }
  
  .qrcode {
    max-width: 220px;
  }
  
  .prayer-form {
    padding: 25px 20px;
  }
  
  .promise-card,
  .donation-area {
    padding: 30px 20px;
  }
}

/* Smooth Scrolling */
html {
  scroll-behavior: smooth;
}

/* Utility Classes */
.text-center {
  text-align: center;
}

.mb-0 {
  margin-bottom: 0;
}

.mt-0 {
  margin-top: 0;
}

.hidden {
  display: none;
}

.visible {
  display: block;
}
