*{
    margin: 0;
    padding:0;
}
html, body{
    margin: 0;
    padding: 0;
    font-family: 'poppins';
    overflow-x: hidden !important; }





/* Logo */
header {
    background-color: #108f46;
    padding: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
}

.logo {
    display: flex;
}

.logo img {
    padding: 20px;
    max-width: 100px;}

/* ferramenta de busca */
.search {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
}

.search input {
    padding: 10px 10px 10px 10px;
    border: none;
    border-radius:80px;
    width: 50%;
    background-color:#fff;
    color:#065528;
}

input[type="pesqui"]::placeholder {
    font-size: 16px;
    color: #6b6969;
}


.mobile-nav {
    display: none;
}

@media only screen and (max-width: 450px) and (min-width: 300px) {
    .burger-menu {
        display: none;
    }

    .search input {
        flex: 1; 
        flex-wrap: wrap;
        padding: 10px 10px 10px 10px;
        border: none;
        border-radius:80px;
        margin-left: 20px;
    }

    .search {
        flex: initial; 
    }
}


/* Banner home */
.banner {
    background: #108f46 url('Assets/Background_.jpg');
    background-size: cover;
    background-position: center;
    background-position-x: 100px;
    background-repeat: no-repeat;
    height: 500px;
    display: flex;
    align-items: center; 
    padding: 20px 0px 10px 20px;
}

.banner-content {
    max-width: 600px;
    padding: 20px; 
    width: 100%; 
    box-sizing: border-box; 
}

.banner-content h1 {
    color:#fff;
    font-size: 2.5em;
    line-height:3rem;
    margin-left:10px;
    margin-bottom: 10px;
    text-align: left; 
    width: 80%;
}

