@import url(/styles/global.css);

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
}
body{
    text-decoration: none;
    position: relative;
    font-family: 'Roboto', sans-serif;
    letter-spacing: 2px;
    background-color: var(--primary-body);


}
.btnQueroDoar{
  background-color: green;
  width: 120px;
  height: 120px;
  text-align: center;
  position: fixed;
  bottom: 1rem;
  right: 1rem;
  z-index: 1;
 padding: 5px;
 padding: 1rem;
 border-radius: 50%;
 font-size: 1.2rem;
 scale: 0.9;
 transition: 1s ease;
 cursor: pointer;
}
.btnQueroDoar:hover{
  background-color: rgb(12, 184, 12);
  scale: 1;
  box-shadow: 0 0 5px #0000006c;
}

a, li{
    text-decoration: none;
    list-style: none;
    color: #fff;
}
header {
    background: #99140f;
    padding: 1rem 0;
    width: 100%;
    z-index: 10;
    
  }

  .nav {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    list-style: none;
  }
  
  .nav li {
    margin: 0 0.5rem;
  }
  
  .nav img {
    max-width: 100px;
    height: auto;
    border-radius: 10px;
  }
  
  .nav a {
    text-decoration: none;
    color: #fff;
    font-weight: 400;
    transition: color 0.3s;
    font-style: normal;
    font-family: 'Poppins', sans-serif;
  }
  
  .nav a:hover {
    color: #BCA067;
  }

  .navBar{
    display: none;
    background-color: #ccc;
  }

.container{
    width: 100%;
}
.home{
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  height: 50%;
  background-color: #BCA067;
  box-shadow: 0 0 10px var(--primary-section) ;
}
.home img{
  object-fit: cover;
  width: 50%;
  height: 50%;
}
.hero-text{
 text-align: center;
  display: flex;
  flex-direction: column;
  text-align: center;
  justify-content: center;
  margin: auto;
}
.hero-text a{
  border: 1px solid var(--primary-btn);
  padding: 5px;
  border-radius: 5px;
  
 
}
.hero-text a:hover{
  color:  var(--primary-btn);
  border: 1px solid var(--primary-body);
  padding: 5px;
  border-radius: 5px;
}
.hero-text p{
  color: var(--primary-body);
  padding: 1rem;
  font-family: "Roboto", serif;
  font-size: 2.5rem;
  font-weight: bold;
  text-transform: uppercase;
  text-align: center;
}


.btnMenu{
    display: none;
}
.links-hero a img{
    max-width: 100px;
}
.links-hero{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.sobre{
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 2rem 0;
    padding: 1rem;

}

.btnAssinar{
  background-color: green;
  padding: 10px 15px;
  color: #fff;
  width: auto;
  border-radius: 5px;
  font-size: 1.5rem;
}


.sobre p, h2{
    font-size: 1rem;
    line-height: 2.5rem;
    margin-bottom: 2rem;
    max-width: 60%;
    color: #1c1c1c;
}

.ler-mais{
    border: none;
    background-color: var(--primary-btn);
    color: #fff;
    font-size: 1.2rem;
    padding: 5px;
    border-radius: 10px;
    cursor: pointer;
}

/*ADOÇÃO*/
#adotar {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
    text-align: center;
    padding: 1rem;
    height: auto;
    gap: 1rem;
    
}
#adotar h2{
  font-family: "Roboto", serif;
  font-size: 2rem;
  color: #99140f;
}
#adotar p{
    font-size: 1.2rem;
    max-width: 100%;
    margin-top: 1rem;
}

