/* ===== VARIÁVEIS DE COR ===== */
:root {
  --blue: #2196F3;
  --green-light: #8BC34A;
  --green: #4CAF50;
  --yellow: #FFC107;
  --orange: #FF9800;
  --red: #F44336;
  --pink: #E91E8C;
  --purple: #9C27B0;
  --dark: #1a1a2e;
  --dark-2: #16213e;
  --text: #333;
  --text-light: #666;
  --bg-light: #f8f9fa;
  --white: #ffffff;
  --shadow: 0 4px 20px rgba(0,0,0,0.1);
  --shadow-hover: 0 8px 30px rgba(0,0,0,0.15);
  --radius: 16px;
  --radius-sm: 8px;
  --transition: all 0.3s ease;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Nunito', sans-serif;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.7;
}

img { max-width: 100%; height: auto; display: block; }

a { text-decoration: none; color: inherit; transition: var(--transition); }

ul { list-style: none; }

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

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 12px 0;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
  transition: var(--transition);
}

.navbar.scrolled {
  padding: 8px 0;
  box-shadow: 0 4px 30px rgba(0,0,0,0.12);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--dark);
}

.nav-logo img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  border-radius: 50%;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-link {
  padding: 8px 16px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text);
  transition: var(--transition);
}

.nav-link:hover {
  background: var(--bg-light);
  color: var(--blue);
}

.nav-cta {
  background: linear-gradient(135deg, var(--orange), var(--red));
  color: white !important;
  padding: 10px 20px;
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(244,67,54,0.4);
  background: linear-gradient(135deg, var(--orange), var(--red)) !important;
  color: white !important;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 26px;
  height: 3px;
  background: var(--dark);
  border-radius: 3px;
  transition: var(--transition);
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(26,26,46,0.85) 0%,
    rgba(33,150,243,0.6) 50%,
    rgba(156,39,176,0.7) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: white;
  padding: 120px 24px 80px;
}

.hero-logo {
  width: 140px;
  height: 140px;
  object-fit: contain;
  margin: 0 auto 24px;
  border-radius: 50%;
  background: white;
  padding: 8px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.3);
}

.hero-content h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900;
  margin-bottom: 12px;
  text-shadow: 0 2px 10px rgba(0,0,0,0.3);
  line-height: 1.2;
}

.hero-tagline {
  font-size: clamp(1.2rem, 3vw, 1.8rem);
  font-weight: 700;
  color: var(--yellow);
  margin-bottom: 16px;
  letter-spacing: 1px;
}

.hero-sub {
  font-size: clamp(0.95rem, 2vw, 1.15rem);
  color: rgba(255,255,255,0.9);
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-wave {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 2;
}

.hero-wave svg { display: block; }

/* ===== ANIMAÇÕES ===== */
.animate-in {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.8s ease forwards;
}

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }
.delay-4 { animation-delay: 0.8s; }

@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

/* ===== BOTÕES ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--orange), var(--red));
  color: white;
  box-shadow: 0 4px 15px rgba(244,67,54,0.3);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(244,67,54,0.4);
  color: white;
}

.btn-outline {
  background: transparent;
  color: white;
  border: 2px solid rgba(255,255,255,0.7);
}

.btn-outline:hover {
  background: rgba(255,255,255,0.15);
  border-color: white;
  color: white;
}

.btn-whatsapp {
  background: #25D366;
  color: white;
  box-shadow: 0 4px 15px rgba(37,211,102,0.3);
  margin-top: 12px;
}

.btn-whatsapp:hover {
  background: #1ebe5d;
  transform: translateY(-2px);
  color: white;
}

.btn-whatsapp-sm {
  background: #25D366;
  color: white;
  padding: 10px 20px;
  font-size: 0.9rem;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  margin-top: 12px;
  transition: var(--transition);
}

.btn-whatsapp-sm:hover {
  background: #1ebe5d;
  color: white;
  transform: translateY(-2px);
}

.btn-instagram {
  background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  color: white;
  box-shadow: 0 4px 15px rgba(220,39,67,0.3);
}

.btn-instagram:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(220,39,67,0.4);
  color: white;
}

.btn-full { width: 100%; justify-content: center; }

/* ===== STATS ===== */
.stats {
  padding: 60px 0;
  background: white;
}

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

