/* Google Fonts */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

/* Padrões */

:root {
  --vermelho: #cc0000;
  --vermelho_escuro: #9A1915;
  --cinza: #D9D9D9;
  --preto: #000;
  --branco: #ffffff;
  --fonte_texto: "Montserrat", sans-serif;
}

/* Configurações Gerais */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: var(--fonte);
}

/* Header */

.container_header {
  display: flex;
  align-items: center;
  gap: 0.33rem;
  padding: 0.5rem;
  background-color: var(--vermelho);
  height: 6rem;
}

.container_img {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 30%;
  height: 100%;
}

.container_img img {
  width: 70%;
  height: 80%;
}

.divisoria {
  background-color: var(--branco);
  width: 0.15rem;
  height: 80%;
}

.nav {
  display: flex;
  justify-content: center;
  gap: 5rem;
  width: 70%;
}

.nav a {
  color: var(--branco);
  font-size: 20px;
  text-decoration: none;
  padding: 10px;
  border-radius: 15px;
  cursor: pointer;
  font-family: var(--fonte_texto);
}

.nav a:hover {
  background-color: var(--vermelho_escuro);
}


/* Menu */
.icon-menu {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  width: 35px;
  height: 24px;
  cursor: pointer;
  margin-right: 1rem;
}

.line1, .line2, .line3 {
   background-color: #ffffff;
   height: 4px;
   width: 100%;
   border-radius: 2px;
}

.menu-dropdown {
  display: none;
  background-color: #9a1915;
  position: absolute;
  top: 70px;
  right: 20px;
  width: 150px;
  border-radius: 8px;
  z-index: 10;
}

.menu-dropdown ul {
  list-style: none;
  padding: 20px;
  margin: 0;
  flex-direction: column;
}

.menu-dropdown ul li {
  margin: 0.1rem;
}

.menu-dropdown ul li a {
  text-decoration: none;
  font-size: 10px;
  color: #ffffff;
  font-size: 25px;
  display: block;
}

.menu-dropdown ul li a:hover {
  background-color: #5c0202;
  border-radius: 5px;
}

body {
  font-family: Arial, sans-serif;
  background-image: url('/image/dicas/fundo.png');
  /* Use a imagem de fundo fornecida */
  background-size: cover;
  background-position: center;
  background-image: url(../image/dicas/fundo.png);
}


/* quadrinho */

.content {
  color: rgb(0, 0, 0);
  display: flex;
  flex-direction: column;
  align-content: center;
  justify-content: center;
  align-items: center;
  width: 100%;
  gap: 1rem;
  padding: 2rem;
}


.fileira {
  display: flex;
  width: 100%;
  flex-direction: row;
  align-content: center;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}


.card {
  min-width: 30%;
  max-width: 30%;
  display: flex;
  flex-direction: column;
  align-content: center;
  justify-content: center;
  align-items: center;
  width: 50%;




}


.texto {
  text-align: center;
  background: rgba(255, 255, 255, 0.59);
  border-radius: 10px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(6.7px);
  -webkit-backdrop-filter: blur(6.7px);
  border: 1px solid rgba(255, 255, 255, 0.55);
  display: flex;
  flex-direction: row;
  align-content: center;
  justify-content: center;
  align-items: center;
  padding: 0.25rem;
  min-height: 5rem;
  max-height: 5rem;
  width: 50%;
  width: 70%;
  }

  .texto a{
    text-decoration: none;
  }

/* Footer */

.footer-text {
  background-color: #9a1915;
  color: white;

}

.header-nav .nav-link {
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s;
  margin: 6px;
  color: #ffffffff;
}

.footer {
  background-color: #9a1915;
  color: white;
  margin-top: 50px;
}

.footer .icones {
  background-color: #e30613;
}

.senai {
  width: 20%;
  display: inline-block;
  text-align: center;
  padding: 30px 0 20px 0;
  margin-left: 25%;
}

.senai h3 {
  text-align: left;
}

.senai p {
  text-align: left;
}

.sesi {
  width: 20%;
  display: inline-block;
  margin-left: 3%;
  text-align: center;
  padding: 0 0 20px 0px;
}

.sesi h3 {
  text-align: left;
}

.sesi p {
  text-align: left;
}

.footer .icones img {
  display: inline-block;
  margin-left: 25px;
  ;
}

.icones {
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-text {
  background-color: #9a1915;
  color: white;
}



.img {
  width: 25%;
  margin-bottom: 300px;
  align-items: center;
}

.team {
  display: flex;
  justify-content: space-around;
  margin: 0px 0px 50px 0px;
  margin-left: 100px;
  margin-right: 100px;
}

.icones {
  display: flex;
  justify-content: center;
  gap: 10px;
  padding: 10px 0;
  align-items: center;
  margin-left: -135px;
}

/* Para telas com largura máxima de 768px (tablets e dispositivos móveis maiores) */
@media (max-width: 768px) {
  .container_header {
      flex-direction: column;
      align-items: flex-start;
      height: auto;
  }

  .container_img {
      width: 100%;
      justify-content: center;
      margin-bottom: 1rem;
  }

  .nav {
      flex-direction: column;
      gap: 1rem;
      width: 100%;
      align-items: center;
  }

  .icon-menu {
      align-self: flex-end;
      margin-right: 1rem;
  }

  .content .fileira {
      flex-direction: column;
      gap: 1rem;
  }

  .card {
      min-width: 80%;
      max-width: 80%;
  }

  .footer .icones {
      flex-direction: column;
      gap: 1rem;
  }

  .senai, .sesi {
      width: 90%;
      margin-left: 0;
      text-align: center;
  }
}

/* Para telas com largura máxima de 480px (dispositivos móveis pequenos) */
@media (max-width: 480px) {
  .nav {
      display: none;
  }

  .menu-dropdown ul li a {
      font-size: 18px;
  }

  .card {
      min-width: 100%;
      max-width: 100%;
  }

  .texto {
      font-size: 14px;
      min-height: auto;
      max-height: auto;
  }

  .footer .icones {
      gap: 0.5rem;
  }

  .footer-text, .sesi h3, .senai h3 {
      font-size: 14px;
  }
}
