/* ============================================
   NATAL SOLIDÁRIO - CSS PRINCIPAL
   Mobile First Approach
   ============================================ */

/* Reset e Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* Paleta de Cores - Modo White */
  --watermelon: #b70000;
  --ink-black: #0D1321;
  --petal-frost: #b70000;
  --cerulean: #40798C;
  --white: #FEFDFF;
  
  /* Cores principais (mapeadas da paleta) */
  --cor-primaria: var(--watermelon);
  --cor-secundaria: var(--cerulean);
  --cor-destaque: var(--petal-frost);
  --cor-escura: var(--ink-black);
  --cor-clara: var(--white);
  --cor-texto: var(--ink-black);
  --cor-texto-claro: #666666;
  
  /* Cores sólidas (sem gradientes) */
  
  /* Gradiente animado para hover dos botões */
  --gradiente-hover: linear-gradient(180deg, #b70000 0%, #9a0000 50%, #7a0000 100%);
  
  /* Sombras */
  --sombra: 0 2px 8px rgba(13, 19, 33, 0.1);
  --sombra-hover: 0 4px 12px rgba(13, 19, 33, 0.15);
  --sombra-suave: 0 2px 4px rgba(13, 19, 33, 0.08);
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  line-height: 1.6;
  color: var(--cor-texto);
  overflow-x: hidden;
  margin: 0;
}

/* Container do fundo natalino */
#christmas-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: -1;
  pointer-events: none;
  background: linear-gradient(180deg, #c60000, #004b29);
  background-size: 400% 400%;
  animation: gradientMove 12s ease infinite;
}

/* Animação do degradê do background */
@keyframes gradientMove {
  0% { background-position: 50% 0%; }
  50% { background-position: 50% 100%; }
  100% { background-position: 50% 0%; }
}

/* Animação do gradiente dos botões */
@keyframes gradientButton {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Garantir que todos os botões tenham o efeito */
button.btn-cta,
a.btn-cta {
  position: relative;
  overflow: hidden;
}

#snow-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ============================================
   HEADER
   ============================================ */
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 1rem;
  background: var(--cor-clara);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--sombra);
}

.header .logo img {
  max-height: 50px;
  width: auto;
}