.stat-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 24px;
  background: var(--bg-light);
  border-radius: var(--radius);
  transition: var(--transition);
}

.stat-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.stat-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.stat-icon i {
  font-size: 1.5rem;
  color: white;
}

.stat-info { display: flex; flex-direction: column; }

.stat-number {
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--dark);
  line-height: 1;
}

.stat-label {
  font-size: 0.85rem;
  color: var(--text-light);
  font-weight: 600;
  margin-top: 4px;
}

/* ===== SEÇÕES GERAIS ===== */
.section { padding: 100px 0; }

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

.section-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--blue), var(--purple));
  color: white;
  padding: 6px 20px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.section-header h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 900;
  color: var(--dark);
  margin-bottom: 12px;
}

.section-header p {
  font-size: 1.1rem;
  color: var(--text-light);
  max-width: 500px;
  margin: 0 auto;
}

/* ===== SOBRE ===== */
.sobre { background: var(--bg-light); }

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

.sobre-text h3 {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 20px;
}

.sobre-text p {
  color: var(--text-light);
  margin-bottom: 16px;
  font-size: 1.05rem;
}

.sobre-valores {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 32px;
}

.valor-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  background: white;
  border-radius: var(--radius-sm);
  font-weight: 700;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.valor-item:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}

.valor-item i { font-size: 1.3rem; }

.sobre-visual { display: flex; flex-direction: column; gap: 24px; }

.sobre-card-destaque {
  background: white;
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow);
  border-top: 4px solid var(--blue);
  transition: var(--transition);
}

.sobre-card-destaque:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.destaque-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 16px;
  background: linear-gradient(135deg, var(--blue), var(--purple));
  display: flex;
  align-items: center;
  justify-content: center;
}

.destaque-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 6px;
}

.sobre-card-destaque h4 {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 8px;
}

.sobre-card-destaque p {
  color: var(--text-light);
  font-size: 0.95rem;
}

/* ===== ONGs ===== */
.ongs { background: white; }

.ongs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}

.ong-card {
  background: var(--bg-light);
  border-radius: var(--radius);
  padding: 28px;
  border-left: 4px solid var(--accent, var(--blue));
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.ong-card::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 80px;
  height: 80px;
  background: var(--accent, var(--blue));
  opacity: 0.05;
  border-radius: 50%;
  transform: translate(20px, -20px);
}

.ong-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  background: white;
}

.ong-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: var(--accent, var(--blue));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.ong-icon i {
  font-size: 1.3rem;
  color: white;
}

.ong-card h4 {
  font-size: 1rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 8px;
}

.ong-card p {
  font-size: 0.9rem;
  color: var(--text-light);
}

/* ===== DIRETORIA ===== */
.diretoria { background: var(--bg-light); }

.diretoria-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  max-width: 900px;
  margin: 0 auto;
}

.diretor-card {
  background: white;
  border-radius: var(--radius);
  padding: 40px 32px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.diretor-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}

.diretor-avatar {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.diretor-avatar i {
  font-size: 2.5rem;
  color: white;
}

.diretor-info h4 {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 8px;
}

.diretor-cargo {
  display: inline-block;
  background: linear-gradient(135deg, var(--blue), var(--purple));
  color: white;
  padding: 4px 16px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
}

/* ===== DOE AGORA ===== */
.doe {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-2) 50%, #0f3460 100%);
  position: relative;
  overflow: hidden;
}

.doe::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(33,150,243,0.15), transparent);
  border-radius: 50%;
}

.doe::after {
  content: '';
  position: absolute;
  bottom: -100px; left: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(156,39,176,0.15), transparent);
  border-radius: 50%;
}

.doe-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
  position: relative;
  z-index: 1;
}

.doe-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 40px;
  backdrop-filter: blur(10px);
}

.pix-card {
  border-top: 4px solid #32BCAD;
}

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