.card-dog{
    width: 100%;
    height: 100%;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    align-items: center;
    justify-content: center;
    gap: 5px; 
    font-family: 'Poppins', sans-serif;
}
.card-dog .dog-card {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 100%;
    padding: 5px;
    text-align: center;
    color: #000;
    scale: 1;
    border-radius: 10px; 
    border: 2px solid #99140f;
    font-size: 0.5rem;
}
.dog-card a{
  display: flex;
  justify-content: center;
  flex-direction: column;
  height: 100%;
  align-items: center;
  color: #000;
  font-size: 1rem;
}
.dog-card a img{
   width: 100%;
   height: 200px;
   object-fit: cover;
}
.card-dog div:hover{
    background-color: #edddbc; 
}
.card-dog div img{
    max-width: 200px;
    width: 100%;
    border-radius: 5px;
    object-fit: cover;
}
.card-dog h3{
    font-weight: bold;
    color: #218838;

    font-size: 1.5rem;
    text-transform: capitalize;
    font-family: 'Roboto', sans-serif;
}
.card-dog p{
    font-size: 0.7rem;
}
.dog-card{
   color: #fff;
}
.data{
  font-size: 0.5rem;
}


.btnAdotar{
    border: none;
    background-color: var(--card-agenda);
    width: 100%;
    padding: 5px;
    color: #fff;
    font-size: 1.2rem;
    border-radius: 10px;
    box-shadow: 0 0 5px #0000008a;
    cursor: pointer;
    text-transform: uppercase;
    margin-bottom: 7px;
    
}
.sexoIdade{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  text-transform: uppercase;
}
.datanoabrigo{
  font-size: 10px;
  display: flex;
  
}
.btnApadrinhar{
  border: none;
    border: 1px solid #28a745;
    width: 100%;
    padding: 5px;
    color: #fff;
    font-size: 1.2rem;
    border-radius: 10px;
    box-shadow: 0 0 5px #0000008a;
    cursor: pointer;
    text-transform: uppercase;
}

.assinatura{
  max-width: 80%;
  margin: auto;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;

}
.assinaturaDiv{
  display: flex;
  flex-direction: column;
  text-align: center;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.assinatura h2{
  font-family: 'Roboto', sans-serif;
  color: #99140f;
  font-size: 40px;
 
}
.assinatura-div{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.imagens{
  display: flex;
  align-items: center;
  justify-content: center;


}
.assinatura img{
  border: 5px solid #BCA067;
  border-radius: 20% 50% / 30% 20%;
}

#checkout-btn{
  border: 3px solid #FCA311;
  border-radius: 10px;
  padding: 10px;
  width: 100%;
  font-size: 1.2rem;
  background-color: transparent;
  color: #FCA311;
  cursor: pointer;
}
#checkout-btn:hover{

  border-radius: 10px;
  padding: 10px;
  width: 100%;
  font-size: 1.2rem;
  background-color: #FCA311;
  color: #ffff;
  cursor: pointer;
  transition: 0.5s;
}
.agenda{
    width: 100%;
    height: 100vh;
    margin-top: 2rem;
    display: flex;
    align-items: center;
    justify-content: space-around;
    background-color: #ccc;
    box-shadow: 0 0 10px #0000007c;
    text-align: center;
}
.agenda img{
    max-width: 400px;
}

#agenda {
    background-color: #f9f9f9;
    padding: 2rem;
    text-align: center;
}
.agenda-header{
  text-align: center;
}
.agenda-header h2 {
    font-size: 2rem;
    color: #99140f;
    margin-bottom: 0.5rem;
    margin: auto;
}

.agenda-header p {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 2rem;
}

.agenda-eventos {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    align-items: center;
    text-align: center;
}