.btn-destaque {
  background: linear-gradient(180deg, #b70000 0%, #9a0000 50%, #7a0000 100%);
  color: var(--white);
  padding: 0.75rem 1.5rem;
  border-radius: 25px;
  font-weight: bold;
  border: 2px solid var(--white);
  cursor: pointer;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(183, 0, 0, 0.4);
}

.btn-destaque:hover {
  background: linear-gradient(180deg, #b70000 0%, #9a0000 50%, #7a0000 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(183, 0, 0, 0.6);
}

.btn-destaque * {
  position: relative;
  z-index: 1;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  padding: 1rem 1rem 1.5rem 1rem;
  padding-top: 0.5rem;
  text-align: center;
  background: transparent;
  color: var(--white);
  position: relative;
  overflow: hidden;
  min-height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}


.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  width: 100%;
  margin: 0 auto;
  background: rgba(13, 19, 33, 0.85);
  padding: 1.5rem 1rem;
  border-radius: 20px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(10px);
  text-align: center;
}

.hero h1 {
  font-size: 1.8rem;
  margin-bottom: 0.75rem;
  line-height: 1.3;
  font-weight: 800;
  text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.hero p {
  font-size: 1rem;
  margin-bottom: 1rem;
  opacity: 0.95;
  line-height: 1.6;
}

.cta-container {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  max-width: 400px;
  margin: 0 auto;
}

/* ============================================
   BOTÕES CTA
   ============================================ */
.btn-cta {
  padding: 1rem 2rem;
  border-radius: 30px;
  font-weight: bold;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  text-align: center;
}

.btn-cta-primary {
  background: var(--white);
  color: var(--ink-black);
  border: 2px solid #b70000;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.btn-cta-primary:hover {
  background: linear-gradient(180deg, #b70000 0%, #9a0000 50%, #7a0000 100%);
  color: var(--white);
  border-color: #b70000;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(183, 0, 0, 0.5);
}

.btn-cta-primary * {
  position: relative;
  z-index: 1;
}

.btn-cta-secondary {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.btn-cta-secondary:hover {
  background: linear-gradient(180deg, #b70000 0%, #9a0000 50%, #7a0000 100%);
  color: var(--white);
  border-color: #b70000;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(183, 0, 0, 0.5);
}

.btn-cta-secondary * {
  position: relative;
  z-index: 1;
}

.btn-cta-gradient {
  background: linear-gradient(180deg, #b70000 0%, #9a0000 50%, #7a0000 100%);
  color: var(--white);
  border: 2px solid var(--white);
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(183, 0, 0, 0.4);
}

.btn-cta-gradient:hover {
  background: linear-gradient(180deg, #d40000 0%, #b70000 50%, #9a0000 100%);
  border-color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(183, 0, 0, 0.6);
}

.btn-cta-gradient * {
  position: relative;
  z-index: 1;
}

/* Botão Doar Agora - Estilo Natalino */
.btn-doar-agora {
  width: 100%;
  padding: 1.2rem 2rem;
  background: linear-gradient(180deg, #b70000 0%, #9a0000 50%, #7a0000 100%);
  color: var(--white);
  border: 3px solid var(--white);
  border-radius: 30px;
  font-size: 1.2rem;
  font-weight: bold;
  cursor: pointer;
  margin-top: 0;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(183, 0, 0, 0.4);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.cta-container .btn-doar-agora:first-child {
  margin-top: 0;
}

.cta-container .btn-doar-agora:not(:first-child) {
  margin-top: 0.75rem;
}

.btn-doar-agora:hover {
  background: linear-gradient(180deg, #d40000 0%, #b70000 50%, #9a0000 100%);
  border-color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(183, 0, 0, 0.6);
}

.btn-doar-agora * {
  position: relative;
  z-index: 1;
}

@media (max-width: 768px) {
  .btn-doar-agora {
    font-size: 1rem;
    padding: 1rem 1.5rem;
  }
}

/* ============================================
   SEÇÕES
   ============================================ */
.secao {
  padding: 1.5rem 1rem;
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  overflow-x: hidden;
}

.secao-content {
  background: rgba(13, 19, 33, 0.85);
  padding: 1.5rem 1rem;
  border-radius: 20px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(10px);
  margin: 0 auto 1rem;
  max-width: 100%;
  width: 100%;
  box-sizing: border-box;
  overflow-x: hidden;
  color: var(--white);
}

.secao-content h3 {
  color: var(--white);
}

.secao-title {
  font-size: 2rem;
  text-align: center;
  margin-bottom: 1rem;
  color: var(--white);
  font-weight: 800;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Seção Como Funciona - mais compacta */
.secao-como-funciona {
  padding: 1rem 1rem !important;
}

.secao-como-funciona .secao-content {
  background: rgba(13, 19, 33, 0.85);
  padding: 1.5rem 1rem;
  border-radius: 20px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(10px);
}

.secao-como-funciona .secao-title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--white);
}

.secao-como-funciona .passo h3 {
  color: var(--cor-escura);
}

.secao-como-funciona .passo p {
  color: var(--cor-texto-claro);
}

/* ============================================
   VÍDEO SECTION
   ============================================ */
.video-section {
  padding: 1.5rem 1rem;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: auto;
  position: relative;
  z-index: 1;
}

.video-section .secao {
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: rgba(13, 19, 33, 0.85);
  padding: 1.5rem 1rem 2.5rem 1rem;
  border-radius: 20px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(10px);
}

.video-container {
  position: relative;
  max-width: 100%;
  width: 100%;
  margin: 0 auto 1.5rem;
  border-radius: 10px;
  box-shadow: var(--sombra);
  background: #000;
  overflow: hidden;
}

.video-container iframe,
.video-container video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  border: none;
}

/* ConverteAI Player */
#ifr_6927a57746123d900668d5df_wrapper {
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
}

#ifr_6927a57746123d900668d5df_aspect {
  border-radius: 10px;
  overflow: hidden;
}

#ifr_6927a57746123d900668d5df {
  border-radius: 10px;
}


/* ============================================
   COMO FUNCIONA
   ============================================ */
.como-funciona {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  padding: 0;
  max-width: 100%;
  margin: 0 auto;
}

.passo {
  text-align: center;
  padding: 1rem 0.75rem;
  background: rgba(254, 253, 255, 0.95);
  border-radius: 10px;
  box-shadow: var(--sombra-suave);
  transition: transform 0.3s;
}

.passo:hover {
  transform: translateY(-5px);
}

.passo-numero {
  width: 45px;
  height: 45px;
  background: var(--cor-primaria);
  color: var(--cor-clara);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: bold;
  margin: 0 auto 0.75rem;
}

.passo h3 {
  font-size: 1rem;
  margin-bottom: 0.25rem;
  color: var(--cor-escura);
  font-weight: 600;
}

.passo p {
  color: var(--cor-texto-claro);
  line-height: 1.5;
  font-size: 0.9rem;
  margin: 0;
}

/* ============================================
   TRANSPARÊNCIA
   ============================================ */
.transparencia {
  background: transparent;
  position: relative;
  z-index: 1;
}

.transparencia .secao-content {
  background: rgba(13, 19, 33, 0.85);
  padding: 1.5rem 1rem;
  border-radius: 20px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(10px);
}

.bloco-transparencia {
  margin-bottom: 1.5rem;
  background: rgba(254, 253, 255, 0.95);
  padding: 1.5rem;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(13, 19, 33, 0.1);
  border: 1px solid #b70000;
  backdrop-filter: blur(10px);
  width: 100%;
  box-sizing: border-box;
  overflow: hidden;
}

.bloco-transparencia h3 {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
  color: var(--cor-escura);
}

.bloco-transparencia {
  color: var(--cor-texto);
}

.bloco-transparencia p {
  color: var(--cor-texto-claro);
  line-height: 1.8;
  margin-bottom: 0.75rem;
}

.bloco-imagens {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin-top: 0.75rem;
}

.bloco-imagens img {
  border-radius: 10px;
  box-shadow: var(--sombra);
  width: 100%;
  height: auto;
}

/* Banner específico - maior */
.bloco-banner {
  grid-template-columns: 1fr !important;
  max-width: 100%;
}

.bloco-banner img {
  width: 100%;
  max-width: 100%;
  height: auto;
  object-fit: contain;
}

.btn-cnpj {
  background: var(--cor-primaria);
  color: var(--white);
  padding: 0.75rem 1.5rem;
  border-radius: 25px;
  border: none;
  cursor: pointer;
  font-weight: bold;
  margin-top: 1rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.btn-cnpj:hover {
  background: linear-gradient(180deg, #b70000 0%, #9a0000 50%, #7a0000 100%);
  background-size: 200% 200%;
  animation: gradientButton 3s ease infinite;
  transform: translateY(-2px);
  box-shadow: var(--sombra-hover);
}

.btn-cnpj * {
  position: relative;
  z-index: 1;
}

.estatisticas {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.estatistica-item {
  text-align: center;
  padding: 1.5rem;
  background: var(--white);
  border-radius: 10px;
  border: 2px solid #b70000;
  box-shadow: 0 4px 15px rgba(183, 0, 0, 0.2);
  min-width: 0;
  max-width: 100%;
  width: 100%;
  box-sizing: border-box;
  overflow: hidden;
  word-wrap: break-word;
}

.estatistica-numero {
  font-size: 2.5rem;
  font-weight: bold;
  color: #b70000;
  margin-bottom: 0.5rem;
  line-height: 1.2;
  word-break: break-word;
}

.estatistica-label {
  color: #666;
  font-size: 0.9rem;
  line-height: 1.4;
}

/* Ajustes para mobile/iPhone */
@media (max-width: 768px) {
  .bloco-transparencia {
    padding: 1rem;
  }
  
  .estatisticas {
    grid-template-columns: 1fr;
    gap: 1rem;
    margin: 1.5rem 0;
    width: 100%;
  }
  
  .estatistica-item {
    padding: 1.25rem;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    box-sizing: border-box;
  }
  
  .estatistica-numero {
    font-size: 2rem;
  }
  
  .estatistica-label {
    font-size: 0.85rem;
  }
}

@media (max-width: 480px) {
  .bloco-transparencia {
    padding: 0.75rem;
    border-radius: 15px;
  }
  
  .estatisticas {
    gap: 0.75rem;
    margin: 1rem 0;
  }
  
  .estatistica-item {
    padding: 1rem;
    border-width: 2px;
  }
  
  .estatistica-numero {
    font-size: 1.75rem;
  }
  
  .estatistica-label {
    font-size: 0.8rem;
  }
}

/* ============================================
   COMPROVANTES
   ============================================ */
.comprovantes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1rem;
  margin: 1rem auto;
  max-width: 100%;
  justify-items: center;
}

.comprovante-item {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: var(--sombra);
  transition: transform 0.3s;
}

.comprovante-item:hover {
  transform: scale(1.05);
}

.comprovante-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

/* ============================================
   DEPOIMENTOS
   ============================================ */
.depoimentos {
  background: transparent;
  position: relative;
  z-index: 1;
}

.depoimentos .secao-content {
  background: rgba(13, 19, 33, 0.85);
  padding: 1.5rem 1rem;
  border-radius: 20px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(10px);
}

.depoimentos-carrossel-container {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 1rem 0;
}

.depoimentos-carrossel {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE and Edge */
  padding: 0 calc((100% - 85%) / 2);
  padding-bottom: 1rem;
  align-items: flex-start;
}

.depoimentos-carrossel::-webkit-scrollbar {
  display: none; /* Chrome, Safari, Opera */
}

.depoimento-video-item {
  flex: 0 0 85%;
  max-width: 85%;
  min-width: 0;
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  align-items: center;
  align-self: flex-start;
}

.depoimento-titulo {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--cor-escura);
  margin-bottom: 0.75rem;
  text-align: center;
  padding: 0 0.5rem;
  width: 100%;
  height: 3.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.depoimento-video {
  position: relative;
  width: 100%;
  max-width: 100%;
  aspect-ratio: 9 / 16; /* Formato vertical para mobile */
  overflow: hidden;
  border-radius: 15px;
  box-shadow: var(--sombra);
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.depoimento-video video {
  width: 100%;
  height: 100%;
  border-radius: 15px;
  object-fit: cover;
  display: block;
  background: #000;
  -webkit-playsinline: true;
  playsinline: true;
  position: relative;
}

/* Garantir que o vídeo mostre o primeiro frame no iPhone */
.depoimento-video video:not(:playing) {
  background: #000;
}

/* Quando o vídeo tem poster, usar como background também para garantir visibilidade no iPhone */
.depoimento-video video[poster]:not([poster=""]) {
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
  background-color: transparent !important;
}

/* Garantir que o poster seja visível quando o vídeo não está tocando */
.depoimento-video video:not(:playing)[poster]:not([poster=""]) {
  opacity: 1;
}

/* Quando o vídeo está pausado, mostrar o poster claramente */
.depoimento-video video:paused[poster]:not([poster=""]) {
  background-image: attr(poster url) !important;
  opacity: 1 !important;
}

/* Garantir que o vídeo não oculte o poster quando pausado */
.depoimento-video video[poster]:not([poster=""]):paused {
  object-fit: cover;
}

/* Container para o vídeo com poster overlay */
.depoimento-video {
  position: relative;
  width: 100%;
  height: 100%;
}

/* Overlay do poster para iPhone */
.depoimento-video .video-poster-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 2;
  pointer-events: none;
  border-radius: 15px;
  opacity: 1;
  transition: opacity 0.3s ease;
}

.depoimento-video video.playing ~ .video-poster-overlay,
.depoimento-video video:playing ~ .video-poster-overlay {
  opacity: 0;
  pointer-events: none;
}

/* No iPhone, garantir que o poster apareça antes de tocar */
@supports (-webkit-touch-callout: none) {
  .depoimento-video video[poster]:not([poster=""]) {
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
  }
}

.depoimento-video video::-webkit-media-controls {
  display: flex !important;
}

.video-placeholder {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--cor-clara);
  color: var(--cor-texto-claro);
  font-size: 1.2rem;
  font-weight: 600;
  text-align: center;
  padding: 2rem;
  border-radius: 15px;
  z-index: 1;
}

.depoimento-video video.loaded ~ .video-placeholder {
  display: none;
}

.carrossel-indicadores {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1rem;
  padding: 0 1rem;
}

.carrossel-indicador {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--cor-texto-claro);
  cursor: pointer;
  transition: all 0.3s ease;
}

.carrossel-indicador.active {
  background: var(--cor-primaria);
  width: 30px;
  border-radius: 5px;
}

@media (min-width: 768px) {
  .depoimento-video-item {
    flex: 0 0 45%;
    max-width: 45%;
    min-width: 0;
  }
  
  .depoimentos-carrossel {
    padding: 0 2rem;
  }
  
  .depoimento-video {
    aspect-ratio: 9 / 16;
  }
}

@media (min-width: 1024px) {
  .depoimento-video-item {
    flex: 0 0 30%;
    max-width: 30%;
    min-width: 0;
  }
  
  .depoimento-video {
    aspect-ratio: 9 / 16;
  }
}

/* ============================================
   COLABORADORES
   ============================================ */
.colaboradores-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  margin: 1rem auto;
  justify-items: center;
  max-width: 100%;
}

@media (min-width: 768px) {
  .colaboradores-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
}

.colaborador-item {
  text-align: center;
  padding: 1rem;
  background: rgba(254, 253, 255, 0.95);
  border-radius: 15px;
  box-shadow: 0 2px 10px rgba(13, 19, 33, 0.1);
  border: 1px solid var(--petal-frost);
  transition: all 0.3s;
}

.colaborador-item h4 {
  color: var(--cor-escura);
}

.colaborador-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 15px rgba(183, 0, 0, 0.3);
  border-color: var(--watermelon);
}

.colaborador-item img {
  width: 100%;
  max-width: 200px;
  height: auto;
  border-radius: 10px;
  margin: 0 auto 1rem;
}

.colaborador-item h4 {
  color: var(--cor-escura);
  margin-top: 1rem;
}

/* Grid de Fundadores - apenas 2 itens, um embaixo do outro */
.fundadores-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin: 1rem auto;
  max-width: 600px;
  width: 100%;
}

.fundador-item {
  text-align: center;
  padding: 1rem;
  background: rgba(254, 253, 255, 0.95);
  border-radius: 15px;
  box-shadow: 0 2px 10px rgba(13, 19, 33, 0.1);
  border: 1px solid var(--petal-frost);
  transition: all 0.3s;
}

.fundador-item h4 {
  color: var(--cor-escura);
}

.fundador-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 15px rgba(183, 0, 0, 0.3);
  border-color: var(--watermelon);
}

.fundador-item img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  margin: 0 auto 1rem;
  display: block;
}