.pix-icon {
  width: 60px;
  height: 60px;
  background: rgba(50,188,173,0.15);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pix-header h3 {
  font-size: 1.5rem;
  font-weight: 800;
  color: white;
}

.pix-key-box {
  background: rgba(255,255,255,0.08);
  border-radius: var(--radius-sm);
  padding: 20px;
  margin-bottom: 24px;
  border: 1px solid rgba(255,255,255,0.1);
}

.pix-label {
  font-size: 0.8rem;
  font-weight: 700;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.pix-key {
  font-size: 1.2rem;
  font-weight: 800;
  color: #32BCAD;
  font-family: monospace;
  margin-bottom: 16px;
  word-break: break-all;
}

.btn-copy {
  background: #32BCAD;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 50px;
  font-weight: 700;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
  font-size: 0.9rem;
}

.btn-copy:hover {
  background: #2aa99b;
  transform: translateY(-2px);
}

.pix-qr {
  margin-bottom: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.qr-image {
  max-width: 280px;
  width: 100%;
  height: auto;
  border-radius: var(--radius-sm);
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
  transition: var(--transition);
}

.qr-image:hover {
  transform: scale(1.05);
  box-shadow: 0 12px 32px rgba(0,0,0,0.3);
}

.qr-placeholder {
  background: rgba(255,255,255,0.05);
  border: 2px dashed rgba(255,255,255,0.2);
  border-radius: var(--radius-sm);
  padding: 32px;
  text-align: center;
  color: rgba(255,255,255,0.5);
}

.qr-placeholder i {
  font-size: 3rem;
  display: block;
  margin-bottom: 12px;
  color: rgba(255,255,255,0.3);
}

.qr-placeholder span {
  font-size: 0.9rem;
}

.pix-info {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  display: flex;
  align-items: center;
  gap: 8px;
}

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

.doe-info-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 24px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  transition: var(--transition);
}

.doe-info-card:hover {
  background: rgba(255,255,255,0.08);
  transform: translateX(4px);
}

.doe-info-card > i {
  font-size: 1.8rem;
  flex-shrink: 0;
  margin-top: 4px;
}

.doe-info-card h4 {
  font-size: 1rem;
  font-weight: 800;
  color: white;
  margin-bottom: 8px;
}

.doe-info-card p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.6;
}

/* ===== INSTAGRAM ===== */
.instagram {
  background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  padding: 80px 0;
}

.instagram-cta {
  display: flex;
  align-items: center;
  gap: 40px;
  max-width: 700px;
  margin: 0 auto;
  text-align: left;
}

.instagram-icon {
  width: 100px;
  height: 100px;
  background: rgba(255,255,255,0.2);
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.instagram-icon i {
  font-size: 3rem;
  color: white;
}

.instagram-text h3 {
  font-size: 1.8rem;
  font-weight: 900;
  color: white;
  margin-bottom: 8px;
}

.instagram-text p {
  color: rgba(255,255,255,0.85);
  margin-bottom: 16px;
}

/* ===== CONTATO ===== */
.contato { background: var(--bg-light); }

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

.contato-info {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contato-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px;
  background: white;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.contato-item:hover {
  transform: translateX(6px);
  box-shadow: var(--shadow-hover);
}

.contato-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contato-icon i {
  font-size: 1.3rem;
  color: white;
}

.contato-item h4 {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
}

.contato-item a,
.contato-item span {
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
}

.contato-item a:hover { color: var(--blue); }

.contato-form-wrapper {
  background: white;
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: var(--shadow);
}

.contato-form h3 {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 28px;
}

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

.form-group label {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid #e9ecef;
  border-radius: var(--radius-sm);
  font-family: 'Nunito', sans-serif;
  font-size: 1rem;
  color: var(--text);
  transition: var(--transition);
  background: var(--bg-light);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--blue);
  background: white;
  box-shadow: 0 0 0 4px rgba(33,150,243,0.1);
}

.form-group textarea { resize: vertical; min-height: 120px; }

.form-success {
  margin-top: 16px;
  padding: 16px;
  background: #e8f5e9;
  border-radius: var(--radius-sm);
  color: var(--green);
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--dark);
  color: rgba(255,255,255,0.8);
  padding: 80px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  border-radius: 50%;
  background: white;
  padding: 6px;
  margin-bottom: 16px;
}

.footer-brand h3 {
  font-size: 1.2rem;
  font-weight: 800;
  color: white;
  margin-bottom: 4px;
}

.footer-brand p {
  color: var(--yellow);
  font-weight: 700;
  margin-bottom: 12px;
}

.footer-desc {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.5) !important;
  line-height: 1.7;
}

.footer-links h4,
.footer-contato h4,
.footer-doe h4 {
  font-size: 1rem;
  font-weight: 800;
  color: white;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid rgba(255,255,255,0.1);
}

