/* ===== Reset e Fontes ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Montserrat', sans-serif;
}

html,
body {
  scroll-behavior: smooth;
  padding-top: 0px;
}




/* ===== Navbar ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%; /* garante 100% da largura da tela */
  background: linear-gradient(to bottom, #1a458e, #1e3c72);
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center; /* centraliza verticalmente */
  padding: 0.5rem 2rem; /* espaçamento interno equilibrado */
  box-sizing: border-box; /* padding não quebra a largura */
  z-index: 1000;
}

.navbar .logo {
  font-weight: 700;
  font-size: 1.5rem;
}

.navbar .menu {
  display: flex;
  gap: 2rem;
}

.navbar .menu a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.navbar .menu a:hover {
  color: #ffcb05;
}

/* ===== Hamburger ===== */
.hamburger {
  display: none; /* só aparece em telas pequenas */
  flex-direction: column;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  height: 40px;
}

.hamburger div {
  width: 25px;
  height: 3px;
  background: #fff;
  margin: 4px 0;
  transition: 0.4s;
}

/* ===== Responsivo ===== */
@media (max-width: 1300px) {
  .hamburger {
    display: flex; /* mostra hambúrguer */
  }

  .navbar .menu {
    display: none; /* esconde menu normal */
    position: absolute;
    top: 60px;
    left: 0;
    background: linear-gradient(to bottom, #1a458e, #1e3c72);
    width: 100%;
    flex-direction: column;
    gap: 1rem;
    padding: 1rem 0;
  }

  .navbar .menu.show {
    display: flex; /* quando ativo */
  }

  .navbar .menu a {
    padding-left: 20px; /* dá um respiro nas laterais */
    margin-left: 10px;
  }
}





/* ===== Sections ===== */
section {
  min-height: 90vh;
  padding: 20px 10%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  color: #fff;
}

section h2 {
  font-size: 2.8rem;
  margin-bottom: 1rem;
}

section p {
  font-size: 1.1rem;
  line-height: 1.8;
  max-width: 700px;
  margin-bottom: 1rem;
}




#home {
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(to bottom, #1e3c72 0%, #2a5298 70%, #2d6ddf 100%);
  padding: 60px 20px;
  min-height: 80vh;
}

#home .conteudo {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1200px;
  gap: 2rem;
  /* espaço entre texto e imagem */
  flex-wrap: wrap;
  /* permite quebrar em telas pequenas */
}

@media (min-width: 200px) and (max-width: 768px) {
    #home .conteudo {
        margin-top: 60px;
    }
}


#home .texto {
  flex: 1;
  min-width: 280px;
  /* evita texto muito estreito */
}

#home .texto h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  /* responsivo */
  margin-bottom: 1rem;
}

#home .texto p {
  font-size: clamp(1rem, 2vw, 1.2rem);
  line-height: 1.5;
}

#home .imagem {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  /* imagem grudada à direita */
  min-width: 300px;
}

#home .imagem img {
    width: 55vw;
    max-width: 1200px;
    min-width: 300px;
    height: auto;
    object-fit: cover;
}




/* Tela >= 1000px e < 1500px */
@media (min-width: 1000px) and (max-width: 1499px) {
    #home .imagem img {
        margin-top: 60px;
    }
}

/* Tela >= 1500px e < 2000px */
@media (min-width: 1500px) and (max-width: 1999px) {
    #home .imagem img {
        margin-top: 70px;
    }
}

/* Tela >= 2000px e < 2500px */
@media (min-width: 2000px) and (max-width: 2499px) {
    #home .imagem img {
        margin-top: 85px;
    }
}

/* Tela >= 2500px */
@media (min-width: 2500px) {
    #home .imagem img {
        margin-top: 100px;
    }
}




#social {
  text-align: center;
  padding: 80px 20px;
  background: linear-gradient(to bottom, #2d6ddf 0%, #2a5298 50%, #2d6ddf 100%);
  color: #fff;
}

/* Texto sempre em coluna */
.social-text {
  display: flex;
  flex-direction: column;
  /* vertical */
  align-items: center;
  gap: 10px;
  margin-bottom: 40px;
}

.social-text h2 {
  font-size: clamp(2rem, 3vw, 2.5rem);
  font-weight: 700;
}

.social-text p {
  font-size: clamp(1rem, 2vw, 1.2rem);
  margin: 0;
}

/* Cartões das redes sociais abaixo do texto */
.social-cards {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.social-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: #fff;
  transition: transform 0.3s, box-shadow 0.3s;
  margin: 20px;
}

