/* ═══════════════════════════════════════════════════
   CEI ISABEL LONGO – LANDING PAGE
   Estilo: Infantil, Lúdico, Colorido, Alegre
═══════════════════════════════════════════════════ */

/* ─── Reset & Base ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --blue:       #3B82F6;
  --blue-dark:  #1E40AF;
  --blue-light: #EFF6FF;
  --green:      #10B981;
  --yellow:     #FBBF24;
  --orange:     #F97316;
  --red:        #EF4444;
  --purple:     #8B5CF6;
  --pink:       #EC4899;
  --teal:       #14B8A6;

  --primary:    #4F46E5;   /* índigo vibrante */
  --primary-dark: #3730A3;
  --accent:     #F59E0B;   /* âmbar / amarelo */
  --accent2:    #10B981;   /* verde */

  --text-dark:  #1E293B;
  --text-mid:   #475569;
  --text-light: #94A3B8;
  --bg-light:   #F9FAFB;
  --white:      #FFFFFF;

  --radius-sm:  8px;
  --radius:     16px;
  --radius-lg:  24px;
  --radius-xl:  40px;

  --shadow-sm:  0 2px 8px rgba(0,0,0,.08);
  --shadow:     0 8px 32px rgba(0,0,0,.12);
  --shadow-lg:  0 20px 60px rgba(0,0,0,.16);

  --transition: .3s cubic-bezier(.4,0,.2,1);

  --font-main:  'Nunito', sans-serif;
  --font-title: 'Baloo 2', cursive;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-main);
  color: var(--text-dark);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.65;
}

img { display: block; max-width: 100%; height: auto; }
a  { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ─── Utilitários ─── */
.section-container {
  max-width: 1100px;
  width: 100%;
  margin: 0 auto;
  padding: 0 24px;
}
.section-center {
  text-align: center;
  margin-bottom: 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--primary);
  background: var(--blue-light);
  padding: 5px 14px;
  border-radius: 99px;
  margin-bottom: 12px;
}
.section-label.light { color: #a5b4fc; background: rgba(255,255,255,.12); }

.section-title {
  font-family: var(--font-title);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--text-dark);
}
.section-title.white { color: var(--white); }