.evento {
    background: #b19d75;
    color: #fff;
    padding: 1rem;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.evento:hover {
    transform: translateY(-10px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.evento h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.evento p {
    font-size: 1rem;
    margin-bottom: 0.5rem;
}



.ajuda{
    max-width: 100%;
    height: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    text-align: center;
    height: 100%;
  
}

.ajuda img{
    max-width: 300px;
}
.ajuda h2{
    font-size: 1.5rem;
}

.ajuda a{
    margin-bottom: 2rem;
    background-color: green;
    color: #fff;
    padding: 10px;
    border-radius: 5px;
}
.ajuda h2{
    font-size: 1.5rem;
    color: #99140f;
}

.gridAjudar{
    max-width: 80%;
    display: grid;
    grid-template-columns: repeat(3,1fr);
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    height: 100%;
    padding: 0.5rem;
}
.gridAjudar h2{
  font-size: 2rem;
  font-weight: bold;
  color: #fff;
  align-items: center;
  width: 100%;

}
.gridAjudar div{
  height: 100%;
   border-radius: 5px;
    width: 100%;
    padding: 5px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
   background-color: #BCA067;

}
.gridAjudar div img{
  width: 100px;
}
.gridAjudar div p{
  color: #fff;
  width: 100%;
}

.antes-depois-section {
    text-align: center;
    padding: 50px 20px;
    background-color: #f9f9f9;
    height: 100%;
  }
  
  .before-after {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
  }
  
  .card {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 10px;
    max-width: 300px;
  }
  
  .images {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
  }
  
  .images img {
    width: 100%;
    transition: opacity 0.3s ease-in-out;
  }
  
  .before {
    opacity: 1;
  }
  
  .after {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
  }
  
  .images:hover .before {
    opacity: 0;
  }
  
  .images:hover .after {
    opacity: 1;
  }
  
  .description {
    margin-top: 10px;
    font-size: 14px;
    color: #555;
  }
  

  .voluntarios-section {
    text-align: center;
    padding: 50px 20px;
    background-color: #fff;
  }
  
  .voluntarios-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 30px;
  }
  
  .voluntario-card {
    background: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 15px;
    text-align: center;
  }
  
  .voluntario-card img {
    border-radius: 50%;
    width: 100px;
    height: 100px;
    object-fit: cover;
    margin-bottom: 10px;
  }
  
  .voluntario-card h3 {
    margin: 10px 0 5px;
    font-size: 18px;
    color: #333;
  }
  
  .voluntario-card p {
    font-size: 14px;
    color: #555;
  }
  
  .cta-voluntarios {
    margin-top: 30px;
   
  }
  
  .cta-voluntarios .btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: #28a745;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
  }
  
  .cta-voluntarios .btn:hover {
    background-color: #218838;
  }
  

/* Footer */
footer {
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: space-around;
    background: var(--primary-text-red);
    color: #fff;
    padding: 1rem 0;
    text-align: center;
    gap: 1rem;
  }
  
  footer article{
    display: flex;
    align-items: center;
    justify-content: space-around;
    width: 100%;
    gap: 1rem;
  }
  footer article img{
    border-radius: 20%;
  }
  
  footer a{
    font-style: italic;
    font-weight: 200;
  }
  .footerdiv{
    display: flex;
    flex-direction: column;
  }
  footer img{
    max-width: 150px;
  }
  
  footer .nav-footer {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    margin-bottom: 1rem;
  }
  
  footer .nav-footer li {
    margin: 0.5rem 0;
  }
  
  footer .icons-footer {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin: 1rem 0;
  }
  
  footer .icons-footer a {
    color: white;
    font-size: 1.5rem;
    transition: color 0.3s;
  }
  
  footer .icons-footer a:hover {
    color: #007bff;
  }

.before, .after{
    width: 100px;
}
.parceiro-container{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 0 auto;
}

.parcerias{
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  justify-content: center;
  align-items: center;
  gap: 10px;
  height: 100%;
  flex-direction: column;
  margin: 2rem auto;
}
.parcerias  img{
  width: 150px;
  height: 150;
  border-radius: 20px;
  object-fit: contain;
}
.parceiro-container h2{
  font-size: 2rem;
  font-weight: 500;
  width: 100%;
}
#before-after{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 10px;
  margin-top: 1rem;
}
.data-card{
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-direction: column;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  height: auto;
  border-radius: 10px;
}
.data-card img{
  width: 150px;
  height: auto;
  border-radius: 50%;
}
.divantes{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 5px;
}
.container h2{
  font-size: 2rem;
  color: #99140f;
  text-align: center;
  width: 100%;
}
.container{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-around;
}
.voluntarios-grid{
  display: grid;
  grid-template-columns: repeat(2,1fr);
  align-items: center;
  justify-content: center;
  width: 100%;
}

