@charset "UTF-8";

body, html {
  margin: 0;
  padding: 0;
  color: white;
  font-family: 'Poppins', sans-serif;
  background-color: rgb(255, 255, 255);
}

/* NAVBAR */
.navbar {
  height: 80px; /* altura fixa da navbar */
  background-color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  overflow: visible; /* permite que a logo “transborde” */
  border-bottom: 2px solid #6F1133;
}


.navbar-nav .nav-link {
  color: rgba(0, 0, 0, 0.419);
  font-size: 1rem;
  transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: #6F1133;
  transform: scale(1.05);
}

.navbar-toggler {
  border: none;
}
.navbar-collapse {
  z-index: 1; /* <-- Alto, para sobrepor a logo */
}

.btn-agendar {
  background-color: #6F1133;
  color: white;
  padding: 10px 20px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 500;
  transition: background-color 0.3s ease;
  margin-top: 10px; /* Adiciona espaçamento superior */
}


.btn-agendar:hover {
  background-color: #6F1133; /* Um tom mais escuro no hover */
  transform: scale(1.05);
}


@media (max-width: 767.98px) {
  .logo-mobile {
    position: relative; /* antes: absolute */
    left: 0;
    transform: none;
    top: 0;
    margin: 0 auto 10px auto; /* opcional: centraliza e dá espaçamento */
    display: block;
  }
}

.navbar-toggler-icon {
  background-image: none; /* remove o ícone padrão */
  width: 30px;
  height: 3px;
  background-color: #6F1133; /* <-- sua cor desejada */
  display: block;
  position: relative;
}

.navbar-toggler-icon::before,
.navbar-toggler-icon::after {
  content: "";
  width: 30px;
  height: 3px;
  background-color: #6F1133; /* mesma cor */
  position: absolute;
  left: 0;
}

.navbar-toggler-icon::before {
  top: -10px;
}

.navbar-toggler-icon::after {
  top: 10px;
}

/* Logo no mobile: centralizada e acima do navbar */
.logo-mobile {
  position: absolute;
  left: 35%;
  transform: translateX(-50%);
  top: -55px;
}

.logo-mobile img {
    height: 80px; /* aumenta a logo */
  max-height: none; /* impede que ela seja limitada pela altura da navbar */
  margin-top: 60px; /* opcional: centraliza visualmente se estiver desalinhada */
}


/* Logo no desktop: alinhada à esquerda */
.logo-desktop img {
  height: 115px; /* aumenta a logo */
  max-height: none; /* impede que ela seja limitada pela altura da navbar */
  margin-top: 1px; /* opcional:k centraliza visualmente se estiver desalinhada */
}




/* Menu mobile com fundo e empurrando conteúdo */
@media (max-width: 767.98px) {
  .navbar-collapse {
    position: static !important;
    background-color: #ffffff; /* fundo do menu aberto */
    width: 90%;
    padding: 15px 0;
    margin-top: 10px;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
  }

  .navbar-collapse.show {
    display: block  !important;
  }

  .navbar-nav {
    flex-direction: column;
    align-items: center;
  }

  .navbar-nav .nav-link {
    padding: 10px 0;
    color: #6F1133;
  }
}




/* HERO */
.hero-section {
  position: relative;
  background-image: url('imagens/imagemreconfortante.jpeg'); /* Substitua pelo caminho correto */
  background-size: cover;
  background-position: center;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
}

.hero-section .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #ff6a7996; /* fundo branco com opacidade */
  z-index: 1;
}

.content-wrapper {
  position: relative;
  z-index: 2;
}

/* Estilos originais */
.hero-title {
  font-size: 3rem;
  font-weight: bold;
  color: #ffffff;
  font-family: 'Poppins', sans-serif;
}

.hero-subtitle {
  font-size: 1.2rem;
  margin: 20px 0;
  color: #ffffff;
  font-family: 'Poppins', sans-serif;
}

#title2 {
  font-size: 2rem;
  text-align: center;
  color: #ffffff;
}

/* Botões */
.btn-custom {
  background-color: #ff6a793c;
  color: white;
  border: none;
  margin: 10px;
  padding: 20px 24px;
  border-radius: 30px;
  transition: 0.3s;
  width: auto;
  min-width: 220px;
}

.btn-custom:hover {
  background-color: #ff6a793c;
  transform: scale(1.05);
}

.botaohero {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}
.ong{
  color: #ffffff;
}

/* Responsivo */
@media (max-width: 768px) {
  .botaohero {
    flex-direction: column;
    gap: 10px;
  }
 .hero-section {
  padding-top: 120px;
    text-align: center;
  position: relative;
  background-image: url('imagens/imagemreconfortante.jpeg'); /* Substitua pelo caminho correto */
  background-size: cover;
  background-position: center;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-title {
  font-size: 3rem;
  font-weight: bold;
  color: #ffffff;
  font-family: 'Poppins', sans-serif;
}
.hero-subtitle {
  font-size: 1.2rem;
  margin: 20px 0;
  color: #000000;
  font-family: 'Poppins', sans-serif;
}
#title2 {
  font-size: 2rem;
  text-align: center;
  color: #6F1133;
}

}