.fundador-item h4 {
  color: var(--cor-escura);
  margin-top: 0.5rem;
  margin-bottom: 0;
}

@media (min-width: 768px) {
  .fundadores-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
  }
}

/* ============================================
   SEÇÃO FINAL - COPYWRITING
   ============================================ */
.copywriting-final {
  background: transparent;
  color: var(--white);
  padding: 1.5rem 1rem;
  text-align: center;
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
  width: 100%;
}

.copywriting-final .secao-content {
  background: rgba(13, 19, 33, 0.85);
  padding: 1.5rem 1rem;
  border-radius: 20px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(10px);
  margin: 0 auto;
  max-width: 100%;
}

.copywriting-final h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  font-weight: 800;
  color: var(--white);
}

.copywriting-final p {
  font-size: 1.2rem;
  line-height: 2;
  max-width: 800px;
  margin: 0 auto 1rem;
  opacity: 0.95;
  color: var(--white);
}

.cta-triplo {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  max-width: 600px;
  margin: 1rem auto 0;
}

.cta-triplo .btn-doar-agora {
  width: 100%;
}

/* ============================================
   MODAL / POPUP
   ============================================ */
.modal-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.85);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.modal-overlay.active {
  display: flex;
}

.modal-content {
  background: var(--white);
  border-radius: 20px;
  padding: 2rem;
  max-width: 500px;
  width: 100%;
  border: 3px solid #b70000;
  box-shadow: 0 8px 30px rgba(183, 0, 0, 0.6);
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  animation: slideUp 0.3s ease;
  margin: auto;
}