.div{
  display: flex;
  align-items: center;
  justify-content: space-around;
}

  /* Responsividade */
  @media (max-width: 768px) {
    header{
      margin-bottom: 20%;
      background: var(--primary-text-red);

    }
    .nav {
        flex-direction: flex;
        align-items: center;
        justify-content: space-around;
    }
    .btnMenu{
        display: flex;
        align-items: center;
        justify-content: center;
        border: none;
        width: 50px;
        height: 50px;
        background-color: #fff;
        border-radius: 5px;
        box-shadow: 0 0 5px #0000007c;
        font-size: 1.2rem;
        scale: 1;
        cursor: pointer;
    }

    .nav li{
        display: none;
    }
    .navBar{
        display: none;
        flex-direction: column;
        align-items: center;
        background-color: #BCA067;
        gap: 1rem;
        font-size: 1.2rem;
        line-height: 3rem;
        animation: menu 1s  ease;
        width: 100%;
    }
    .navBar li a{
      color: #fff; 
       font-weight: 500;
      letter-spacing: 2px;
    }
    .active{
        display: flex;
        
    }
    .navBar li:hover{
        color: #fff;
        background-color: #99140f;
        font-weight: 500;
        letter-spacing: 2px;
        width: 100%;
        text-align: center;
        transition: 1s;
    }
      
      @keyframes menu {
        from {
          margin-left: 100%;
          width: 300%;
        }
      
        to {
          margin-left: 0%;
          width: 100%;
        }
      }


    .hero {
        flex-direction: column;
        text-align: center;
        width: 100%;
        height: 100%;
        border-radius: 30px ;
       
          
    }

    .hero h1 {
        max-width: 100%;
        font-size: 1.2rem;
    }

    .hero img {
        max-width: 150px;
        margin-top: 1rem;
    }

    .links-hero {
        flex-wrap: wrap;
        gap: 1rem;
    }

    .sobre p {
        max-width: 90%;
        font-size: 1rem;
        line-height: 2.5rem;
        letter-spacing: 2px;
        padding: 1rem 0;
        font-family: 'Poppins', sans-serif;
    }

    .card-dog {
        grid-template-columns: repeat(2, 1fr);
        margin: 1rem 0;
    }

    .dog-card a{
      display: flex;
      justify-content: center;
      flex-direction: column;
      height: 100%;
      width: 100%;
      align-items: center;
      color: #000;
      gap: 5px;
    }
    .adotar a{
      width: 100%;
    }
    .dog-card a h3{
      width: 100%;
      font-size: 1.5rem;
    }
    .data{
      font-size: 0.5rem;
      font-weight: bold;
    }

    .gridAjudar {
        flex-wrap: wrap;
        display: grid;
        grid-template-columns: 1fr;
    }

    .agenda-eventos {
        grid-template-columns: repeat(2, 1fr);
    }

    .home img{
      max-width: 100%;
      width: 300px;
      
    }

    .parcerias{
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      justify-content: center;
      align-items: center;
      gap: 10px;
      height: 100%;
      flex-direction: column;
    }
    .parcerias div{
      background-color: #ccc;
      width: 200px;
      height: 200px;
    }
    .home{
      position: relative;
    
    }
    .sobre{
      height: 100%;
    }
}
@media (max-width: 480px) {
  header {
    
   position: relative;
   margin-bottom: 0;
  }
  .navBar li:hover{
    color: #fff;
    background-color: #c35753;
    font-weight: 500;
    letter-spacing: 2px;
    width: 100%;
    text-align: center;
    transition: 1s;
}
    .hero h1 {
        font-size: 1rem;
    }
    .btnQueroDoar{
      background-color: green;
      width: 90px;
      height: 90px;
      text-align: center;
      position: fixed;
      bottom: 1rem;
      right: 1rem;
      z-index: 1;
     padding: 10px;
     padding: 1rem;
     border-radius: 50%;
    
     font-size: 1rem;
     transition: 1s ease;
    }
    .btnQueroDoar:hover{
      background-color: rgb(22, 160, 22);
      transform: translateY(-5px);
      box-shadow: 0 0 5px #0000006c;
    }

    .sobre p {
        font-size: 0.8rem;
        line-height: 1.2rem;
    }
    .sobre p, h2 {
      font-size: 1rem;
      line-height: 2.5rem;
      margin: 1rem auto;
      max-width: 100%;
      color: #1c1c1c;
  }
  .sobre{
    margin-bottom: 2rem;
  }
    .home{
      width: 100%;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      padding-bottom: 10px;
      margin-bottom: 1rem;
    }

    .home p{
      padding-left: 1rem;
      font-size: 1.2rem;
    }
    .home img{
      max-width: 100%;
      width: 100%;
      
    }
    .card-dog {
        grid-template-columns: repeat(1, 1fr);
        width: 100%;
        max-width: 100%;
        gap: 0;
        
    }
  .dog-card img{
    width: 100px;
    max-width: 100px;
  }
  .card-dog p{
    margin: 0;
  }

    .links-hero img {
        max-width: 80px;
    }

    .gridAjudar {
        grid-template-columns: 1fr;
        gap: 1rem;
        color: #fff;
    }
    footer{
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        line-height: 2rem;
        font-size: 1.2rem;
        letter-spacing: 1px;
    }

    footer img {
        max-width: 120px;
    }

    .icons-footer a {
        font-size: 1.2rem;
    }
    .agenda-eventos {
        grid-template-columns: 1fr;
    }

    .agenda-header h2 {
        font-size: 1.5rem;
    }

    .agenda-header p {
        font-size: 1rem;
    }
    .links-hero{
        display: flex;
    }
    .links-hero a img{
        width: 70px;
    }

    .parcerias{
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      justify-content: center;
      align-items: center;
      gap: 5px;
    }
    .parcerias img{
      width: 150px;
      height: 150px;
      border-radius: 10px;
    }
 
    .parceiro-container{
      width: 100%;
      height: 100%;
      margin: 2rem auto;
      text-align: center;
    }
    .container{
      margin:  auto;
    }
    .hero-text a{
     font-size: 1.5rem;
     background-color: #28a745;
     border: 1px solid #fff;
     text-transform: uppercase;
     margin-bottom: 1rem;
    }
    .hero-text a:hover{
      font-size: 1.5rem;
      background-color: #fff;
      border: 1px solid #28a745;
      text-transform: uppercase;
      margin-bottom: 1rem;
     }

     .assinatura{
      width: 100vw;
      max-width: 100%;
      height: 100vh;
      background-image: url('/assets/zazu-background.jpg');
      background-position: center;
        background-size: cover;
        background-repeat: no-repeat;
        object-fit: cover;
        position: relative;
        padding: 10px;
        margin: 0;
    
    }
    .assinatura h2{
      text-align: center;
    }
    .imagens, .image-separada{
    display: none;
   
}
.assinatura{
  position: relative;
  display: flex;
  flex-direction: column;
}
.assinatura h2{
  font-family: 'Roboto', sans-serif;
  color: #fff;
  font-size: 45px;
  width: 100%;
  margin-bottom: 1rem;
}
.assinatura strong{
  color: #fff;
  font-size: 40px;
  margin-bottom: 1rem;
}
.assinatura a{
  margin-top: 1rem;
}
.card-dog .dog-card {
   margin: auto;
  width: 90%;
  padding: 5;
  gap: 0;
 
}

.sexoIdade {
  font-size: 0.2rem;
  gap: 5px;
}
#adotar{
  max-width: 100%;
  margin: 0;
}
#before-after{
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 10px;
  margin-top: 1rem;
}

}

