body {
      margin: 0;
      font-family: Arial, sans-serif;
      background: #fafafa;
      
    }

    header {
      background: #140c2b;
      color: #fff;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 5px 40px;
      position: sticky;
      top: 0;
      z-index: 10;
    }

    header nav a {
      color: white;
      margin: 0 15px;
      text-decoration: none;
      font-weight: bold;
      transition: 0.5s;
    }

    header nav a:hover {
        color: #ed9e00;
        transform: scale(1.05);
    }

    .btn-doar {
      background: #ff2d2d;
      color: white;
      padding: 10px 35px;
      border-radius: 10px;
      text-decoration: none;
      font-weight: bold;
      margin-right: 20px;
    }

    .btn-doar:hover {
        background: #f5a623;
    }

    .hero {
      position: relative;
      max-width: 100%;
      height: 85vh;
      
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      color: white;
    }
    
    .hero-pgsobre {
      position: relative;
      max-width: 100%;
      height: 85vh;            display: flex;
      align-items: center;
      justify-content: center;
      text-align: center ;
      color: white;
    }

    .hero-pgdoacao {
      position: relative;
      max-width: 100%;
      height: 85vh;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center ;
      color: white;
    }

    .hero-pgagradecimento {
      position: relative;
      max-width: 100%;
      height: 85vh;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center ;
      color: white;
    }

    .hero-text {
      background: rgba(2, 2, 0, 0.308);
      padding: 20px;
      border-radius: 10px;
    }

    .hero-text h1 {
      font-size: 50px;
      margin: 0;
    }

    .hero-text h2 {
      font-size: 30px;
      margin: 10px 0;
      font-weight: bold;
    }

    .hero-text p {
      font-size: 30px;
      margin: 0;
      font-weight: bold;
    }

    /* Seções Gerais */
    section {
      padding: 20px 40px;
      text-align: center;
    }

    h2.section-title {
      font-size: 40px;
      color: #333;
      margin-bottom: 20px;
      text-align: center ;
    }

    p.section-text {
      font-size: 20px;
      max-width: 1200px;
      margin: auto;
      color: #555;
    }

    .stats-section {
    padding: 60px 20px; 
    text-align:center; 
    background:#fff;       
    }

    .sobre-section {
    display:flex; 
    flex-wrap:wrap; 
    align-items:center; 
    background:#666676 ; 
    padding: 30px 20px;
    }

    .sobre-section p {
    font-size:16px; 
    line-height:1.6;
    text-align: justify;
    }

    .sobre-section h2 {
      font-size:48px; 
      margin:10px 0;
    }

    .sobre-section h4 {
      letter-spacing: 1px; 
      font-weight:bold;
    }

    .sobre-section a {
      display:inline-block; 
      margin-top:20px; 
      padding: 12px 50px; 
      background:white; 
      color: black; 
      border-radius: 30px; 
      font-weight:bold; 
      text-decoration:none;
      transition: 0.5s;
    }

    .sobre-section a:hover {
      background: rgb(230, 230, 230);
      transform: scale(1.05);
    }

    .pgsobre-section {
    display:flex; 
    flex-wrap:wrap; 
    align-items:center; 
    background:#e9e9ea ; 
    padding: 30px 300px;
    }

    .pgsobre-section p {
    text-align: justify;
    color: #140c2b;
    line-height: 2.0;
    }

    .pgdoacao-section {
    display:flex; 
    flex-wrap:wrap; 
    align-items:center; 
    background:#e9e9ea ; 
    padding: 30px 300px;
    }

    .pgdoacao-section p {
    text-align: left;
    color: #140c2b;
    line-height: 2.0;
    }

    .pgdoacao-section span {
    text-align: left;
    color: #140c2b;
    line-height: 2.0;
    }

  
    .stats-container {
    display:flex; 
    flex-wrap:wrap; 
    justify-content:space-around;
    max-width:1200px; 
    margin:auto;
    }

    .stat-item {
    margin:20px;
    }

    h2.stat-item {
    color:#140c2b; 
    font-size:60px; 
    margin:0;
    }

    p.stat-item {
    font-weight:bold; 
    margin-top:10px;
    }

    .parceiros-section {
    background:#dadada; 
    }

    h2.parceiros-section {
      font-size: 30px;
      color: #000;
      margin-bottom: 20px;      
    }

    p.parceiros-section {
      font-size: 20px;
      max-width: 1200px;
      margin: auto;
      color: #000;
    }

    /*ATIVIDADES DO PROJETO*/

    /* Container geral */ 
    .cards-container-atividades {
    width: 95%;
    max-width: 1200px;
    margin: 40px auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 15px;
    }

    .card-atividades {
    height: 400px;
    background-size: cover;
    background-position: center;
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    display: flex;
    align-items: flex-end;
   }

   .card-atividades::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.4);
  }

  /* Conteúdo do card */