@media (max-width: 768px) {
  .modal-overlay {
    padding: 0.5rem;
    align-items: center;
    justify-content: center;
    padding-top: 1rem;
  }
  
  .modal-content {
    max-width: 95%;
    max-height: 95vh;
    padding: 1.5rem;
    border-radius: 15px;
    margin: auto;
  }
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: linear-gradient(180deg, #b70000 0%, #9a0000 50%, #7a0000 100%);
  border: 2px solid #b70000;
  font-size: 2rem;
  cursor: pointer;
  color: var(--white);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.3s ease;
  font-weight: bold;
  z-index: 10;
  box-shadow: 0 4px 15px rgba(183, 0, 0, 0.4);
}

.modal-close:hover {
  background: linear-gradient(180deg, #d40000 0%, #b70000 50%, #9a0000 100%);
  color: var(--white);
  border-color: #b70000;
  transform: rotate(90deg);
  box-shadow: 0 4px 20px rgba(183, 0, 0, 0.6);
}

/* Modal CNPJ - maior para exibir imagem/documento */
.modal-cnpj {
  max-width: 90vw !important;
  max-height: 95vh !important;
  padding: 2rem !important;
  border: 3px solid #b70000 !important;
  box-shadow: 0 8px 30px rgba(183, 0, 0, 0.6) !important;
  margin: auto !important;
}

.modal-cnpj h2 {
  margin-bottom: 1.5rem;
  color: var(--ink-black);
  text-align: center;
  font-size: 1.5rem;
  font-weight: 700;
}

/* Modal Carta Completa */
.modal-carta-completa {
  max-width: 90vw !important;
  max-height: 95vh !important;
  padding: 1.5rem !important;
  border: 3px solid #b70000 !important;
  box-shadow: 0 8px 30px rgba(183, 0, 0, 0.6) !important;
  margin: auto !important;
}

.modal-carta-completa h2 {
  margin-bottom: 1rem;
  color: var(--ink-black);
  text-align: center;
  font-size: 1.5rem;
  font-weight: 700;
}

.carta-completa-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  max-height: calc(95vh - 200px);
  overflow-y: auto;
  width: 100%;
  padding: 1rem 0;
}

.carta-completa-imagem {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  margin: 0 auto;
  display: block;
}

@media (min-width: 768px) {
  .modal-carta-completa {
    max-width: 700px !important;
  }
}

@media (max-width: 768px) {
  .modal-carta-completa {
    padding: 1rem !important;
  }
  
  .modal-carta-completa h2 {
    font-size: 1.3rem;
  }
  
  .carta-completa-container {
    max-height: calc(95vh - 180px);
  }
}

.cnpj-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  max-height: calc(95vh - 120px);
  overflow-y: auto;
  width: 100%;
}