.banner-content button {
    background-color: #fab31e;
    color: #108f46;
    padding: 10px 80px;
    font-size: 1.2em;
    border: none;
    border-radius: 20px;
    cursor: pointer;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

@media only screen and (max-width: 450px) and (min-width: 300px) {
    .banner {
        background: #108f46 url('Assets/Background_.jpg');
        background-size:1000px 500px;
        background-position: center;
        background-repeat: no-repeat;
        background-position-x: 100px;
        align-items: center; 
        height: 400px;
        padding:20px;
    }

    h1, button {
        text-align: center;
    }

    .banner-content h1 {
        color:#fff;
        font-size: 25px;
        line-height:2rem;
        margin-bottom: 10px;
        text-align: left; 
        width: 80%;
    }
    


    .banner-content button {
        margin: 10 auto; 
        padding: 10px 50px;
        display: block; /
    }
}

/* Passo-a-passo */
.title {
    padding-top: 50px;
}

.title h1 {
    text-align: center;
    color:#108f46;
    font-size: 2em;
    width: 100%;
}
.container-card{
    text-align: center;
    background: #fab31e url('Assets/Background_rodela.png');
}

.card-container {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-around;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    
}

.card {
    width: 300px;
    margin: 15px;
    padding: 20px;
}

h2 {
    background-color: #108f46;
    color:#fff;
    text-align: center;
    font-size: 2.5em;
    padding: 30px;
    margin-bottom: 10px;
    border-radius: 0px 0px 150px 150px;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

p {
    font-size: 1em;
    color: #555;
}


@media only screen and (max-width: 450px) and (min-width: 300px) {
    .card-container {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-around;
        max-width: 450px;
        margin: 0 auto;
        padding: 20px;
    }


    .card {
        width: 300px;
        margin: 5px;
        padding: 5px;
    }
    
    h2 {
        background-color: #108f46;
        color:#fff;
        text-align: center;
        font-size: 2.5em;
        padding: 30px;
        margin-bottom: 10px;
        border-radius: 0px 0px 250px 250px;
    }
    
    p {
        font-size: 1.2em;
        color: #555;
    }
}

/* Projetos */

.container-projeto{
    margin-top: -230px;
}
.title-projetos{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    background-color:#88c9b1;
    font-size: 2em;
    margin: 0 auto;
    padding-bottom: 250px;
    height: 200px;
}

.title-projetos h1{
    text-align: center;
    color:#fff;
    font-size: 2em;
    width: 100%;
}

.title-projetos p{
    text-align: center;
    color:#fff;
    font-size: 18px;
    width: 100%;
}

.card-projetos {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.projeto {
    width: calc(30% - 20px);

    box-sizing: border-box;
    text-align: center;
}

.projeto img {
    max-width: 350px;
    height: auto;
}

.projeto h3 {

    text-align: center;
}

.projeto p {

    text-align: center;
}



.btn-projeto button{
  color:#fff;
  background-color: #108f46;
}

.btn-projeto{
    padding:50px;
  }

  @media only screen and (max-width: 450px) and (min-width: 300px) {

    .container-projeto{
        margin-top: -230px;
    }
    .title-projetos{
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: center;
        background-color:#88c9b1;
        font-size: 1em;
        margin: 0 auto;
        padding-top:50px;
        padding-bottom: 250px;
        height: 150px;
    }
    
    .title-projetos h1 p{
        text-align: center;
        color:#fff;
        font-size: 1em;
        width: 100%;
    }
    
    

    .card-projetos {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-around;
        max-width: 1200px;
        margin: 0 auto;
        padding: 20px;
    }
    
    .projeto {
        width: calc(100% - 20px);
        box-sizing: border-box;
        text-align: center;
    }
    
    .projeto img {
        max-width: 350px;
        height: auto;
    }
    
    .projeto h3 {
        font-size: 25px;
        font-weight: 800;
        color: #261259;
        padding: 20px 20px 10px 20px;
        text-align: center;
    }
    
    .projeto p {
        padding: 20px 20px 60px 20px;
        text-align: center;
        color: #261259;
    }

    .btn-projeto{
        padding:20px;
    }
    
  }

/* parceiros */
.title-parceiros{
    padding:50px;
}

.title-parceiros h1{
    width: 100%;
    text-align: center;
    color:#108f46;
}
.container-parceiro{
    margin: 0;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 50px;
    justify-content: center; 
    width: 80%;
}

.logo {
    max-width: 50%;
    height: auto;
    display: block;
    margin: 0 auto;
}


@media only screen and (max-width: 450px) and (min-width: 300px) {

    .title-parceiros{
        padding:50px;
    }

    .container-parceiro{
        margin: 0;
        padding: 20px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .logo-gallery {
        display: grid;
        flex-wrap: wrap;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        justify-content: center; 
        width: 90%;
    }
    
    .logo {
        max-width: 50%;
        height: auto;
        display: block;
        margin: 0 auto;
    }
}

/* Ranking */
.title-ranking h1{
    padding:50px;
    padding-left:50px;
    width: 100%;
    text-align: center;
    color:#108f46;
}

.ranking-politicos{
    display: flex;
    justify-content: center;
    text-align: center;
    background-image: url('Assets/background_ranking.png');
    background-repeat: no-repeat;
    background-position: bottom;
    background-size: contain;
    padding-bottom: 150px;
  
  }
  
  .ranking-politicos li{
    list-style-type: none;
  }
  
  .profile-banner{
    display: flex;
    align-items: center;
    background-color:#e2e4e3;
    margin-bottom: 30px;
    margin-left: 20px;
    padding: 20px 80px 20px 30px;
  }
  
  
  .profile-icon img{
    width: 100px;
    height: 100px;
    border-radius: 180px;
  }
  
  .profile-name, .profile-numero{
    font-size: 32px;
    font-weight: 800;
    padding:20px;
  }
  
  #icon-top-ranking img{
    margin-top: 80px;
    width: 50px;
  }


  @media only screen and (max-width: 450px) and (min-width: 300px) {

    .title-ranking h1{
        font-size: 25px;
        padding-left:45px;
    }

    .ranking-politicos{
        display: flex;
        background-image: url('Assets/background_ranking.png');
        background-repeat: no-repeat;
        background-position: bottom;
        background-size: contain;
        padding-bottom: 120px;
      
      }
      
      .ranking-politicos li{
        list-style-type: none;
      }
      
      .profile-banner{
        display: flex;
        align-items: center;
        background-color:#e2e4e3;
        margin-bottom: 30px;
        margin-left: 20px;
        padding: 10px 20px 20px 20px;
      }
      
      
      .profile-icon img{
        width: 100px;
        height: 100px;
        border-radius: 180px;
      }
      
      .profile-name,.profile-numero{
        font-size: 20px;
        font-weight: 800;
      }

      
      ol {
        display: block;
        list-style-type: decimal;
        margin-block-start: 1em;
        margin-block-end: 1em;
        margin-inline-start: 0px;
        margin-inline-end: 10px;
        padding-inline: 5px;
    }
    


  }


  /* Formulario*/
 
.container-formulario{
    font-size:35px;
    padding: 100px;
    text-align: center;
    background-image: linear-gradient(#108f46, #065528);
    height: 100vh;
  }
  
  .formulario{
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center
  }
  
  form {
    padding: 20px;
    border-radius: 8px;
    display: flex;
    flex-direction: column; 
    align-items: center; 
  }
  
  label {
    display: block;
    margin-bottom: 8px;
  }
  
  input, select {
    width: 40%;
    padding: 8px;
    margin-bottom: 16px;
    box-sizing: border-box;
    color:#fff;
    border: none;
    border-bottom: 3px solid #ccc;
    transition: border-bottom 0.3s;
    background-color: transparent;
    border-radius: 4px;
    font-size:16px;
  }
  
  input::placeholder, select::placeholder {
    font-size:18px;
    color: #ffffff; /* Cor do placeholder */
  }
  
  button {
    font-family: 'poppins';
    font-size: 18px;
    background-color: #fab31e;
    color: #065528;
    margin: 20px;
    padding: 10px 80px;
    border: none;
    border-radius: 20px;
    cursor: pointer;
  }
  .imagem-footer{ 
    display: flex;
    align-items: center;
    justify-content: center;
    height: 200px;}
  .imagem-footer img {width: 350px;}


  @media only screen and (max-width: 450px) and (min-width: 300px) {

    .container-formulario{
        font-size:25px;
        padding: 50px;
        text-align: center;
        background-image: linear-gradient(#108f46, #065528);
        height: 100vh;
      }
      
      .formulario{
        margin: 0;
        padding: 0;
        display: flex;
        align-items: center;
        justify-content: center
      }
      
      form {
        padding: 20px;
        border-radius: 8px;
        display: flex;
        flex-direction: column; 
        align-items: center; 
      }
      
      label {
        display: block;
        margin-bottom: 8px;
      }
      
      input, select {
        width: 260px;
        padding: 8px;
        margin-bottom: 16px;
        box-sizing: border-box;
        color:#fff;
        border: none;
        border-bottom: 3px solid #ccc;
        transition: border-bottom 0.3s;
        background-color: transparent;
        border-radius: 4px;
        font-size:16px;
      }
      
      input::placeholder, select::placeholder {
        font-size:18px;
        color: #ffffff; /* Cor do placeholder */
      }
      
      button {
        font-family: 'poppins';
        font-size: 18px;
        background-color: #fab31e;
        color: #065528;
        margin: 20px;
        padding: 10px 80px;
        border: none;
        border-radius: 20px;
        cursor: pointer;
      }



  }