.footer-links ul,
.footer-contato ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a,
.footer-contato a {
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  transition: var(--transition);
}

.footer-links a:hover,
.footer-contato a:hover {
  color: var(--yellow);
  padding-left: 4px;
}

.footer-contato li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
}

.footer-contato i { color: var(--yellow); width: 16px; }

.footer-doe p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 16px;
}

.footer-pix {
  background: rgba(255,255,255,0.05);
  border-radius: var(--radius-sm);
  padding: 16px;
  margin-bottom: 16px;
  border: 1px solid rgba(255,255,255,0.1);
}

.pix-label-footer {
  font-size: 0.75rem;
  font-weight: 700;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 6px;
}

.footer-pix code {
  display: block;
  font-size: 0.9rem;
  color: #32BCAD;
  font-family: monospace;
  margin-bottom: 12px;
}

.btn-copy-footer {
  background: #32BCAD;
  color: white;
  border: none;
  padding: 8px 16px;
  border-radius: 50px;
  font-weight: 700;
  cursor: pointer;
  font-size: 0.8rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
}

.btn-copy-footer:hover {
  background: #2aa99b;
  transform: translateY(-1px);
}

.footer-bottom {
  padding: 24px 0;
  text-align: center;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.35);
  display: flex;
  flex-direction: column;
  gap: 4px;
}

/* ===== WHATSAPP FLUTUANTE ===== */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  z-index: 999;
  transition: var(--transition);
  animation: pulse 2s infinite;
}

.whatsapp-float i {
  font-size: 1.8rem;
  color: white;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 30px rgba(37,211,102,0.5);
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.4); }
  50% { box-shadow: 0 4px 30px rgba(37,211,102,0.7), 0 0 0 10px rgba(37,211,102,0.1); }
}

/* ===== BOTÃO VOLTAR AO TOPO ===== */
.back-to-top {
  position: fixed;
  bottom: 100px;
  right: 30px;
  width: 46px;
  height: 46px;
  background: var(--blue);
  color: white;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: var(--shadow);
  z-index: 999;
  transition: var(--transition);
  opacity: 0;
  pointer-events: none;
}

.back-to-top.visible {
  opacity: 1;
  pointer-events: all;
}

.back-to-top:hover {
  background: var(--dark);
  transform: translateY(-3px);
}

/* ===== TOAST ===== */
.toast {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: var(--dark);
  color: white;
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.95rem;
  z-index: 9999;
  transition: transform 0.4s ease;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.3);
}

.toast i { color: var(--green); }

.toast.show { transform: translateX(-50%) translateY(0); }

/* ===== SCROLL REVEAL ===== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== RESPONSIVO ===== */
@media (max-width: 1024px) {
  .sobre-grid { grid-template-columns: 1fr; gap: 40px; }
  .doe-grid { grid-template-columns: 1fr; }
  .contato-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    top: 72px; left: 0; right: 0;
    background: white;
    flex-direction: column;
    padding: 20px;
    gap: 4px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transform: translateY(-120%);
    opacity: 0;
    transition: var(--transition);
    z-index: 999;
  }

  .nav-menu.open {
    transform: translateY(0);
    opacity: 1;
  }

  .nav-link { width: 100%; text-align: center; padding: 12px; }

  .nav-toggle { display: flex; }

  .nav-logo span { display: none; }

  .section { padding: 70px 0; }

  .sobre-valores { grid-template-columns: 1fr 1fr; }

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

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

  .instagram-cta { flex-direction: column; text-align: center; }

  .footer-grid { grid-template-columns: 1fr; gap: 32px; }

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

  .hero-btns { flex-direction: column; align-items: center; }
}

/* ===== ANIMAÇÕES DE CORAÇÕES ===== */
@keyframes float {
  0%, 100% { transform: translateY(0px); opacity: 1; }
  50% { transform: translateY(-20px); opacity: 0.8; }
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.2); }
}