/* Contêiner da imagem com fundo branco e bordas arredondadas */
.social-card .img-container {
  background: #fff;
  padding: 20px;
  /* espaço branco ao redor da imagem */
  border-radius: 30px;
  /* bordas arredondadas */
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Imagem dentro do contêiner */
.social-card img {
  width: 240px;
  /* ajuste direto do tamanho da imagem */
  height: auto;
  /* mantém proporção natural */
  object-fit: contain;
  /* garante que a imagem inteira seja mostrada */
  transition: transform 0.3s;
  /* animação no hover */
  display: block;
 
}

/* Texto abaixo da imagem */
.social-card span {
  font-size: 1rem;
  font-weight: 600;
  margin-top: 10px;
}

/* Hover do card */
.social-card:hover {
  transform: scale(1.1);
 
}

/* Cores das bordas externas específicas por rede */
.social-card.instagram .img-container {
  border: 3px solid #fcfcfc;
}

.social-card.youtube .img-container {
  border: 3px solid #ffffff;
}

/* Mobile */
@media (max-width: 600px) {
  .social-cards {
    gap: 20px;
  }

  .social-card .img-container img {
    width: 120px;
    /* ajuste do tamanho da imagem em mobile */
  }
}

/* ===== Seção Redes Sociais ===== */
.socials {
  display: flex;
  gap: 2rem;
  margin-top: 2rem;
}

.socials a {
  color: #fff;
  font-size: 2rem;
  transition: .3s;
}

.socials a:hover {
  color: #ffcb05;
}






/* Seção Sobre Nós */
#sobre {
  background: linear-gradient(to bottom, #2d6ddf 0%, #2a5298 70%, #2d6ddf 100%);
  padding: 80px 20px;
}

.sobre-container {
  display: flex;
  align-items: center;
  justify-content: flex-start; /* texto à esquerda */
  gap: 40px; /* espaço entre texto e imagem */
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap; /* para mobile */
  flex-direction: row; /* garante texto à esquerda e imagem à direita */
}

.sobre-imagem img {
  width: 100%;
  max-width: 400px;
  height: auto;
  border-radius: 20px;
  object-fit: cover;
}

.sobre-texto {
  flex: 1;
  min-width: 250px;
}

.sobre-texto h2 {
  font-size: clamp(2rem, 3vw, 2.5rem);
  margin-bottom: 20px;
}

.sobre-texto p {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  line-height: 1.6;
}



/* Responsivo para telas pequenas */
@media (max-width: 768px) {
  .sobre-container {
    flex-direction: column; /* texto em cima, imagem abaixo */
    gap: 20px; /* espaçamento entre texto e imagem */
    align-items: flex-start; /* garante que tudo fique à esquerda */
  }

  .sobre-texto {
    width: 100%;
  }

  .sobre-imagem {
    width: auto; /* não ocupa 100% do container */
    align-self: flex-start; /* força a imagem à esquerda */
  }

  .sobre-imagem img {
    display: block; /* evita centralização automática */
    max-width: 80%; /* ajusta o tamanho da imagem */
    height: auto;
    margin: 0; /* remove margens automáticas */
  }
}







/* ===== Objetivos Sociais ===== */
#objetivos-sociais {
  background: linear-gradient(to bottom, #2d6ddf 0%, #2a5298 50%, #2d6ddf 100%);
  color: #fff;
  padding: 80px 10%;
}

#objetivos-sociais h2 {
  font-size: clamp(2.5rem, 4vw, 3rem);
  font-weight: 700;
  margin-bottom: 60px;
  text-align: center;
}

.objetivos-container {
  display: flex;
  flex-direction: column;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
}

.objetivo {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.objetivo.invertida {
  flex-direction: row-reverse;
}

.objetivo-texto {
  flex: 1;
  min-width: 280px;
}

.objetivo-texto h3 {
  font-size: 1.6rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.objetivo-texto p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #f0f0f0;
  text-align: justify;
}

.objetivo-img {
  flex: 0 0 200px;
  display: flex;
  justify-content: center;
}

.objetivo-img img {
  width: 100%;
  height: auto;
  border-radius: 15px;
  object-fit: cover;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

/* ===== Responsivo ===== */
@media (max-width: 992px) {
  .objetivo,
  .objetivo.invertida {
    flex-direction: column;
    text-align: center;
  }

  .objetivo-img {
    margin-top: 20px;
    flex: none;
    width: 50%;
  }

  .objetivo-img img {
    width: 100%;
  }
}

@media (max-width: 600px) {
  #objetivos-sociais {
    padding: 60px 5%;
  }

  .objetivo-texto h3 {
    font-size: 1.3rem;
  }

  .objetivo-texto p {
    font-size: 1rem;
  }

  .objetivo-img {
    width: 70%;
  }
}









#imagens {
  background: linear-gradient(
  to bottom, 
  #2d6ddf 0%, 
  #2a5298 45%, 
  #2d6ddf 100%
);

}