.highlight         { color: var(--primary); }
.highlight-light   { color: #fde68a; }

/* ─── Botões ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 99px;
  font-family: var(--font-main);
  font-weight: 800;
  font-size: 1rem;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(0,0,0,.18); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: linear-gradient(135deg, var(--primary), #7C3AED);
  color: var(--white);
}
.btn-whatsapp {
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: var(--white);
}
.btn-email {
  background: linear-gradient(135deg, var(--blue), var(--teal));
  color: var(--white);
}
.btn-pix-primary {
  background: linear-gradient(135deg, #00BFFF, #0066CC);
  color: var(--white);
  width: 100%;
  justify-content: center;
  font-size: 1.05rem;
  padding: 16px;
}
.btn-pix-secondary {
  background: var(--white);
  color: var(--primary);
  border: 2px solid var(--primary);
  width: 100%;
  justify-content: center;
}
.btn-pix-secondary:hover { background: var(--primary); color: var(--white); }
.btn-comprovante {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 15px 20px;
  border-radius: 99px;
  font-family: var(--font-main);
  font-weight: 800;
  font-size: 1rem;
  background: linear-gradient(135deg, var(--orange), #DC2626);
  color: var(--white);
  border: none;
  cursor: pointer;
  transition: var(--transition);
  letter-spacing: .04em;
  text-align: center;
  box-sizing: border-box;
}
.btn-comprovante:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(239,68,68,.35); }
.btn-lg { padding: 16px 36px; font-size: 1.05rem; }

/* ═══════════════════════════════════════
   NAVBAR
═══════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 2px solid transparent;
  transition: var(--transition);
  padding: 0 24px;
}
.navbar.scrolled {
  border-bottom-color: #e0e7ff;
  box-shadow: 0 4px 24px rgba(79,70,229,.1);
}
.nav-container {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-title);
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--primary);
}
.nav-logo img {
  height: 48px;
  width: 48px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 2px 8px rgba(79,70,229,.2);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav-link {
  font-weight: 700;
  font-size: .95rem;
  color: var(--text-mid);
  padding: 8px 14px;
  border-radius: 99px;
  transition: var(--transition);
}
.nav-link:hover,
.nav-link.active { color: var(--primary); background: var(--blue-light); }

.nav-cta { padding: 10px 20px; font-size: .9rem; }
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle span {
  display: block;
  height: 3px;
  width: 26px;
  background: var(--primary);
  border-radius: 3px;
  transition: var(--transition);
}
.nav-toggle.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ═══════════════════════════════════════
   HERO
═══════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  padding: 120px 0 80px;
  overflow: hidden;
  background: linear-gradient(135deg, #EEF2FF 0%, #F0FDF4 40%, #FFF7ED 100%);
}

/* Bolhas decorativas — ficam atrás do conteúdo e nas bordas */
.bubble {
  position: absolute;
  border-radius: 50%;
  opacity: .22;
  animation: float 8s ease-in-out infinite;
  pointer-events: none;
  z-index: 1;
}
.bubble-1 { width: 280px; height: 280px; background: radial-gradient(circle, #a5b4fc, #6366f1); top: -60px; right: -80px; animation-delay: 0s; }
.bubble-2 { width: 160px; height: 160px; background: radial-gradient(circle, #fde68a, #f59e0b); bottom: 60px; left: -70px; animation-delay: 2s; }
.bubble-3 { width: 100px; height: 100px; background: radial-gradient(circle, #6ee7b7, #10b981); bottom: 15%; left: -30px; animation-delay: 1s; }
.bubble-4 { width: 70px;  height: 70px;  background: radial-gradient(circle, #fbcfe8, #ec4899); top: 15%; right: -20px; animation-delay: 3s; }
.bubble-5 { width: 90px;  height: 90px;  background: radial-gradient(circle, #bfdbfe, #3b82f6); bottom: 10%; right: -30px; animation-delay: 1.5s; }

.star {
  position: absolute;
  font-size: 1.4rem;
  animation: twinkle 3s ease-in-out infinite;
  opacity: .4;
  pointer-events: none;
  z-index: 1;
}
.star-1 { color: var(--yellow); top: 12%; right: 10%; animation-delay: 0s; }
.star-2 { color: var(--pink);   bottom: 20%; right: 6%; animation-delay: 1s; }
.star-3 { color: var(--purple); top: 8%;  left: 4%;  animation-delay: .5s; }
.star-4 { color: var(--teal);   bottom: 30%; left: 3%; animation-delay: 2s; }

@keyframes float {
  0%,100% { transform: translateY(0) rotate(0deg); }
  50%      { transform: translateY(-20px) rotate(3deg); }
}
@keyframes twinkle {
  0%,100% { opacity: .35; transform: scale(1); }
  50%      { opacity: .8;  transform: scale(1.25); }
}

.hero-container {
  max-width: 680px;
  width: 100%;
  margin: 0 auto;
  padding: 48px 32px;
  text-align: center;
  position: relative;
  z-index: 2;
  box-sizing: border-box;
}

.hero-content {
  width: 100%;
  text-align: center;
  box-sizing: border-box;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
  color: #fff;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 7px 18px;
  border-radius: 99px;
  margin: 0 auto 16px auto;
  max-width: 90%;
  white-space: normal;
  text-align: center;
  animation: pulse-badge 2.5s ease-in-out infinite;
}
@keyframes pulse-badge {
  0%,100% { box-shadow: 0 0 0 0 rgba(99,102,241,.4); }
  50%      { box-shadow: 0 0 0 10px rgba(99,102,241,0); }
}

.hero-title {
  font-family: var(--font-title);
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  font-weight: 800;
  line-height: 1.1;
  color: var(--text-dark);
  margin-bottom: 14px;
  text-align: center;
  width: 100%;
}

.hero-subtitle {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-mid);
  margin-bottom: 10px;
  text-align: center;
  width: 100%;
}
.hero-text {
  font-size: .98rem;
  color: var(--text-mid);
  margin-bottom: 28px;
  max-width: 540px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.hero-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 24px;
  justify-content: center;
  width: 100%;
}

.hero-trust {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
}
.hero-trust span {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: .82rem;
  font-weight: 700;
  color: var(--text-mid);
}
.hero-trust span i { color: var(--primary); }

/* QR wrapper hero */
/* hero-visual: centralizado abaixo do texto */
.hero-visual {
  width: 100%;
  max-width: 360px;
  margin: 28px auto 0;
  display: block;
  text-align: center;
}

.qr-wrapper {
  position: relative;
}
.qr-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  border: 3px solid #e0e7ff;
  animation: floatCard 6s ease-in-out infinite;
}
@keyframes floatCard {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-12px); }
}

.qr-header {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 20px;
  background: linear-gradient(135deg, var(--primary), #7C3AED);
  color: var(--white);
  font-weight: 700;
  font-size: .9rem;
}
.qr-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 220px;
  padding: 24px;
  background: #f8fafc;
}
.qr-placeholder-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-light);
  font-size: .9rem;
  border-radius: var(--radius);
  padding: 8px;
  text-align: center;
}
.qr-icon-large { font-size: 3.5rem; color: #cbd5e1; }
.qr-placeholder-inner p { font-weight: 700; color: var(--text-mid); }

/* QR Code real */
.qr-img {
  width: 200px;
  height: 200px;
  object-fit: contain;
  display: block;
  border-radius: 8px;
}
.qr-img-modal {
  width: 220px;
  height: 220px;
  object-fit: contain;
  display: block;
  border-radius: 8px;
  margin: 0 auto;
}
.qr-footer {
  padding: 10px 20px;
  background: #f0fdf4;
  font-size: .78rem;
  font-weight: 700;
  color: var(--green);
  display: flex;
  align-items: center;
  gap: 6px;
  border-top: 1px solid #d1fae5;
}

.qr-deco {
  position: absolute;
  font-size: 1.8rem;
  animation: float 5s ease-in-out infinite;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,.1));
}
.qr-deco-1 { top: -18px; right: -14px; animation-delay: 0s; }
.qr-deco-2 { bottom: -14px; left: -16px; animation-delay: 1.2s; }
.qr-deco-3 { top: 50%; right: -20px; animation-delay: .6s; }

/* Wave bottom hero */
.wave-bottom { margin-top: -2px; line-height: 0; }
.wave-bottom svg { width: 100%; height: 80px; }

/* ═══════════════════════════════════════
   SOBRE
═══════════════════════════════════════ */
.sobre {
  padding: 80px 0 100px;
  background: var(--white);
}
.sobre .section-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  width: 100%;
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.sobre-image-col {
  width: 100%;
  max-width: 560px;
  margin: 0 auto;
}

.sobre-img-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: visible;
  padding-bottom: 28px; /* espaço para o badge */
}
.sobre-img {
  border-radius: var(--radius-lg);
  width: 100%;
  height: 360px;
  object-fit: cover;
  box-shadow: var(--shadow-lg);
  transition: var(--transition);
}
.sobre-img:hover { transform: scale(1.02); }
.sobre-img-badge {
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--yellow), var(--orange));
  color: var(--white);
  font-weight: 800;
  font-size: .85rem;
  padding: 8px 20px;
  border-radius: 99px;
  box-shadow: 0 6px 20px rgba(245,158,11,.35);
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}

.sobre-text-col {
  width: 100%;
  max-width: 640px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.sobre-text-col .section-label {
  align-self: center;
  margin-left: auto;
  margin-right: auto;
}
.sobre-text-col .section-title {
  text-align: center;
  width: 100%;
}
.sobre-paragraph {
  color: var(--text-mid);
  font-size: 1.02rem;
  margin-bottom: 14px;
  text-align: center;
  max-width: 620px;
}

.horarios {
  display: flex;
  gap: 16px;
  margin: 20px 0 20px;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
}
.horario-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  background: var(--blue-light);
  border-radius: var(--radius);
  padding: 16px 24px;
  flex: 1;
  min-width: 160px;
  text-align: left;
}
.horario-icon {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--yellow), var(--orange));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.05rem;
  flex-shrink: 0;
}
.horario-item strong { display: block; font-size: .88rem; font-weight: 800; color: var(--text-dark); }
.horario-item span   { font-size: .92rem; color: var(--primary); font-weight: 700; }