@keyframes spin-slow {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.animated-group {
  background: linear-gradient(135deg, rgba(255, 107, 107, 0.1), rgba(100, 200, 255, 0.1));
  padding: 30px 20px !important;
  border-radius: var(--radius-sm);
  text-align: center;
  border: 2px solid rgba(255, 107, 107, 0.2);
  margin-bottom: 20px !important;
}

.animated-hearts {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.heart {
  font-size: 2.5rem;
  display: inline-block;
  animation: float 3s ease-in-out infinite, pulse 2s ease-in-out infinite;
}

.heart:nth-child(1) { animation-delay: 0s; }
.heart:nth-child(2) { animation-delay: 0.3s; }
.heart:nth-child(3) { animation-delay: 0.6s; }
.heart:nth-child(4) { animation-delay: 0.9s; }
.heart:nth-child(5) { animation-delay: 1.2s; }

.animated-text {
  font-size: 1rem;
  font-weight: 600;
  background: linear-gradient(135deg, var(--red), var(--blue), var(--green), var(--orange), var(--pink));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: spin-slow 8s linear infinite;
  margin: 0;
}

@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr; }
  .sobre-valores { grid-template-columns: 1fr; }
  .contato-form-wrapper { padding: 24px; }
  .doe-card { padding: 24px; }
  
  .heart { font-size: 2rem; }
  .animated-group { padding: 20px 15px !important; }
}
\n//* ===== ANIMACAO DE AJUDA ===== */
@keyframes walk-in {
  0% { transform: translateX(-200px); }
  100% { transform: translateX(0); }
}

@keyframes walk-out {
  0% { transform: translateX(0); }
  100% { transform: translateX(-200px); }
}

@keyframes box-transfer-up {
  0% { transform: translateX(0) translateY(0); }
  50% { transform: translateX(30px) translateY(0); }
  100% { transform: translateX(30px) translateY(-80px); }
}

@keyframes stand-up {
  0% { transform: translateY(0); }
  100% { transform: translateY(-50px); }
}

@keyframes celebrate {
  0%, 100% { transform: translateY(-50px) scaleY(1); }
  25% { transform: translateY(-50px) scaleY(1) rotateZ(-8deg); }
  50% { transform: translateY(-50px) scaleY(1) rotateZ(8deg); }
  75% { transform: translateY(-50px) scaleY(1) rotateZ(-8deg); }
}

@keyframes arms-up {
  0%, 100% { transform: rotate(0deg); }
  50% { transform: rotate(-45deg); }
}

@keyframes arms-up-right {
  0%, 100% { transform: rotate(0deg); }
  50% { transform: rotate(45deg); }
}

@keyframes heart-float {
  0% {
    transform: translateY(0) scale(1);
    opacity: 1;
  }
  100% {
    transform: translateY(-100px) scale(0.3);
    opacity: 0;
  }
}

#person-left {
  animation: walk-in 1.5s ease-in-out 0s forwards, walk-out 1s ease-in-out 6.5s forwards;
}

#box-with-person {
  animation: box-transfer-up 1s ease-in-out 1.5s forwards, walk-out 1s ease-in-out 6.5s forwards;
}

#person-right {
  animation: stand-up 0.5s ease-in-out 1.5s forwards, celebrate 1s ease-in-out 2.5s forwards, stand-up 0.5s ease-in-out 6.5s reverse;
}

#arm-left-right {
  transform-origin: 365px 115px;
  animation: arms-up 1s ease-in-out 2.5s forwards;
}

#arm-right-right {
  transform-origin: 395px 115px;
  animation: arms-up-right 1s ease-in-out 2.5s forwards;
}

.heart-float {
  animation: heart-float 2s ease-out forwards;
}: 0; }\n}\n\n.contato-animation-wrapper {\n  background: white;\n  border-radius: var(--radius);\n  padding: 40px;\n  box-shadow: var(--shadow);\n  display: flex;\n  flex-direction: column;\n  align-items: center;\n  gap: 30px;\n}\n\n.helping-animation {\n  width: 100%;\n  max-width: 500px;\n  height: 350px;\n  display: flex;\n  align-items: center;\n  justify-content: center;\n}\n\n.animation-svg {\n  width: 100%;\n  height: 100%;\n  filter: drop-shadow(0 4px 15px rgba(0,0,0,0.1));\n}\n\n.helper-person {\n  animation: walk 2s ease-in-out infinite;\n}\n\n.help-box {\n  animation: walk 2s ease-in-out infinite;\n}\n\n.heart-float {\n  animation: heart-rise 2s ease-out infinite;\n  display: inline-block;\n}\n\n.animation-text {\n  text-align: center;\n  max-width: 500px;\n}\n\n.animation-text h3 {\n  font-size: 1.8rem;\n  color: var(--dark);\n  margin-bottom: 12px;\n  font-weight: 800;\n}\n\n.animation-text p {\n  font-size: 1rem;\n  color: var(--text-light);\n  margin-bottom: 24px;\n  line-height: 1.6;\n}\n\n.btn-large {\n  padding: 16px 32px;\n  font-size: 1.1rem;\n  font-weight: 700;\n  display: inline-flex;\n  align-items: center;\n  gap: 10px;\n  border-radius: var(--radius);\n  transition: var(--transition);\n}\n\n.btn-large:hover {\n  transform: translateY(-3px);\n  box-shadow: 0 8px 24px rgba(76, 175, 80, 0.3);\n}\n\n@media (max-width: 768px) {\n  .contato-animation-wrapper {\n    padding: 24px;\n  }\n  \n  .helping-animation {\n    height: 280px;\n  }\n  \n  .animation-text h3 {\n    font-size: 1.4rem;\n  }\n  \n  .animation-text p {\n    font-size: 0.95rem;\n  }\n}\n