/* ===== Carrossel Imagens - Loop infinito ===== */
.carousel {
  overflow: hidden;
  margin-top: 2rem;
  width: 100%;
}

.carousel-track {
  display: flex;
  width: max-content;
  animation: scroll 30s linear infinite;
}

.carousel-track img {
  width: 20vw;          /* imagens proporcionais à largura da tela */
  max-width: 300px;     /* limite no desktop */
  height: auto;         /* mantém proporção */
  aspect-ratio: 3 / 2;  /* garante proporção 3:2 */
  object-fit: cover;
  border-radius: 10px;
  margin-right: 1rem;
}

/* ===== Responsivo ===== */
@media (max-width: 768px) {
  .carousel-track img {
    width: 40vw;      /* aumenta no mobile */
    max-width: 200px; /* limite menor */
  }
}

@media (max-width: 480px) {
  .carousel-track img {
    width: 70vw;      /* quase tela inteira em celular pequeno */
    max-width: none;
  }
}

/* ===== Animação ===== */
@keyframes scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); } /* move metade do conteúdo */
}











#acoes-sociais {
  padding: 60px 10%;
  background: linear-gradient(to bottom, #2d6ddf 0%, #2a5298 70%, #1e3c72 100%);
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 60px;
  align-items: center;
  /* centraliza horizontalmente */
}

/* Container de cada ação social */
.acao {
  display: flex;
  align-items: center;
  justify-content: center;
  /* centraliza horizontalmente */
  gap: 40px;
  max-width: 1200px;
  /* largura máxima */
}

/* Texto da ação */
.acao-texto {
  flex: 1;
  min-width: 280px;
}

.acao-texto h2 {
  font-size: 2.4rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.acao-texto p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #f0f0f0;
}

/* Imagem da ação */
.acao-img {
  flex: 1;
  min-width: 280px;
  display: flex;
  justify-content: center;
}

.acao-img img {
  width: 100%;
  max-width: 500px;
  border-radius: 15px;
  object-fit: cover;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

/* Invertido: imagem à direita e texto à esquerda */
.acao.invertida {
  flex-direction: row-reverse;
}

/* Responsivo */
@media (max-width: 768px) {

  .acao,
  .acao.invertida {
    flex-direction: column;
    text-align: center;
  }

  .acao-img img {
    max-width: 100%;
  }
}










#videos {
  background: linear-gradient(to bottom, #1e3c72 0%, #2a5298 70%, #2d6ddf 100%);
  padding: 2rem;
  text-align: center;
  color: #fff;
}

/* ===== Carrossel ===== */
.video-carousel {
  overflow: hidden;
  width: 100%;
  position: relative;
  display: flex;
  align-items: center;
}

.video-carousel-track {
  display: flex;
  gap: 1rem;
  transition: transform 0.4s ease;
  will-change: transform;
}

.video-carousel video {
  width: 350px;
  height: 200px;
  border-radius: 12px;
  object-fit: cover;
  cursor: pointer;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

/* ===== Responsivo ===== */
@media (max-width: 768px) {
  .video-carousel video {
    width: 90vw;
    /* largura quase total da tela */
    height: calc(90vw * 9/16);
    /* mantém proporção 16:9 */
  }
}


.video-carousel video.active {
  border: 3px solid #ffcb05;
  transform: scale(1.05);
}

/* Botões setas */
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  padding: 0.8rem 1rem;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.5rem;
  z-index: 2;
  transition: background 0.3s;
}

.carousel-btn:hover {
  background: rgba(0, 0, 0, 0.8);
}

.carousel-btn.left {
  left: 10px;
}

.carousel-btn.right {
  right: 10px;
}









#imersao {
  background: linear-gradient(to bottom, #2d6ddf 0%, #2a5298 70%, #1e3c72 100%);
  padding: 80px 20px;
  color: #fff;
}

.imersao-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
  flex-direction: column; /* padrão mobile: empilha */
}

/* ===== Imagem ===== */
.imersao-imagem {
  flex: 1;
  display: flex;
  justify-content: center;
}