.sobre-icons {
  display: flex;
  gap: 20px;
  margin: 24px 0;
  flex-wrap: wrap;
  justify-content: center;
}
.sobre-icon-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: .82rem;
  font-weight: 700;
  color: var(--text-mid);
}
.sobre-icon-circle {
  width: 52px; height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
}

.frase-destaque {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(135deg, #EEF2FF, #F0FDF4);
  border-left: 4px solid var(--primary);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 16px 24px;
  font-family: var(--font-title);
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary);
  font-style: italic;
  margin-top: 8px;
  text-align: center;
  width: 100%;
}
.frase-destaque i { font-size: .9rem; opacity: .5; }

/* ═══════════════════════════════════════
   POR QUÊ CONTRIBUIR
═══════════════════════════════════════ */
.porque {
  position: relative;
  background: linear-gradient(135deg, #4F46E5 0%, #7C3AED 50%, #06B6D4 100%);
  padding: 0;
  overflow: hidden;
}
.wave-top-porque, .wave-bottom-porque { line-height: 0; }
.wave-top-porque svg, .wave-bottom-porque svg { width: 100%; height: 60px; }

.porque-inner {
  padding: 60px 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.porque .section-label {
  background: rgba(255,255,255,.15);
  color: #fff;
  border: 1px solid rgba(255,255,255,.25);
}
/* Título da seção por quê: garante branco em todas as linhas */
.porque .section-title,
.porque .section-title span,
.porque .section-title .highlight {
  color: var(--white) !important;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 48px;
  width: 100%;
}
.card {
  background: rgba(255,255,255,.95);
  border-radius: var(--radius-lg);
  padding: 30px 20px;
  text-align: center;
  box-shadow: 0 8px 40px rgba(0,0,0,.12);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--yellow), var(--orange));
  transform: scaleX(0);
  transition: var(--transition);
}
.card:hover { transform: translateY(-8px); box-shadow: 0 20px 60px rgba(0,0,0,.2); }
.card:hover::before { transform: scaleX(1); }

