/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

@import url("https://use.typekit.net/xuo5jcg.css");

.azul {
  background-image: radial-gradient(circle, #0061C1, #003896);
}

.vermelho {
  background-image: radial-gradient(circle, #CF2C38, #811119);
}

.verde {
  background-image: radial-gradient(circle, #07bb07, #008600);
}

.ciano {
  background-image: radial-gradient(circle, #0099C1, #007E9F);
}

.laranja {
  background-image: radial-gradient(circle, #FF9E38, #ED7900);
}


body {
  font-family: "poppins", sans-serif;
  font-weight: 400;
  font-style: normal;
  line-height: 1.5;
  color: #000;
  overflow-x: hidden;
  color: #e6e6e6;
}



@media (max-width: 768px) {


  /* BANNER */
  .banner {
    flex-direction: column;
    padding: 30px 20px;
  }

  .texto-banner,
  .imagem-banner {
    width: 100%;
  }

  .texto-banner h1 {
    font-size: 1.6em;
  }

  .texto-banner p {
    font-size: 1.2em;
  }

  .banner-img {
    width: 100%;
  }

  .btn-laranja{
    width: 40% !important;
  }

  /* BENEFÍCIOS */
  .beneficios {
    flex-direction: column;
    gap: 20px;
  }

  /* QUADROS */
  .quadros {
    flex-direction: column;
    align-items: center;
  }

  .quadro {
    width: 85% !important;
  }

  .quadro p{
    font-size: 0.9em !important;
  }

  /*QUEM SOMOS*/
  .quem-somos {
    font-size: 0.8em;
  }

  /* BEM-VINDO */
  .bem-vindo {
    flex-direction: column;
    padding: 30px 40px !important;
  }

  .bem-vindo img {
    width: 40% !important;
  }

  .texto-bem-vindo {
    align-items: center;

  }

  .texto-bem-vindo p {
    font-size: 1.2em;
    text-align: justify;
    color: black;
  }
  .texto-bem-vindo a{
    margin: 20px auto 0 auto;
  }


  /* LOGOS */
  .logos {
    justify-content: center;
    gap: 10px;
  }

}

@media (max-width: 640px) {

  .cards-grid {
    grid-template-columns: 1fr !important;
  }
}

@media (max-width: 480px) {
  /* Proper padding and gaps */
  .banner {
    padding: 20px 10px;
  }

  .texto-banner h1 {
    font-size: 1.8em !important;
  }

  .texto-banner p {
    font-size: 1.6em !important;
  }

  .btn-laranja {
    width: 40%;
    font-size: 1em;
  }

  .cards-grid {
    grid-template-columns: 1fr !important;
  }
}


/* Garantir consistência de largura entre páginas */
main,
section:first-of-type {
  box-sizing: border-box;
}

/* BANNER */
.banner {
  background-image: radial-gradient(circle, #00B000, #009200);
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 40px;
  color: #fff;
  text-align: center;
  box-sizing: border-box;
}

.texto-banner,
.imagem-banner {
  width: 50%;
}

.imagem-banner {
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.texto-banner h1 {
  font-size: 2.5em;
  font-weight: 800;
}

.texto-banner p {
  margin: 10px 0;
  font-size: 2em;
  font-weight: bold;
  color: #003896;  
}

.btn-laranja {
  display: inline-block;
  width: 200px;
  margin-top: 30px;
  background-color: #E05900;
  font-size: 1.3em;
  color: #fff;
  padding: 5px 0;
  text-decoration: none;
  font-weight: bold;
  border-radius: 5px;
  box-shadow: 2px 2px 4px #1d1d1d81;
  text-align: center;
}

.btn-laranja:hover {
  background-color: #ED7900;
}

/* BENEFÍCIOS */
.beneficios {
  background-color: #EEEEEE;
  display: flex;
  justify-content: space-around;
  text-align: center;
  padding: 30px 20px;
}

.beneficios img {
  height: 40px;
  margin-bottom: 10px;
}

.beneficios p {
  color: #3E4095;
}

.beneficios span {
  color: #00A859;
}

/* QUADROS */
.quadros {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  padding: 40px 20px;
  gap: 20px;
}

.quadro {
  width: 200px;
  padding: 20px;
  border-radius: 10px;
  color: #fff;
  text-align: center;
}

.quadro img {
  margin-bottom: 10px;
}

.quadro h2 {
  font-size: 1.1em;
  font-weight: 500;
  margin-bottom: 20px;
}

.quadro p {
  font-size: 0.8em;
  font-weight: 400;
}

/* QUEM SOMOS */
.quem-somos {
  background-color: #3E4095;
  color: white;
  text-align: center;
  padding: 30px 20px;
}

.quem-somos h2 {
  font-size: 3em;
}

.quem-somos p {
  color: #00A651;
  text-transform: uppercase;
  font-size: 2em;
}

.bem-vindo {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  padding: 70px;
}



.texto-bem-vindo {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.texto-bem-vindo p {
  text-align: justify;
  width: 100%;
  font-size: 2.2em;
  text-indent: 30px;
  color: black;
}

.btn-quem-somos {
  width: 170px;
  margin-top: 30px;
  background-color: #E05900;
  font-size: 1.3em;
  color: #fff;
  padding: 15px 0;
  text-decoration: none;
  font-weight: bold;
  border-radius: 5px;
  box-shadow: 2px 2px 4px #1d1d1d81;
  text-align: center;
}

.btn-quem-somos:hover {
  background-color: #ED7900;
}

/* LOGOS */
.logos {
  margin: 0 30px;
  box-shadow: 2px 2px 5px rgba(43, 43, 43, 0.384);
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 20px;
  flex-wrap: wrap;
  text-align: left;
}


.logos img {
  height: 40px;
  margin: 10px;
}

/* SEÇÃO DE PRODUTOS (GRID DE CARDS) */

.cards-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  padding: 40px 20px;
  max-width: 900px;
  margin: auto;
}

.card {
  color: white;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;

  font-size: 1.8em;
}

.card img {
  max-width: 80%;
  height: auto;
  margin: 0 auto;
}

.card a {
  width: 50%;
  margin: 0 auto;
  margin-top: auto;
  background-color: #FFA500;
  color: white;
  font-weight: bold;
  padding: 10px;
  text-decoration: none;
  border-radius: 5px;
  display: inline-block;
  box-shadow: 2px 2px 4px #1d1d1d81;
  transition: background-color 0.3s ease;
  font-size: 0.8em;
}

.card h3 {
  text-transform: uppercase;
  margin-bottom: 20px;
}

.card a:hover {
  background-color: #ED7900;
}

.img-cartucho {
  width: 180px;
}

.coluna-pequenos {
  height: 50%;
  display: grid;
  gap: 20px;
}

.card.pequeno {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.card a:hover {
  background-color: #ED7900;
}

.a-azul {
  background-color: #00B4E3 !important;
}

.a-verdee {
  background-color: #008600 !important;
}

.a-laranja {
  background-color: #E05900 !important;
}

.a-laranja:hover {
  background-color: #ff7113 !important;
}

.a-azul:hover {
  background-color: #0181a1 !important;
}

.a-verdee:hover {
  background-color: #005f00 !important;
}

.card {
  line-height: 1.1;
}

.span-normal {
  font-size: 1.5em;
}

.clique-blue {
  background-color: #00B4E3 !important;
  margin-top: -20%;
}

.clique-blue:hover {
  background-color: #0083a3 !important;
}

.laranja h3 {
  line-height: 1;
}

.toner {
  font-size: 2em;
}

.laser {
  font-size: 1.5em;
}

.laranja a {
  background-color: #009200;
}

.laranja a:hover {
  background-color: #006300;
}

.img-toner {
  width: 300px;
}

.pequeno {
  font-size: 0.6em;
}

.img-locacao {
  width: 250px;
}

.verde a {
  background-color: #E05900;
}

.largo h3 {
  font-size: 1.5em;
}

.originais {
  text-align: left;
}

.originais img {
  width: 300px;
}

.cartuchos {
  font-size: 0.8em;
}

.originais a {
  text-align: center;
  background-color: #00B4E3;
}

.originais a:hover {
  background-color: #027491;
}

.vermelho span {
  font-size: 1.3em;
}

.ciano span {
  font-size: 1.5em;
}

/* CULTURA */
.cultura {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  background-color: #3E4095;
  color: #FFF;
  padding: 20px;
  text-align: center;
  align-items: center;
  font-size: 1rem;
}

.conceca-cultura p {
  font-weight: 400;
}


/* RESPONSIVIDADE*/
@media (max-width: 1160px) {
  .cards-grid {
    grid-template-columns: 1fr 1fr;
  }

 .texto-banner h1 {
    font-size: 2.1em ;
  }

  .quadros {
    width: 80%;
    margin: auto;
  }

  .bem-vindo img {
    width: 30%;
  }

  .texto-bem-vindo p {
    font-size: 2em;
  }
  .texto-bem-vindo p {
    color: black;
  }
}

@media (max-width: 1000px) {
  .cards-grid {
    text-align: center;
    margin: auto;
    grid-template-columns: 1fr 1fr;
  }

  .card{
    width: 100%;
    font-size: 130%;
  }

  .card.largo {
    grid-column: auto;
    grid-row: auto;
  }

  .coluna-pequenos {
    grid-template-columns: 1fr;
  }

  /* BANNER */
  .banner {
    flex-direction: column;
    padding: 30px 20px;
  }

    .btn-laranja{
    width: 20% ;
  }

  .texto-banner,
  .imagem-banner {
    width: 100%;
  }



  .banner-img {
    width: 90%;
    max-width: 550px;
    height: auto;
  }

  .bem-vindo img {
    width: 30%;
  }

  .texto-bem-vindo p {
    font-size: 1.2em;
  }

  .btn-laranja {
    width:40%;
    font-size: 1.1em;
    margin-top: 10px;
  }
  .conceca-cultura{
    font-size: 0.9em;
  }

  .cultura-txt{
    font-size: 0.8em;
  }
  
  .cultura p,
  .cultura li {
    font-size: 1em !important;
  }
  .cultura img{
    width: 90px;

  }

  .cultura li{
    list-style: none;
  }
}