.cnpj-container img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cnpj-fallback {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.cnpj-fallback iframe {
  width: 100%;
  min-height: 70vh;
  border: none;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

@media (min-width: 768px) {
  .modal-cnpj {
    max-width: 800px !important;
  }
}

/* Estados Modal */
#modal-estados .modal-content {
  max-width: 600px;
  border: 3px solid #b70000;
  box-shadow: 0 8px 30px rgba(183, 0, 0, 0.6);
  margin: auto;
}

#modal-estados h2 {
  color: var(--ink-black);
  margin-bottom: 0.75rem;
  font-size: 1.5rem;
  text-align: center;
  font-weight: 700;
}

#modal-estados p {
  color: var(--cor-texto-claro);
  margin-bottom: 1.5rem;
  text-align: center;
  font-size: 0.95rem;
}

.estados-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  margin: 1.5rem 0;
}

@media (max-width: 768px) {
  .estados-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
  }
}

@media (max-width: 480px) {
  .estados-grid {
    grid-template-columns: 1fr;
  }
}

.estado-btn {
  padding: 1rem;
  background: var(--white);
  border: 2px solid #b70000;
  border-radius: 10px;
  cursor: pointer;
  font-weight: bold;
  color: #b70000;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(183, 0, 0, 0.3);
}