/* ===== ANIMAÇÕES DE FADE E EXPANSÃO ===== */

/* Fade-in ao aparecer */
@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Expansão suave */
@keyframes expandPulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}

/* Fade in com slide */
@keyframes fadeInSlide {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Rotação suave */
@keyframes rotateIn {
  from {
    opacity: 0;
    transform: rotate(-10deg) scale(0.8);
  }
  to {
    opacity: 1;
    transform: rotate(0deg) scale(1);
  }
}

/* Bounce */
@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

/* Glow effect */
@keyframes glow {
  0%, 100% {
    box-shadow: 0 0 5px rgba(139, 195, 74, 0.3);
  }
  50% {
    box-shadow: 0 0 20px rgba(139, 195, 74, 0.6);
  }
}

/* Aplicar animações em imagens */
img {
  animation: fadeInScale 0.8s ease-out forwards;
}

/* Ícones com animação */
i {
  animation: fadeInScale 0.8s ease-out forwards;
}

/* Stat cards com fade e expansão */
.stat-card {
  animation: fadeInScale 0.8s ease-out forwards;
  transition: all 0.3s ease;
}

.stat-card:hover {
  animation: expandPulse 0.6s ease-in-out;
  box-shadow: 0 8px 30px rgba(139, 195, 74, 0.3);
}

.stat-card i {
  animation: rotateIn 0.8s ease-out forwards;
  transition: all 0.3s ease;
}

.stat-card:hover i {
  animation: bounce 0.6s ease-in-out infinite;
}

/* ONG cards com fade */
.ong-card {
  animation: fadeInSlide 0.8s ease-out forwards;
  transition: all 0.3s ease;
}

.ong-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.ong-card i {
  animation: rotateIn 0.8s ease-out forwards;
  font-size: 2.5rem;
  transition: all 0.3s ease;
}

.ong-card:hover i {
  animation: expandPulse 0.6s ease-in-out;
  color: var(--green-light);
}

/* Diretor cards com zoom */
.diretor-card {
  animation: fadeInScale 0.8s ease-out forwards;
  transition: all 0.3s ease;
}

.diretor-card:hover {
  transform: scale(1.08);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.diretor-avatar {
  animation: rotateIn 0.8s ease-out forwards;
  transition: all 0.3s ease;
}

.diretor-card:hover .diretor-avatar {
  animation: expandPulse 0.6s ease-in-out;
  box-shadow: 0 0 20px rgba(139, 195, 74, 0.4);
}

.diretor-avatar i {
  animation: fadeInScale 0.8s ease-out forwards;
  transition: all 0.3s ease;
}

.diretor-card:hover .diretor-avatar i {
  animation: bounce 0.6s ease-in-out infinite;
}

/* PIX icon com glow */
.pix-icon {
  animation: fadeInScale 0.8s ease-out forwards;
  transition: all 0.3s ease;
}

.pix-icon:hover {
  animation: glow 1.5s ease-in-out infinite;
}

.pix-icon svg {
  animation: rotateIn 0.8s ease-out forwards;
  transition: all 0.3s ease;
}

.pix-icon:hover svg {
  animation: expandPulse 0.6s ease-in-out;
}

/* QR Code com fade e expansão */
.qr-image {
  animation: fadeInScale 0.8s ease-out forwards;
  transition: all 0.3s ease;
}

.qr-image:hover {
  animation: expandPulse 0.6s ease-in-out;
  box-shadow: 0 12px 40px rgba(139, 195, 74, 0.3);
}

/* Instagram icon com animação */
.instagram-icon {
  animation: fadeInScale 0.8s ease-out forwards;
  transition: all 0.3s ease;
}

.instagram-icon:hover {
  animation: expandPulse 0.6s ease-in-out;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

.instagram-icon i {
  animation: rotateIn 0.8s ease-out forwards;
  transition: all 0.3s ease;
}

.instagram-icon:hover i {
  animation: bounce 0.6s ease-in-out infinite;
}

/* Contato items com fade */
.contato-item {
  animation: fadeInSlide 0.8s ease-out forwards;
  transition: all 0.3s ease;
}

.contato-item:hover {
  transform: translateX(8px) scale(1.02);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.contato-icon {
  animation: rotateIn 0.8s ease-out forwards;
  transition: all 0.3s ease;
}

.contato-item:hover .contato-icon {
  animation: expandPulse 0.6s ease-in-out;
  box-shadow: 0 0 15px rgba(139, 195, 74, 0.4);
}

.contato-icon i {
  animation: fadeInScale 0.8s ease-out forwards;
  transition: all 0.3s ease;
}

.contato-item:hover .contato-icon i {
  animation: bounce 0.6s ease-in-out infinite;
}

/* Animação do hero logo */
.hero-logo {
  animation: fadeInScale 1s ease-out forwards;
  transition: all 0.3s ease;
}

.hero-logo:hover {
  animation: expandPulse 0.8s ease-in-out;
  filter: drop-shadow(0 0 20px rgba(139, 195, 74, 0.4));
}

/* Buttons com animação */
.btn {
  animation: fadeInSlide 0.8s ease-out forwards;
  transition: all 0.3s ease;
}

.btn:hover {
  animation: expandPulse 0.6s ease-in-out;
  transform: translateY(-3px);
}

.btn i {
  animation: rotateIn 0.8s ease-out forwards;
  transition: all 0.3s ease;
}

.btn:hover i {
  animation: bounce 0.6s ease-in-out infinite;
}

/* Sobre cards */
.sobre-card-destaque {
  animation: fadeInScale 0.8s ease-out forwards;
  transition: all 0.3s ease;
}

.sobre-card-destaque:hover {
  transform: scale(1.05);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.sobre-card-destaque i {
  animation: rotateIn 0.8s ease-out forwards;
  transition: all 0.3s ease;
}

.sobre-card-destaque:hover i {
  animation: expandPulse 0.6s ease-in-out;
}

/* Delay para animações em cascata */
.stat-card:nth-child(1) { animation-delay: 0.1s; }
.stat-card:nth-child(2) { animation-delay: 0.2s; }
.stat-card:nth-child(3) { animation-delay: 0.3s; }
.stat-card:nth-child(4) { animation-delay: 0.4s; }

.ong-card:nth-child(1) { animation-delay: 0.1s; }
.ong-card:nth-child(2) { animation-delay: 0.15s; }
.ong-card:nth-child(3) { animation-delay: 0.2s; }
.ong-card:nth-child(4) { animation-delay: 0.25s; }
.ong-card:nth-child(5) { animation-delay: 0.3s; }
.ong-card:nth-child(6) { animation-delay: 0.35s; }
.ong-card:nth-child(7) { animation-delay: 0.4s; }
.ong-card:nth-child(8) { animation-delay: 0.45s; }
.ong-card:nth-child(9) { animation-delay: 0.5s; }
.ong-card:nth-child(10) { animation-delay: 0.55s; }
.ong-card:nth-child(11) { animation-delay: 0.6s; }
.ong-card:nth-child(12) { animation-delay: 0.65s; }
.ong-card:nth-child(13) { animation-delay: 0.7s; }
.ong-card:nth-child(14) { animation-delay: 0.75s; }
.ong-card:nth-child(15) { animation-delay: 0.8s; }

.diretor-card:nth-child(1) { animation-delay: 0.1s; }
.diretor-card:nth-child(2) { animation-delay: 0.2s; }
.diretor-card:nth-child(3) { animation-delay: 0.3s; }

.contato-item:nth-child(1) { animation-delay: 0.1s; }
.contato-item:nth-child(2) { animation-delay: 0.2s; }
.contato-item:nth-child(3) { animation-delay: 0.3s; }
.contato-item:nth-child(4) { animation-delay: 0.4s; }

/* Animação contínua sutil */
@keyframes subtleFloat {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-5px);
  }
}

.hero-logo {
  animation: fadeInScale 1s ease-out forwards, subtleFloat 3s ease-in-out infinite;
  animation-delay: 0s, 1s;
}

.stat-number {
  animation: fadeInScale 0.8s ease-out forwards;
}

.stat-number:hover {
  animation: expandPulse 0.6s ease-in-out;
}


/* ===== SPLASH SCREEN ===== */

@keyframes splashFadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes splashFadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}

@keyframes logoScale {
  0% {
    transform: scale(0.5);
    opacity: 0;
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes loaderSpin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes loaderPulse {
  0%, 100% {
    opacity: 0.3;
  }
  50% {
    opacity: 1;
  }
}

.splash-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #ffffff 0%, #f5f5f5 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  animation: splashFadeOut 1s ease-in-out 2.5s forwards;
}

.splash-screen.hidden {
  display: none;
}

.splash-content {
  text-align: center;
  animation: splashFadeIn 0.8s ease-out forwards;
}

.splash-logo-container {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 260px;
  height: 260px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
  z-index: 9999;
}

.splash-logo {
  width: 200px;
  height: 200px;
  object-fit: contain;
  object-position: center;
  animation: logoScale 1.2s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
  filter: drop-shadow(0 10px 30px rgba(139, 195, 74, 0.3));
  position: relative;
  z-index: 2;
  margin: auto;
}
.water-fill {
  position: absolute;
  width: 200px;
  height: 200px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  opacity: 0.4;
  filter: drop-shadow(0 10px 30px rgba(139, 195, 74, 0.3));
}

.water-level {
  animation: waterFill 1.2s ease-in forwards;
}

.wave {
  animation: waveMove 2s linear infinite;
}

.wave-delay {
  animation: waveMove 2.5s linear infinite 0.5s;
}

.splash-title {
  font-size: 2rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 10px;
  animation: splashFadeIn 0.8s ease-out 0.3s forwards;
  opacity: 0;
  font-family: 'Poppins', sans-serif;
  background: linear-gradient(135deg, var(--green-light), var(--blue), var(--pink));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.splash-subtitle {
  font-size: 1.2rem;
  color: var(--green-light);
  font-weight: 700;
  animation: splashFadeIn 0.8s ease-out 0.6s forwards;
  opacity: 0;
  letter-spacing: 2px;
}

/* Fade-in da página após splash */
body.page-loading {
  overflow: hidden;
}

body.page-loaded {
  overflow: auto;
}

@keyframes pageSlideIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

body.page-loaded .navbar,
body.page-loaded .hero,
body.page-loaded section {
  animation: pageSlideIn 0.8s ease-out forwards;
}

body.page-loaded .navbar {
  animation-delay: 0.1s;
}

body.page-loaded .hero {
  animation-delay: 0.2s;
}

body.page-loaded section:nth-of-type(1) {
  animation-delay: 0.3s;
}

body.page-loaded section:nth-of-type(2) {
  animation-delay: 0.4s;
}

body.page-loaded section:nth-of-type(3) {
  animation-delay: 0.5s;
}

body.page-loaded section:nth-of-type(4) {
  animation-delay: 0.6s;
}

body.page-loaded section:nth-of-type(5) {
  animation-delay: 0.7s;
}

body.page-loaded section:nth-of-type(6) {
  animation-delay: 0.8s;
}

/* Responsivo */
@media (max-width: 768px) {
  .splash-logo-container {
    width: 120px;
    height: 120px;
  }

  .splash-logo {
    width: 100px;
    height: 100px;
  }

  .splash-loader {
    width: 130px;
    height: 130px;
  }

  .splash-title {
    font-size: 1.5rem;
  }

  .splash-subtitle {
    font-size: 1rem;
  }
}


/* ===== WATER FILL ANIMATION ===== */
@keyframes waterFill {
  0% {
    transform: translateY(200px);
  }
  100% {
    transform: translateY(-200px);
  }
}

@keyframes waveMove {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(100px);
  }
}