.card-icon {
  width: 72px; height: 72px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 20px;
  box-shadow: 0 8px 24px rgba(0,0,0,.15);
}
.card h3 {
  font-family: var(--font-title);
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 10px;
}
.card p { font-size: .95rem; color: var(--text-mid); }

.frase-cards {
  text-align: center;
  font-family: var(--font-title);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  text-shadow: 0 2px 8px rgba(0,0,0,.2);
}
.frase-cards i { color: #fde68a; animation: heartbeat 1.5s ease-in-out infinite; }
@keyframes heartbeat {
  0%,100% { transform: scale(1); }
  25%      { transform: scale(1.2); }
  50%      { transform: scale(1); }
  75%      { transform: scale(1.15); }
}

/* ═══════════════════════════════════════
   CONTRIBUIÇÃO
═══════════════════════════════════════ */
.contribuicao {
  background: linear-gradient(160deg, #1E293B 0%, #312E81 50%, #1E1B4B 100%);
  padding: 90px 24px;
  position: relative;
  overflow: hidden;
}
.contribuicao::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%236366f1' fill-opacity='0.07'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.contribuicao-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  position: relative;
  z-index: 2;
  /* max-width e width já vêm do .section-container */
}

.contribuicao-info {
  width: 100%;
  max-width: 580px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.contribuicao-info .section-label,
.contribuicao-info .section-title {
  align-self: center;
  text-align: center;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
.contribuicao-info .section-label {
  display: flex;
  width: fit-content;
  margin: 0 auto 12px auto;
  font-size: .72rem;
  padding: 4px 12px;
  justify-content: center;
  align-items: center;
}

.contribuicao-sub {
  color: #a5b4fc;
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 32px;
  text-align: center;
}

.valor-badge {
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
  background: linear-gradient(135deg, var(--yellow), var(--orange));
  border-radius: var(--radius-lg);
  padding: 20px 32px;
  margin-bottom: 32px;
  box-shadow: 0 8px 32px rgba(245,158,11,.35);
}
.valor-label {
  font-size: .8rem;
  font-weight: 700;
  color: rgba(255,255,255,.85);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-right: 4px;
}
.valor-num {
  font-family: var(--font-title);
  font-size: 3rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}
.valor-num small { font-size: 1.4rem; }
.valor-period { font-size: 1rem; font-weight: 700; color: rgba(255,255,255,.8); }

.instrucoes {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--radius);
  padding: 20px 24px;
  margin-bottom: 28px;
  width: 100%;
  max-width: 460px;
  text-align: left;
}
.instrucoes h4 {
  font-family: var(--font-title);
  font-size: 1rem;
  font-weight: 800;
  color: #a5b4fc;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.instrucoes-list {
  list-style: decimal;
  padding-left: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.instrucoes-list li { color: rgba(255,255,255,.8); font-size: .95rem; }
.instrucoes-list li strong { color: #fde68a; }
.instrucoes-obs {
  margin-top: 12px;
  font-size: .85rem;
  color: rgba(255,255,255,.55);
}

.trust-badges {
  display: flex;
  gap: 20px;
  margin-bottom: 24px;
  flex-wrap: wrap;
  justify-content: center;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,.8);
  font-size: .9rem;
  font-weight: 700;
}
.trust-icon {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--yellow);
  font-size: .95rem;
}

.aviso-seguranca {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: rgba(16,185,129,.12);
  border: 1px solid rgba(16,185,129,.3);
  border-radius: var(--radius);
  padding: 14px 24px;
  font-size: .78rem;
  color: #6ee7b7;
  font-weight: 600;
  text-align: center;
  width: 100%;
  white-space: nowrap;
  box-sizing: border-box;
}
.aviso-seguranca i { flex-shrink: 0; font-size: 1.05rem; }

/* PIX Card */
.contribuicao-pix { width: 100%; max-width: 420px; margin: 0 auto; }

.pix-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: 0 24px 80px rgba(0,0,0,.4);
  overflow: hidden;
  border: 3px solid rgba(255,255,255,.15);
}
.pix-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  background: #f8fafc;
  border-bottom: 1px solid #e2e8f0;
}
.pix-logo { height: 28px; width: auto; }
.pix-card-header span { font-size: .85rem; font-weight: 700; color: var(--text-mid); }