.estado-btn:hover {
  background: linear-gradient(180deg, #b70000 0%, #9a0000 50%, #7a0000 100%);
  color: var(--white);
  border-color: #b70000;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(183, 0, 0, 0.6);
}

.estado-btn * {
  position: relative;
  z-index: 1;
}

.btn-ver-todos {
  margin-top: 1rem;
  padding: 0.75rem 1.5rem;
  background: var(--white);
  border: 2px solid #b70000;
  color: #b70000;
  border-radius: 25px;
  cursor: pointer;
  font-weight: bold;
  width: 100%;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 6px rgba(183, 0, 0, 0.2);
}

.btn-ver-todos:hover {
  background: linear-gradient(180deg, #b70000 0%, #9a0000 50%, #7a0000 100%);
  color: var(--white);
  border-color: #b70000;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(183, 0, 0, 0.5);
}

.btn-ver-todos * {
  position: relative;
  z-index: 1;
}

/* Popup Surpreender */
#modal-surpreender .modal-content {
  border: 3px solid #b70000;
  box-shadow: 0 8px 30px rgba(183, 0, 0, 0.6);
  margin: auto;
}

#modal-surpreender h2 {
  color: var(--ink-black);
  margin-bottom: 0.75rem;
  font-size: 1.5rem;
  text-align: center;
  font-weight: 700;
}