.card-content-atividades {
    position: relative;
    color: #fff;
    z-index: 2;
    margin: 20% auto;
  }

.card-content-atividades h3 {
    font-size: 22px;
    margin-bottom: 8px;
    font-weight: 700;
    line-height: 1.1;
}

.card-content-atividades a {
    color: #f5a623;
    font-weight: bold;
    text-decoration: none;
    font-size: 14px;
    transition: 0.5s;
    
}

.card-content-atividades a:hover {
        color: #f70202;
        transform: scale(1.05);
    }

/* Efeito hover */
.card-atividades:hover::before {
    background: rgba(0,0,0,0.6);
}

    /*FIM DAS ATIVIDADES DO PROJETO*/



    /*INICIO EQUIPE PAGINA SOBRE*/

    /* Container geral */ 
    .cards-container-pgsobre {
    width: 90%;
    max-width: 1200px;
    margin: 20px auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 15px;
    }

    .card-pgsobre {
    height: 400px;
    background-size: cover;
    background-position: center;
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    display: flex;
    align-items: flex-end;
   }

   .card-pgsobre::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0), rgba(0, 0, 0, 0.549));
  }

  /* Conteúdo do card */
.card-content-pgsobre {
    position: relative;
    color: #fff;
    z-index: 2;
    margin: 10% auto;
  }

.card-content-pgsobre h3 {
    font-size: 22px;
    margin-bottom: 8px;
    font-weight: 700;
    line-height: 1.1;
}

.card-content-pgsobre span {
    color: #f5a623;
    font-weight: bold;
    text-decoration: none;
    font-size: 14px;
    transition: 0.5s;
    
}

.card-content-pgsobre span:hover {
        color: #dd8f11;
        transform: scale(1.05);
    }

/* Efeito hover */
.card-pgsobre:hover::before {
    background: rgba(0,0,0,0.6);
}

    /*FINAL EQUIPE PAGINA SOBRE*/




    /* Cards */
    .cards {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
      gap: 20px;
      margin-top: 40px;
    }

    /* Cards Contadores */
    .card {
      background: white;
      padding: 10px;
      border-radius: 10px;
      box-shadow: 0 3px 10px rgba(0,0,0,0.2);
      font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
      color:black;
    }

    .cardcontadores {
    margin:auto;
    background: white; 
    text-align:center; 
    padding: 65px 20px; 
    border-radius: 10px; 
    width: 200px; 
    text-align: center; 
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  }

    .numero {
    font-size: 3rem; 
    font-weight: bold; 
    color: #140c2b;;
}

    .contador-box {
      display: flex; 
      gap: 20px; 
      flex-wrap: wrap;
      margin:0;
  }

    .label {
      font-weight:bold; 
      margin-top:10px;
  }

   /*Cores do logo
    AZUL: #140c2b
    AMARELO: #deae1f
    MARROM: #9a7a2e
    CINZA CLARO: #848494
    CINZA ESCURO: #666676    
    */

    /* Container do carrossel */

    .carousel-wrapper {
        position: relative;
        width: 80%;
        overflow: hidden;
        margin: 40px auto;
        padding: 20px 20px;
    }

    .carousel {
        display: flex;
        gap: 50px;
        transition: transform 0.5s ease;
    }

    .carousel img {
        width: 150px;
        height: 150px;
        object-fit: contain;
        filter: drop-shadow(0 2px 6px rgba(0,0,0,0.15));
    }

    
 /*DEPOIMENTOS*/   