.imersao-imagem img {
  width: 40vw;          /* ocupa 40% da largura da tela */
  max-width: 600px;     /* limite em desktops grandes */
  min-width: 300px;     /* não fica pequeno demais */
  height: auto;
  border-radius: 20px;
  object-fit: cover;
}

/* ===== Texto ===== */
.imersao-texto {
  flex: 1;
  min-width: 300px;
  text-align: left;
}

.imersao-texto h2 {
  font-size: clamp(2rem, 3vw, 2.5rem);
  margin-bottom: 1rem;
}

.imersao-texto p {
  font-size: 1.2rem;
  margin-bottom: 20px;
  line-height: 1.6;
}

/* ===== Botão ===== */
.btn-inscrever {
  display: inline-block;
  padding: 12px 25px;
  background-color: #28a745; /* verde chamativo */
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  border-radius: 8px;
  transition: background 0.3s, transform 0.3s;
}

.btn-inscrever:hover {
  background-color: #218838;
  transform: scale(1.05);
}

/* ===== Mobile ===== */
@media (max-width: 768px) {
  .imersao-container {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .imersao-imagem img {
    width: 80vw;   /* imagem maior no mobile */
  }

  .imersao-texto {
    text-align: center;
  }

  .imersao-texto p {
    font-size: 1rem;
  }
}

/* ===== Desktop ===== */
@media (min-width: 992px) {
  .imersao-container {
    flex-direction: row;  /* lado a lado */
  }

  .imersao-texto {
    text-align: left;
  }
}




/* ================== SECTION PLAYLIST ================== */
.playlist-section {
  padding: 6vh 5vw;
  background: linear-gradient(to bottom, #1e3c72 0%, #2a5298 70%, #1e3c72 100%);
  text-align: center;
}

.playlist-section .container {
  max-width: 1200px;
  margin: 0 auto;
}

.playlist-section .section-title {
  font-size: 2.2rem;
  color: white;
  margin-bottom: 1vh;
  font-weight: 700;
}

.playlist-section .section-subtitle {
  font-size: 1.1rem;
  color: white;
  margin-bottom: 4vh;
}

.playlist-section .video-wrapper {
  position: relative;
  padding-bottom: 56.25%; /* proporção 16:9 */
  height: 0;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
  margin-bottom: 3vh;
}

.playlist-section .video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 16px;
}

.btn-playlist {
  display: inline-block;
  padding: 12px 28px;
  background: #0077b6;
  color: #fff;
  text-decoration: none;
  border-radius: 30px;
  font-weight: 600;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  transition: background 0.3s ease, transform 0.2s ease;
}

.btn-playlist:hover {
  background: #023e8a;
  transform: translateY(-3px);
}















#ebooks {
  background: linear-gradient(to bottom, #1e3c71 0%, #2a5298 70%, #2d6ddf 100%);
  color: #fff;
  padding: 60px 20px;
  text-align: center;
}

#ebooks h2 {
  font-size: 2rem;
  margin-bottom: 10px;
}

#ebooks p {
  margin-bottom: 40px;
  font-size: 1.1rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.ebook-list {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.ebook-card {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 20px;
  width: 250px;
  transition: transform 0.3s ease;
}

.ebook-card:hover {
  transform: translateY(-10px);
}

.ebook-card img {
  width: 100%;
  border-radius: 8px;
  margin-bottom: 15px;
}

.ebook-card h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.btn-download {
  display: inline-block;
  background: #ffcb05;
  color: #1e3c72;
  padding: 10px 20px;
  border-radius: 8px;
  font-weight: bold;
  text-decoration: none;
  transition: background 0.3s ease;
}

.btn-download:hover {
  background: #ffc84d;
}

/* Responsivo */
@media(max-width: 768px) {
  .ebook-list {
    flex-direction: column;
    align-items: center;
  }

  .ebook-card {
    width: 90%;
    margin-bottom: 20px;
  }
}















#depoimentos {
  background: linear-gradient(to bottom, #2d6ddf 0%, #2a5298 70%, #1e3c72 100%);
  padding: 80px 20px;
  color: #fff;
}

#depoimentos h2 {
  text-align: center;
  font-size: clamp(2rem, 3vw, 2.5rem);
  margin-bottom: 2rem;
}

/* ===== Depoimentos ===== */
.testimonials {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 2rem;
}

.testimonial {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.05);
  padding: 1.5rem;
  border-radius: 10px;
  backdrop-filter: blur(5px);
  max-width: 600px;
  margin: 0 auto;
}

