/* ============================= */
/*      HERO CINEMÁTICO B        */
/*   Fundo com fotos alternando   */
/* ============================= */

.hero {
  position: relative;
  height: 100vh;
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: #000;
}

/* Slideshow de fotos */
.hero-slideshow {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
}

.hero-slideshow img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  filter: blur(6px) brightness(0.45);
  animation: heroFade 30s infinite;
}

/* Sequência das fotos */
.hero-slideshow img:nth-child(1) { animation-delay: 0s; }
.hero-slideshow img:nth-child(2) { animation-delay: 5s; }
.hero-slideshow img:nth-child(3) { animation-delay: 10s; }
.hero-slideshow img:nth-child(4) { animation-delay: 15s; }
.hero-slideshow img:nth-child(5) { animation-delay: 20s; }

/* Animação do loop */
@keyframes heroFade {
  0%   { opacity: 0; transform: scale(1.08); }
  8%   { opacity: 1; transform: scale(1); }
  20%  { opacity: 1; transform: scale(1); }
  25%  { opacity: 0; transform: scale(1.05); }
  100% { opacity: 0; }
}

/* Overlay neon */
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(
    135deg,
    rgba(0,255,140,0.20),
    rgba(0,150,90,0.15),
    rgba(0,0,0,0.75)
  );
}

/* Conteúdo */
.hero-content {
  position: relative;
  z-index: 3;
  padding: 20px;
  max-width: 850px;
  color: #fff;
}

/* Logo */
.hero-logo {
  width: 240px;
  display: block;
  margin: 0 auto 30px auto;
  filter: drop-shadow(0 4px 14px rgba(0,255,150,0.4));
  opacity: 0;
  animation: logoFade 1.4s ease forwards;
}

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

/* Título */
.hero-title {
  font-size: 3.6rem;
  font-weight: 800;
  line-height: 1.15;
  color: #d9ff60;
  text-shadow: 0 0 18px rgba(200,255,80,0.3);
  opacity: 0;
  animation: titleSlide 1.3s .3s ease-out forwards;
}

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

/* Subtítulo */
.hero-subtitle {
  font-size: 1.4rem;
  opacity: 0;
  margin-top: 20px;
  animation: fadeUp 1.3s .8s ease forwards;
}

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

/* Responsivo */
@media (max-width: 768px) {
  .hero-title { font-size: 2.5rem; }
  .hero-subtitle { font-size: 1.1rem; }
  .hero-logo { width: 170px; margin-bottom: 20px; }
}

/* ============================= */
/*      AÇÕES SOLIDÁRIAS         */
/* ============================= */

.acoes-section {
  padding: 120px 40px;
  background: #0c0c0c;
  color: #fff;
}

.acoes-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.acoes-title {
  font-size: 3rem;
  font-weight: 800;
  color: #c4fc1e;
  text-shadow: 0 0 12px rgba(0, 86, 50, 0.4);
  margin-bottom: 10px;
}

.acoes-subtitle {
  font-size: 1.3rem;
  opacity: 0.8;
  margin-bottom: 60px;
}

.acoes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
}

.acao-card {
  background: #2a3200;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 0 25px rgba(0,255,150,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.acao-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 0 35px rgba(0,255,150,0.25);
}

.acao-img {
  height: 240px;
  background-size: cover;
  background-position: center;
  filter: brightness(0.9);
}

.acao-info {
  padding: 20px;
  text-align: left;
}

.acao-info h3 {
  font-size: 1.5rem;
  margin-bottom: 8px;
  color: #b3ff00;
}

.acao-info p {
  font-size: 1rem;
  opacity: 0.85;
}

/* Mobile */
@media (max-width: 768px) {
  .acoes-title { font-size: 2.3rem; }
  .acoes-subtitle { font-size: 1.1rem; }
}