.qr-placeholder-main {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 220px;
  padding: 24px;
  background: #f8fafc;
}
.qr-placeholder-main-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-light);
  border-radius: var(--radius);
  padding: 8px;
  text-align: center;
}
.qr-placeholder-main-inner i { font-size: 3.5rem; color: #cbd5e1; }
.qr-placeholder-main-inner p { font-weight: 700; color: var(--text-mid); }
.qr-placeholder-main-inner small { font-size: .78rem; }

.pix-chave { padding: 16px 20px; border-bottom: 1px solid #e2e8f0; }
.pix-chave label {
  font-size: .8rem;
  font-weight: 700;
  color: var(--text-mid);
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: .06em;
}
.chave-box {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--blue-light);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  border: 1px solid #c7d2fe;
}
.chave-text { flex: 1; font-size: .9rem; font-weight: 700; color: var(--primary); word-break: break-all; }
.btn-copy {
  flex-shrink: 0;
  width: 34px; height: 34px;
  border-radius: 8px;
  border: none;
  background: var(--primary);
  color: var(--white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.btn-copy:hover { background: var(--primary-dark); transform: scale(1.05); }
.copy-feedback {
  font-size: .78rem;
  color: var(--green);
  font-weight: 700;
  margin-top: 6px;
  display: flex;
  align-items: center;
  gap: 4px;
  height: 0;
  overflow: hidden;
  transition: var(--transition);
  opacity: 0;
}
.copy-feedback.show { height: 20px; opacity: 1; }

.pix-buttons {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 16px 20px 20px;
}

/* btn-comprovante dentro do pix-buttons — sem margin extra */
.pix-buttons .btn-comprovante {
  margin: 0;
  width: 100%;
  justify-content: center;
}

/* ═══════════════════════════════════════
   TRANSPARÊNCIA
═══════════════════════════════════════ */
.transparencia {
  background: var(--white);
  padding: 80px 24px;
}
.transparencia-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  text-align: center;
  /* max-width e width via .section-container */
}
.trans-icon-circle {
  width: 100px; height: 100px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), #7C3AED);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: var(--white);
  box-shadow: 0 12px 40px rgba(79,70,229,.3);
  flex-shrink: 0;
  animation: float 6s ease-in-out infinite;
}
.transparencia-text { width: 100%; text-align: center; }
.transparencia-text h2 { text-align: center; }
.transparencia-text .section-label { display: inline-flex; margin: 0 auto 12px auto; }
.transparencia-text p { color: var(--text-mid); font-size: 1rem; margin-bottom: 12px; text-align: center; }

.trans-items { display: flex; flex-direction: column; gap: 14px; margin-top: 20px; align-items: center; width: 100%; }
.trans-item {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: .95rem;
  font-weight: 600;
  color: var(--text-mid);
  line-height: 1.4;
  text-align: left;
  width: fit-content;
  max-width: 340px;
}
.trans-item-icon {
  width: 26px; height: 26px;
  min-width: 26px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green), var(--teal));
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .72rem;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ═══════════════════════════════════════
   CONTATO