/*
.carousel-container {
    width: 100%;
    max-width: 1200px;
    text-align: center; 
}
*/

.carousel-wrapper-depoimentos {
    position: relative;
    display: flex;
    align-items: center;
    margin: 50px auto;

}

.carousel-track-container {
    overflow: hidden; /* Esconde os slides que não estão ativos */
    width: 100%;
    align-items: center;
}

.carousel-track {
    display: flex;
    padding: 0;
    margin: 0;
    list-style: none;
    transition: transform 0.5s ease-in-out; /* Animação suave */
}

.carousel-slide {
    min-width: 100%; /* Cada slide ocupa 100% do container */
}

/* Estilo do Card */
.testimonial-card {
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    margin: 10px;
}

.testimonial-card img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 15px;
}

.testimonial-card h4 {
    margin: 10px 0 5px;
    color: #333;
}

.testimonial-card .role {
    color: #777;
    font-size: 0.9em;
}

/* Botões Next/Prev */
.btn-prev, .btn-next {
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: #555;
    padding: 0 15px;
}

.btn-prev:hover, .btn-next:hover {
    color: #000;
}

/* Indicadores (Bolinhas) */
.carousel-nav {
    margin-top: 15px;
}

.carousel-indicator {
    border: none;
    width: 12px;
    height: 12px;
    background: #ccc;
    border-radius: 50%;
    margin: 0 5px;
    cursor: pointer;
}

.carousel-indicator.current-indicator {
    background: #333;
}


    /* Botões laterais 
    .arrow {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        background: rgba(0,0,0,0.4);
        color: white;
        border: none;
        padding: 10px;
        cursor: pointer;
        border-radius: 50%;
        font-size: 14px;
        transition: 0.3s;
    }

    .arrow:hover {
        background: rgba(0,0,0,0.7);
    }

    .arrow-left { left: 20px; }
    .arrow-right { right: 20px; }

    */

    /* Botão inferior */
    .btn {
        display: inline-block;
        background: #f7b733;
        color: #fff;
        padding: 15px 65px;
        font-size: 20px;
        font-weight: bold;
        border-radius: 50px;
        text-decoration: none;
        margin: 10px 30px;
        transition: .3s;
    }

    .btn:hover {
        background: #f5a623;
    }


    /*CONTATO*/

    .contato-section {
    display: flex; 
    flex-wrap: wrap; 
    align-items:center; 
    padding: 20px 20px;
    margin: auto;
    }

    h2.contato-section {
      font-size: 30px;
      color: #000;
      max-width: 1200px;
    }


    .container {
    max-width: 1200px;
    margin: auto;
    padding: 20px;
    }

/* Estilo do Footer Escuro */
.dark-footer {
    background-color: var(--dark-bg);
    color: var(--light-text);
    padding: 10px;
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    padding-left: 0;
    padding-right: 0;
}

/* 1. Layout das Polos (3 Colunas) */
.polos-container {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    padding-bottom: 70px;
    border-bottom: 1px solid #555555; /* Linha sutil de separação */
}

.polo-item {
    flex: 1; /* Garante que as três colunas tenham larguras iguais */
    min-width: 250px;
}

.polo-item h3 {
    font-size: 1.4rem;
    font-weight: bold;
    margin-bottom: 15px;
}

.polo-item p {
    font-size: 1.2rem;
    line-height: 1;
    margin-bottom: 5px;
    
}

.polo-item p a:active {
  color: white;
  text-decoration: none;
}

.polo-item p a:visited {
  color: white;
  text-decoration: none;
}

.polo-item p a:hover {
  color: #f7b733;
  text-decoration: none;
}