#modal-surpreender p {
  color: var(--cor-texto-claro);
  margin-bottom: 1.5rem;
  text-align: center;
  font-size: 0.95rem;
}

.opcoes-surpreender {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1.5rem;
}

.opcoes-surpreender .btn-doar-agora {
  width: 100%;
  margin: 0;
}

/* Roleta Modal */
#modal-roleta .modal-content {
  border: 3px solid #b70000;
  box-shadow: 0 8px 30px rgba(183, 0, 0, 0.6);
  max-width: 500px;
  margin: auto;
}

#modal-roleta h2 {
  color: var(--ink-black);
  margin-bottom: 1rem;
  font-size: 1.5rem;
  text-align: center;
  font-weight: 700;
}

.roleta-container {
  text-align: center;
}

.roleta-imagem-container {
  position: relative;
  display: inline-block;
  margin: 1rem 0;
}

.roleta-canvas {
  max-width: 100%;
  margin: 1rem auto;
  display: block;
  border-radius: 50%;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

#roleta-imagem {
  border-radius: 50%;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* Botão girar agora usa btn-doar-agora */

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--cor-escura);
  color: var(--cor-clara);
  padding: 2rem 1rem;
  text-align: center;
}

.footer p {
  margin: 0.5rem 0;
  opacity: 0.8;
}

/* ============================================
   RESPONSIVE - TABLET
   ============================================ */
@media (min-width: 768px) {
  .hero {
    padding: 4rem 2rem;
    min-height: 70vh;
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  .hero p {
    font-size: 1.2rem;
  }

  .opcoes-surpreender {
    flex-direction: row;
    justify-content: center;
  }

  .opcoes-surpreender .btn-cta {
    width: auto;
    min-width: 250px;
  }

  .cta-container {
    flex-direction: row;
    justify-content: center;
  }

  .como-funciona {
    grid-template-columns: repeat(3, 1fr);
  }

  .estados-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .cta-triplo {
    flex-direction: row;
    max-width: 800px;
  }
}

/* ============================================
   RESPONSIVE - DESKTOP
   ============================================ */
@media (min-width: 1024px) {
  .secao {
    padding: 5rem 2rem;
  }
  
  .video-section .secao {
    padding: 2rem 1rem;
  }

  .hero {
    padding: 1rem 2rem 3rem 2rem;
    padding-top: 1rem;
    min-height: auto;
  }

  .hero h1 {
    font-size: 3.5rem;
  }

  .hero p {
    font-size: 1.4rem;
  }

  .bloco-imagens {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* ============================================
   CONFETTI - Garantir que apareça acima do modal
   ============================================ */
canvas:not(.roleta-canvas) {
  z-index: 10000 !important;
  pointer-events: none !important;
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
}