═══════════════════════════════════════ */
.contato {
  position: relative;
  background: var(--bg-light);
  padding: 0 0 80px;
  text-align: center;
}
.wave-top-contato { line-height: 0; }
.wave-top-contato svg { width: 100%; height: 60px; }

.contato .section-container { padding-top: 60px; }
.contato .section-center { width: 100%; }
.contato-intro {
  color: var(--text-mid);
  font-size: 1rem;
  margin-top: 8px;
  text-align: center;
}
.contato-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}
.contato-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px 20px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 2px solid transparent;
}
.contato-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: #e0e7ff;
}
.contato-icon {
  width: 56px; height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin: 0 auto 14px;
}
.contato-card h4 {
  font-family: var(--font-title);
  font-size: 1rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 8px;
}
.contato-card p { font-size: .9rem; color: var(--text-mid); line-height: 1.55; }
.contato-card a { color: var(--primary); font-weight: 700; }
.contato-card a:hover { text-decoration: underline; }

.contato-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ═══════════════════════════════════════
   RODAPÉ
═══════════════════════════════════════ */
.footer {
  background: #1E293B;
  color: rgba(255,255,255,.7);
  position: relative;
}
.footer-wave { line-height: 0; }
.footer-wave svg { width: 100%; height: 60px; }

.footer-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 40px 24px;
  display: flex;
  gap: 60px;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: center;
}
.footer-brand {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  flex: 1;
  min-width: 240px;
}
.footer-logo {
  width: 70px; height: 70px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 3px solid rgba(255,255,255,.15);
}
.footer-brand h3 {
  font-family: var(--font-title);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 4px;
}
.footer-brand p { font-size: .85rem; line-height: 1.7; }

.footer-seguranca { flex: 1; min-width: 240px; }
.footer-seguranca h4 {
  font-family: var(--font-title);
  font-size: 1rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-seguranca ul { display: flex; flex-direction: column; gap: 8px; }
.footer-seguranca li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .85rem;
}
.footer-seguranca li i { color: var(--green); font-size: .75rem; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  text-align: center;
  padding: 20px 24px;
  font-size: .82rem;
  color: rgba(255,255,255,.4);
  width: 100%;
}
.footer-bottom strong { color: rgba(255,255,255,.7); }

/* ═══════════════════════════════════════
   MODAL QR
═══════════════════════════════════════ */
.qr-modal {
  position: fixed;
  inset: 0;
  z-index: 9000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s;
}
.qr-modal.active { opacity: 1; pointer-events: all; }

.qr-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(15,15,30,.75);
  backdrop-filter: blur(6px);
}
.qr-modal-box {
  position: relative;
  z-index: 1;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  max-width: 420px;
  width: 90%;
  box-shadow: 0 40px 100px rgba(0,0,0,.5);
  transform: scale(.9);
  transition: transform .3s;
  text-align: center;
}
.qr-modal.active .qr-modal-box { transform: scale(1); }
.qr-modal-close {
  position: absolute;
  top: 14px; right: 14px;
  width: 34px; height: 34px;
  border-radius: 50%;
  background: #f1f5f9;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--text-mid);
  transition: var(--transition);
}
.qr-modal-close:hover { background: var(--red); color: var(--white); }
.qr-modal-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
}
.pix-logo-modal { height: 32px; }
.qr-modal-header h3 { font-family: var(--font-title); font-size: 1.1rem; font-weight: 800; color: var(--text-dark); }
.qr-modal-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 3px dashed #cbd5e1;
  border-radius: var(--radius);
  padding: 40px;
  margin-bottom: 20px;
  background: #f8fafc;
  color: var(--text-light);
}
.qr-modal-placeholder i { font-size: 4rem; color: #cbd5e1; margin-bottom: 8px; }
.qr-modal-placeholder p { font-weight: 700; color: var(--text-mid); }
.qr-modal-info { margin-bottom: 20px; }
.qr-modal-info p { font-size: .9rem; color: var(--text-mid); margin-bottom: 6px; }
.qr-modal-alerta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #FEF3C7;
  color: #92400E;
  font-weight: 700;
  font-size: .85rem;
  padding: 8px 14px;
  border-radius: 8px;
  border: 1px solid #FDE68A;
}