/* QUEM SOMOS */

.text-bordeaux {
  color: #6F1133;
  font-family: 'Poppins', sans-serif;
  font-size: 2.5rem;
}

.hero-subtitle2 {
  font-size: 1.2rem;
  margin: 20px 0;
  color: #000000;
  font-family: 'Poppins', sans-serif;
}

.rounded-4 {
  border-radius: 20px;
}

/* Animação de entrada/saída */
.logo-animada {
  opacity: 0;
  transform: scale(0.9);
  transition: all 0.8s ease;
  will-change: transform, opacity;
}

/* Classe ativa quando visível */
.logo-animada.aparecer {
  opacity: 1;
  transform: scale(1);
}

/* Animação contínua */
.logo-animada.aparecer {
  animation: flutuar 3s ease-in-out infinite;
}

@keyframes flutuar {
  0%, 100% {
    transform: scale(1) translateY(0px);
  }
  50% {
    transform: scale(1.02) translateY(-5px);
  }
}

/* PROJETOS E AÇÕES */

 .dobra3-section {
      padding: 60px 20px;
    }

    .dobra3-title {
       font-size: 2.5rem;
      font-weight: bold;
      color: #6F1133;
      font-family: 'Poppins', sans-serif;
      text-align: center;
    }

    .project-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 30px;
    }

    .project-card {
      background-color: #ff6a793c;
      border-radius: 1.5rem;
      box-shadow: 0 10px 20px #6f113349;
      padding: 30px 20px;
      text-align: center;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      opacity: 0;
      transform: translateY(30px);
    }

    .project-card.show {
      opacity: 1;
      transform: translateY(0);
    }

    .project-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 15px 30px rgba(122, 12, 46, 0.3);
      
    }

    .project-card i {
      font-size: 2.5rem;
      color: #6F1133;
      margin-bottom: 15px;
    }

    .project-card h5 {
      color: #6F1133;
      font-weight: 600;
      margin-bottom: 10px;
      font-size: 1.2rem;
    }

    .project-card p {
      font-size: 0.95rem;
      color: #444;
    }

    .btn-ver-projetos {
      display: inline-block;
      margin: 40px auto 0;
      background-color: #6F1133;
      color: white;
      border: none;
      padding: 14px 34px;
      border-radius: 2rem;
      font-size: 1rem;
      font-weight: bold;
      transition: background 0.3s ease, transform 0.2s ease;
      text-decoration: none;

    }

    .btn-ver-projetos:hover {
      background-color: #5a0822;
      transform: scale(1.05);
    }

/* ESSENCIAL */

.dobra4 {
      padding: 60px 20px;
      background-color: #ffffff;
    }

    .dobra4 h2 {
      font-size: 2rem;
      color: #6F1133;
      text-align: center;
      margin-bottom: 10px;
    }

    .dobra4 h5 {
      font-size: 1.2rem;
      text-align: center;
      margin-bottom: 40px;
      color: #444;
    }

    .stats-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 30px;
    }

    .stat-card {
      background: #ff6a793c;
      border-radius: 1.5rem;
      padding: 30px 20px;
      text-align: center;
      transition: 0.3s ease;
      box-shadow: 0 10px 20px #6f113349;
    }

    .stat-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 10px 24px rgba(0, 0, 0, 0.1);
    }

    .stat-number {
      font-size: 2.8rem;
      font-weight: 700;
      color: #7A0C2E;
    }

    .stat-number span {
      font-size: 1.5rem;
      color: #6F1133;
      margin-left: 2px;
    }

    .stat-label {
      font-size: 1rem;
      margin-top: 10px;
      color: #555;
    }

    .stat-source {
      text-align: center;
      margin-top: 50px;
      font-size: 0.95rem;
      color: #666;
    }


     /* MOSAICO AJUSTADO */
.impacto-mosaico {
  padding: 0;
  margin: 0;
}


.card-mosaico {
  width: 100%;
  aspect-ratio: 1 / 1;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.card-mosaico:hover {
  transform: scale(1.02);
}

.titulo-card {
  background-color: rgba(0, 0, 0, 0.6);
  color: #ffffff;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  text-align: center;
  padding: 12px 20px;
  border-radius: 10px;
  position: absolute;
  bottom: 10%;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  font-size: 1rem;
}

@media (max-width: 768px) {
  .titulo-card {
    font-size: 0.5rem;
    padding: 10px;
  }
}


    /* como ser atendido */

    .btn-custom {
    background-color: #6F1133;
    border: none;
    transition: all 0.3s ease;
  }

  .btn-custom:hover {
    background-color: #580c2b;
    transform: scale(1.05);
  }

  #apoio p, #apoio h2 {
    font-family: 'Poppins', sans-serif;
  }



    @media (max-width: 768px) {
  .imgfoter{
    display: none;
  }
  
}
  


/* atendimento */
    @media (max-width: 768px) {
 .text-center{
  text-align: center;
}

  
}

.imgfoter {
  margin-bottom: 10px; /* ou ajuste como 5px, 15px, etc. */
  max-width: 100%;
  height: auto;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

