@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

body {
    background-color: #ffffff;
}


/* barra de navegação */
 .navbar {
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 30px 30px;
    background-color: #ffffff;
    color: #0B4E9A;
    
  }

  .navbar-left{
    display: flex;
  }

  .navbar-center{
    text-align: center;
    display: flex;
    flex-direction: column;
  }
  
  .navbar-center h1 {
    margin: 0;
    font-size: 1.7rem;
    font-weight: 800;
  }
  .navbar-center p {
    color: #333333;
    margin: 0;
    font-size: 20px;
  }
  
  .navbar-right .contact-link {
    color: #0B4E9A;
    text-decoration: none;
    font-size: 1em;
  }
  
  .navbar-right .contact-link:hover {
    text-decoration: underline;
  }

  .navbar img{
    width: 17rem;
    height: auto;
  }

  .navbar-right p{
    font-size: 1.3rem;
    margin: 4px;
  }
  @media (max-width: 1024px) {
    .navbar {
    flex-direction: column;
}

.navbar-center h1 {
    font-size: 1.5rem;
}
}

  /* Section 1 */

.banners {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 40px;
  height: 500px;
  background-image: url('../images/banners/banner-porque-trocar-de-contador_.webp'); /* Substitua pelo nome real da imagem do banner */
  background-size: cover;
  background-position: center;
  position: relative;
  color: #fff;
}

.texto-banner {
  max-width: 610px;
  text-align: left;
}

.texto-banner h1 {
  font-size: 80px;
  line-height: 1.2;
  font-weight: bold;
  color: white;
  text-transform: uppercase;
}

.texto-banner h1 span {
  color: #FFA112;
  font-size: 50px;
 
}

.texto-banner p {
  margin-top: 10px;
  font-size: 20px;
  line-height: 1.5;
  color: white;
  
}
  @media (max-width: 1024px) {

.texto-banner h1 {
  font-size: 50px;
}

.texto-banner h1 span {
  font-size: 50px;
}
}

  /* Section 2 */

.motivos-trocar-contador {
  max-width: 1000px;
  margin: 50px auto;
  font-family: Arial, sans-serif;
}

.motivos-trocar-contador h2 {
  background-color: #f0f0f0;
  padding: 15px;
  text-align: center;
  color: #1d4c89;
  border: 2px solid #1d4c89;
}

.motivos-trocar-contador table {
  width: 100%;
  border-collapse: collapse;
  text-align: center;
}

.motivos-trocar-contador th,
.motivos-trocar-contador td {
  border: 1px solid #1d4c89;
  padding: 10px;
}

.motivos-trocar-contador thead th {
  background-color: #f9f9f9;
  color: #1d4c89;
  font-weight: bold;
}

.motivos-trocar-contador tbody td:first-child {
  text-align: left;
}

.motivos-trocar-contador .nao {
  color: red;
  font-size: 20px;
}

.motivos-trocar-contador .sim {
  color: green;
  font-size: 20px;
}



footer {
    background-color: #064081;
    text-align: center;
    padding: 50px;
    font-size: 18px;
    color: #ffffff;
}