/* ═══════════════════════════════════════
   BACK TO TOP / TOAST
═══════════════════════════════════════ */
.back-to-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), #7C3AED);
  color: var(--white);
  border: none;
  cursor: pointer;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(79,70,229,.4);
  transition: var(--transition);
  opacity: 0;
  pointer-events: none;
  z-index: 999;
}
.back-to-top.visible { opacity: 1; pointer-events: all; }
.back-to-top:hover { transform: translateY(-4px) scale(1.1); }

.toast {
  position: fixed;
  bottom: 90px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: linear-gradient(135deg, var(--green), var(--teal));
  color: var(--white);
  font-weight: 700;
  font-size: .95rem;
  padding: 12px 24px;
  border-radius: 99px;
  box-shadow: 0 8px 32px rgba(16,185,129,.4);
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
  transition: all .35s;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 8px;
}
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

/* ═══════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════ */

/* ── Desktop grande: 4 colunas nos cards ── */
@media (min-width: 1024px) {
  .cards-grid { grid-template-columns: repeat(4, 1fr); }
  .contato-grid { grid-template-columns: repeat(4, 1fr); }
  /* Hero — coluna única centralizada */
  .hero-container { max-width: 720px; margin: 0 auto; }
  .sobre .section-container { max-width: 760px; }
  .contribuicao-inner { max-width: 1100px; }
}

/* ── Tablet ── */
@media (max-width: 1024px) {
  /* Hero — coluna única, ajusta padding */
  .hero { padding: 80px 0 60px; min-height: auto; }
  .hero-container { padding: 40px 24px; max-width: 640px; margin: 0 auto; }
  .hero-badge { max-width: 90%; }

  /* Sobre — coluna única */
  .sobre .section-container { padding: 0 24px; max-width: 640px; }
  .sobre-image-col { max-width: 480px; }

  /* Cards: 2 colunas no tablet */
  .cards-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }

  /* Contribuição */
  .contribuicao-info { max-width: 100%; }
  .contribuicao-pix { max-width: 420px; }

  /* Transparência */
  .transparencia-inner { flex-direction: column; align-items: center; text-align: center; }
  .trans-items { align-items: center; }
  .trans-item { justify-content: center; }

  /* Contato */
  .contato-grid { grid-template-columns: repeat(2, 1fr); }

  /* Footer */
  .footer-container { flex-direction: column; align-items: center; gap: 32px; text-align: center; }
  .footer-brand { flex-direction: column; align-items: center; }
  .footer-seguranca { text-align: left; }
}