/* Conteúdo textual */
.testimonial-content {
  flex: 1;
}

.testimonial p {
  font-style: italic;
}

.testimonial h4 {
  margin-top: 0.5rem;
  font-weight: 700;
  text-align: right;
}

/* Imagem do autor à direita */
.testimonial-img img {
  width: 80px;
  /* ajuste o tamanho que quiser */
  height: 107px;
  /* proporção 3x4 */
  object-fit: cover;
  border-radius: 10px;
  margin-left: 20px;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

/* Responsivo */
@media (max-width: 600px) {
  .testimonial {
    flex-direction: column;
    text-align: center;
  }

  .testimonial-img img {
    margin-left: 0;
    margin-top: 15px;
  }

  .testimonial h4 {
    text-align: center;
  }
}





#doacao {
  background: linear-gradient(to bottom, #1e3c72 0%, #2a5298 70%, #2d6ddf 100%);
  padding: 80px 20px;
  color: #fff;
}

/* Container flexível para texto + imagem */
.doacao-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
  /* para mobile */
}

/* Texto e botão à esquerda */
.doacao-texto {
  flex: 1;
  min-width: 280px;
}

.doacao-texto h2 {
  font-size: clamp(2rem, 3vw, 2.5rem);
  margin-bottom: 1rem;
}

.doacao-texto p {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
}

#donate-btn {
  display: inline-block;
  margin: 2rem auto 0 auto;
  /* centraliza horizontalmente e dá espaçamento superior */
  padding: 1rem 2rem;
  /* aumenta o tamanho do botão */
  font-size: 1.3rem;
  font-weight: 700;
  border-radius: 50px;
  /* bordas arredondadas */
  background: linear-gradient(45deg, #28a745, #1c7c31);
  /* gradiente verde */
  color: #fff;
  text-decoration: none;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s, box-shadow 0.3s, background 0.3s;
  cursor: pointer;
}

/* Hover do botão */
#donate-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
  background: linear-gradient(45deg, #1c7c31, #28a745);
  /* efeito invertido no gradiente */
}


/* Imagem à direita */
.doacao-imagem {
  flex: 1;
  display: flex;
  justify-content: center;
  min-width: 250px;
}

.doacao-imagem img {
  width: 100%;
  max-width: 400px;
  height: auto;
  border-radius: 20px;
  object-fit: cover;
}

/* ===== Popup Doação ===== */
#donation-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 2000;
  color: #fff;
}

#donation-popup .popup-content {
  background: linear-gradient(to bottom, #1e3c72 0%, #2a5298 70%, #2d6ddf 100%);
  color: #fff;
  padding: 3rem;
  border-radius: 20px;
  max-width: 500px;
  width: 90%;
  text-align: center;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

/* Links de doação e email */
.donation-links {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 2rem;
}

.donation-links a {
  text-decoration: none;
  font-weight: 700;
  padding: 0.8rem 1.2rem;
  border-radius: 10px;
  color: #fff;
  transition: transform 0.3s, box-shadow 0.3s;
}

.donation-links .donate-link {
  background-color: #28a745;
}

.donation-links .donate-link:hover {
  background-color: #218838;
  transform: scale(1.05);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.donation-links .email-link {
  background-color: #ffc107;
  color: #333;
}

.donation-links .email-link:hover {
  background-color: #e0a800;
  transform: scale(1.05);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* Botão fechar */
#donation-popup button {
  padding: 0.8rem 1.5rem;
  font-size: 1rem;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  background-color: rgba(255, 255, 255, 0.2);
  color: #fff;
  transition: background 0.3s, transform 0.3s;
}

#donation-popup button:hover {
  background-color: rgba(255, 255, 255, 0.4);
  transform: scale(1.05);
}

/* Mobile */
@media (max-width: 768px) {
  .doacao-container {
    flex-direction: column;
    gap: 20px;
  }

  .doacao-imagem {
    margin-top: 20px;
  }
}





#contato {
  background: linear-gradient(to bottom, #2d6ddf 0%, #2a5298 100%);
  padding: 80px 20px;
  color: #fff;
}

/* Container flexível: texto à esquerda, mapa à direita */
.contato-container {
  display: flex;
  align-items: center;
  /* centraliza verticalmente */
  justify-content: center;
  gap: 50px;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
  /* mobile */
}

/* Texto do contato */
.contato-texto {
  flex: 1;
  min-width: 280px;
  text-align: left;
}

.contato-texto h2 {
  font-size: clamp(2rem, 3vw, 2.5rem);
  margin-bottom: 1rem;
}

.contato-texto p {
  font-size: 1.2rem;
  margin: 0.5rem 0;
}

.contato-texto a {
  color: #ffc107;
  text-decoration: none;
  transition: color 0.3s;
}

.contato-texto a:hover {
  color: #fff;
}

/* Mapa */
.contato-mapa {
  flex: 1;
  min-width: 280px;
}

.contato-mapa iframe {
  width: 100%;
  height: 300px;
  border: 0;
  border-radius: 10px;
}

/* Mobile */
@media (max-width: 768px) {
  .contato-container {
    flex-direction: column;
    gap: 20px;
  }

  .contato-texto {
    text-align: center;
  }
}







/* ===== Botões ===== */
.btn {
  display: inline-block;
  padding: .7rem 1.5rem;
  background: #ffcb05;
  color: #111;
  font-weight: 600;
  border-radius: 50px;
  text-decoration: none;
  margin-top: 1rem;
  transition: .3s;
}

.btn:hover {
  background: #e6b800;
}



/* ===== Footer ===== */
#footer {
background: linear-gradient(to bottom, #1a458e, #1e3c72);

  color: #fff;
  padding: 40px 20px;
  text-align: center;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
}

.footer-logo h3 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
}