.polo-item p a:link {
  color: white;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.phone-numbers {
    margin-top: 15px;
}

.phone-numbers i {
    color: var(--light-text);
    margin-right: 8px;
    font-size: 0.9rem;
}

/* 2. Botões de Ação (FALE CONOSCO / OUVIDORIA) */
.buttons-container {
    display: flex;
    justify-content: center; /* Centraliza os botões */
    gap: 20px;
    padding: 20px 0 10px 0 ;
    margin-bottom: 20px;
}

.action-button {
    flex: 1;
    max-width: 300px;
    background-color: var(--light-text);
    color: #000000;
    text-decoration: none;
    font-weight: bold;
    padding: 15px 30px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: background-color 0.3s;
}

.action-button i {
    margin-right: 10px;
    font-size: 1.2rem;
}

.action-button:hover {
    background-color: #ed9e00;
}

/* 3. Ícones de Redes Sociais */
.social-container {
    display: flex;
    justify-content: center;
    gap: 15px;
    padding-top: 10px;
}

.social-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    background-color: var(--light-text);
    border-radius: 50%; /* Torna-os circulares */
    color: #000000; /* Cor do ícone dentro do círculo branco */
    font-size: 1.5rem;
    text-decoration: none;
    transition: background-color 0.3s, color 0.3s;
}

.social-icon:hover {
    background-color: var(--accent-color);
    color: var(--light-text);
}

:root {
    --dark-bg: #363636; /* Cor de fundo escura, similar à da imagem */
    --light-text: #ffffff;
    --accent-color: #ed9e00; /* Cor de destaque (opcional, pode ser branco puro) */
}



  
/* Cards Pagina Doação*/
.doacao-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
    padding: 10px;
    margin: 0;
    padding: 0px 30px 10px 30px;
    box-sizing: border-box;
}

.card-doacao {
    width: 280px;
    background: #fff;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    text-align: center;
    transition: 0.3s;
}

.card-doacao:hover {
    transform: translateY(-5px);
}

.card-doacao h2 {
    font-size: 40px;
    color: #140c2b;
}

.card-doacao span {
    font-size: 16px;
    color: #777;
}

.card-doacao p {
    margin: 15px 0;
    color: #444;
}

.link-pgdoacao {
    text-decoration: none;
    color: #140c2b;
    font-weight: bold;
}

.btn-pgdoacao {
    width: 100%;
    margin-top: 15px;
    padding: 12px;
    background: #ff2d2d;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
    transition: 0.3s;
}

.btn-pgdoacao-outrovalor {
    width: 100%;
    margin-top: 15px;
    padding: 12px;
    background: #0b7d62;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
    transition: 0.3s;
}

.btn-pgdoacao:hover {
    background: #ed9e00;
}

.btn-pgdoacao-outrovalor:hover {
    background: #095f4c;
}

     /* Rodapé */
    footer {
      background: #222;
      color: white;
      padding: 30px;
      text-align: center;
      margin-top: 40px;
    }

    /* Responsividade */
    @media (max-width: 900px) {
      header {
        flex-direction: column;
        text-align: center;
      }
      header nav a {
        margin: 10px;
        display: inline-block;
      }
      .hero-text h1 {font-size: 32px;}
      .hero-text h2 {font-size: 80px;}
      .hero-text p {font-size: 22px;}
    }
    @media (max-width: 900px) {
      .hero {height: 70vh; padding: 20px;}
      .hero-text {padding: 10px;}
      .hero-text h1 {font-size: 26px;}
      .hero-text h2 {font-size: 60px;}
      .hero-text p {font-size: 18px;}
    }

    /* Responsividade: Layout para Celular */
@media (max-width: 900px) {
    
    /* As 3 Polos ficam empilhadas */
    .polos-container {
        flex-direction: column;
    }
    
    .polo-item {
        margin-bottom: 25px;
    }

    /* Os botões de ação ocupam 100% da largura */
    .buttons-container {
        flex-direction: column;
        align-items: center;
    }

    .action-button {
        width: 100%;
        max-width: none;
        margin-bottom: 10px;
    }
}