/* ── Mobile: tudo em coluna única ── */
@media (max-width: 640px) {
  /* Navbar mobile */
  .nav-links {
    position: absolute;
    top: 72px; left: 0; right: 0;
    background: var(--white);
    flex-direction: column;
    align-items: stretch;
    padding: 16px 20px 20px;
    gap: 4px;
    border-bottom: 2px solid #e0e7ff;
    box-shadow: 0 8px 24px rgba(0,0,0,.1);
    transform: translateY(-120%);
    opacity: 0;
    transition: all .3s;
    pointer-events: none;
    z-index: 999;
  }
  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }
  .nav-toggle { display: flex; }
  .nav-link { border-radius: var(--radius-sm); padding: 12px 16px; }
  .nav-cta { margin-top: 8px; justify-content: center; }

  /* Hero mobile */
  .hero { padding: 72px 0 40px; min-height: auto; }
  .hero-container { padding: 32px 16px 40px; max-width: 100%; margin: 0 auto; }
  .hero-title { font-size: clamp(1.9rem, 7.5vw, 2.6rem); }
  .hero-visual { max-width: 100%; }
  .hero-badge { font-size: .72rem; padding: 6px 14px; max-width: 88%; white-space: normal; line-height: 1.4; }
  .hero-buttons { flex-direction: column; align-items: stretch; gap: 10px; }
  .hero-buttons .btn { justify-content: center; width: 100%; }
  .hero-trust { flex-direction: column; align-items: center; gap: 8px; }

  /* Sobre mobile */
  .sobre { padding: 56px 0 70px; }
  .sobre-img { height: 210px; }
  .sobre-img-badge { font-size: .78rem; padding: 6px 14px; }
  .horario-item { min-width: 100%; justify-content: center; text-align: center; }
  .horarios { flex-direction: column; gap: 10px; align-items: center; }

  /* Cards mobile: 1 coluna */
  .cards-grid { grid-template-columns: 1fr; gap: 14px; }
  .porque-inner { padding: 48px 0; }
  .frase-cards { font-size: 1.1rem; flex-wrap: wrap; justify-content: center; gap: 8px; }

  /* Contribuição mobile */
  .contribuicao { padding: 56px 16px; }
  .contribuicao-inner { gap: 28px; }
  .valor-badge { width: 100%; justify-content: center; flex-wrap: nowrap; padding: 14px 16px; }
  .valor-label { font-size: .65rem; letter-spacing: .04em; }
  .valor-num { font-size: 2.2rem; }
  .valor-period { font-size: .85rem; }
  .trust-badges { gap: 10px; }
  .pix-buttons .btn-comprovante { margin: 0; }
  .pix-buttons { padding: 10px 14px 14px; }
  .pix-chave { padding: 10px 14px; }
  .qr-placeholder-main-inner { padding: 20px 16px; }

  /* Transparência mobile */
  .transparencia { padding: 60px 16px; }
  .trans-icon-circle { width: 80px; height: 80px; font-size: 2rem; }
  .transparencia-inner { text-align: center; }
  .transparencia-text h2 { text-align: center; }
  .transparencia-text .section-label { margin: 0 auto 12px auto; }
  .transparencia-text p { text-align: center; }
  .trans-items { align-items: center; width: 100%; }
  .trans-item {
    align-items: center;
    gap: 12px;
    text-align: left;
    width: 100%;
    justify-content: flex-start;
  }
  .trans-item-icon {
    min-width: 26px;
    width: 26px;
    height: 26px;
    margin-top: 2px;
    flex-shrink: 0;
  }
  .trans-item span { flex: 1; }

  /* Aviso segurança mobile: quebra linha, ícone centralizado */
  .aviso-seguranca {
    display: flex;
    white-space: normal;
    text-align: left;
    align-items: center;
    gap: 12px;
    width: 100%;
    padding: 14px 18px;
  }
  .aviso-seguranca i { font-size: 1.1rem; flex-shrink: 0; align-self: center; }

  /* Contato mobile */
  .contato-grid { grid-template-columns: 1fr; gap: 14px; }
  .contato-buttons { flex-direction: column; align-items: stretch; }
  .contato-buttons .btn { justify-content: center; }

  /* Seção geral */
  .section-title { font-size: clamp(1.6rem, 6vw, 2rem); }
  .section-center { margin-bottom: 32px; }

  /* Footer mobile */
  .footer-seguranca { width: 100%; }
  .footer-brand { gap: 12px; }

  /* Ajuste geral de padding lateral */
  .section-container { padding: 0 16px; }
  .sobre .section-container { padding: 0 16px; }

  /* Badge da imagem - centralizado no mobile */
  .sobre-img-badge {
    position: absolute;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
  }
}

/* ── Extra small (< 400px) ── */
@media (max-width: 400px) {
  .nav-logo span { font-size: .9rem; }
  .hero-title { font-size: 1.8rem; }
  .hero-badge { font-size: .68rem; }
  .valor-num { font-size: 2.2rem; }
  .btn { padding: 12px 18px; font-size: .88rem; }
  .cards-grid { gap: 10px; }
  .contato-card { padding: 18px 14px; }
  .pix-buttons .btn-comprovante { font-size: .92rem; }
}