.footer-links a {
  color: #ffc107;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: #fff;
}


.footer-copy {
  font-size: 0.9rem;
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.7);
}

/* Mobile */
@media (max-width: 768px) {
  .footer-links {
    flex-direction: column;
    gap: 10px;
  }

  .footer-socials {
    gap: 10px;
  }
}








/* ===== cookie ===== */
/* Estilos do Banner de Cookies */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #f8f9fa; /* Cor de fundo clara */
    color: #495057; /* Cor de texto escura */
    padding: 20px 30px;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 10000; /* Garante que fique acima de outros elementos */
    font-family: 'Montserrat', sans-serif; /* Usa a fonte do seu site */
    font-size: 14px;
    text-align: center;
    display: none; /* Começa escondido */
    box-sizing: border-box; /* Inclui padding e border na largura/altura */
}

.cookie-banner.show {
    display: block; /* Mostra quando a classe 'show' é adicionada */
}

.cookie-banner-content {
    max-width: 1200px; /* Limita a largura do conteúdo */
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap; /* Permite quebrar linha em telas menores */
}

.cookie-banner-content p {
    margin: 0;
    flex-grow: 1; /* Permite que o parágrafo ocupe o espaço disponível */
    margin-right: 20px; /* Espaço entre o texto e os botões */
    text-align: left; /* Alinha o texto à esquerda */
    line-height: 1.6;
}

.cookie-banner-content p a {
    color: #007bff; /* Cor para links */
    text-decoration: underline;
    font-weight: 500;
}

.cookie-banner-content p a:hover {
    color: #0056b3;
}

.cookie-button {
    background-color: #28a745; /* Cor principal (verde para aceitar) */
    color: white;
    border: none;
    padding: 10px 20px;
    margin-left: 10px; /* Espaço entre os botões */
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: background-color 0.3s ease;
    white-space: nowrap; /* Evita quebra de linha nos botões */
}

.cookie-button:hover {
    background-color: #218838;
}

.cookie-button-secondary {
    background-color: #6c757d; /* Cor secundária (cinza para recusar) */
}

.cookie-button-secondary:hover {
    background-color: #5a6268;
}

/* Responsividade para telas menores */
@media (max-width: 768px) {
    .cookie-banner-content {
        flex-direction: column; /* Empilha os elementos verticalmente */
        align-items: center;
    }

    .cookie-banner-content p {
        margin-right: 0;
        margin-bottom: 15px; /* Espaço abaixo do texto */
        text-align: center; /* Centraliza o texto */
    }

    .cookie-button {
        margin-left: 0;
        margin-bottom: 10px; /* Espaço entre os botões */
        width: 100%; /* Botões ocupam toda a largura */
    }

    .cookie-button-secondary {
        margin-bottom: 0; /* Remove margem inferior do último botão */
    }
}

















/* ===== Responsividade ===== */
@media(max-width:1200px) {
  .navbar .menu {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    background: linear-gradient(to bottom, #152f60);
  }

  .navbar .menu.active {
    display: flex;
  }

  .hamburger {
    display: flex;
  }

  .carousel-track img,
  .video-carousel video {
    width: 90vw;
    height: auto;
  }
}