@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: #f4f4f4;
}


/* 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 */

.banner {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 40px;
  height: 500px;
  background-image: url('images/banners/banner-senae-apple2.webp'); /* Substitua pelo nome real da imagem do banner */
  background-size: cover;
  background-position: center;
  position: relative;
  color: #fff;
}

.texto-banner {
  max-width: 500px;
  text-align: left;
}

.texto-banner h1 {
  font-size: 50px;
  line-height: 1.2;
  font-weight: bold;
  color: white;
}

.texto-banner h1 span {
  color: #ffb42b;
 
}

.texto-banner p {
  margin-top: 10px;
  font-size: 20px;
  line-height: 1.5;
  color: white;
  
}

/* Section 2 */

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding: 40px;
}
@media (max-width: 1000px) {
  .cards {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 500px) {
  .cards {
    grid-template-columns: repeat(1, 1fr);
    padding: 20px;
  }
}

.card {
  height: 200px;
  background-size: cover;
  background-position: center;
  position: relative;
  cursor: pointer;
  text-decoration: none;
  color: white;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-radius: 5px; /* Opcional: canto arredondado leve */
}

.card:hover {
  transform: scale(1.03);
}

.card .overlay {
  background: rgba(0, 0, 0, 0.192);
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding-left: 20px;
  border-radius: 5px; /* Opcional: canto arredondado leve */
}

.card h2 {
  font-size: 30px;
  font-weight: bold;
  text-align: left;
  color: white;
  line-height: 1.3;
}

.card h2 span {
  color: #ffb42b;
}


/* Section 3 */


.negocios-section {
  padding: 40px 20px;
  text-align: center;
  background-color: #f8f9fa;
}

.negocios-titulo {
  color: #003366;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 30px;
}

.negocios-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  justify-content: center;
}
@media (max-width: 1000px) {
  .negocios-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 500px) {
  .negocios-cards {
    grid-template-columns: repeat(1, 1fr);
  }
}

.negocio-card {
  width: 100%;
  background-color: white;
  border-radius: 10px;
  overflow: hidden;
  text-decoration: none;
  color: #003366;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.negocio-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.negocio-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.negocio-card p {
  padding: 15px;
  font-size: 17px;
  line-height: 1.4em;
}

/* Section 4 */

.materias-section {
  background-color: #004a99;
  padding: 50px 20px;
  color: #fff;
  text-align: center;
}

.materias-titulo {
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 40px;
  color: #ffffff;
}

.materias-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
@media (max-width: 1000px) {
  .materias-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 500px) {
  .materias-grid {
    grid-template-columns: repeat(1, 1fr);
  }
}

.materia-card {
  background-color: #fff;
  color: #003366;
  border-radius: 10px;
  text-decoration: none;
  overflow: hidden;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  max-width: 100%;
}

.materia-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.materia-card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
}

.materia-card p {
  padding: 15px;
  font-weight: 600;
  font-size: 15px;
  text-transform: uppercase;
}

.materias-btn-wrapper {
  margin-top: 40px;
}

.materias-btn {
  display: inline-block;
  background-color: #fff;
  color: #004a99;
  padding: 12px 30px;
  font-weight: 600;
  border-radius: 6px;
  text-decoration: none;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.materias-btn:hover {
  background-color: #004a99;
  color: #fff;
  border: 1px solid #fff;
}

/* Section 5 */


.banco-empregos {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  gap: 40px;
  padding: 60px 40px;
  background-color:rgb(255, 255, 255);
}

.empregos-img img {
  width: 100%;
  max-width: 500px;
}

.empregos-texto {
  max-width: 500px;
}

.empregos-texto h2 {
  font-size: 28px;
  color: #002f6c;
  margin-bottom: 20px;
}

.empregos-texto p {
  font-size: 16px;
  line-height: 1.6;
  color: #333;
}

.botao-cadastro {
  display: inline-block;
  margin-top: 25px;
  padding: 14px 30px;
  background-color: #0047ab;
  color: white;
  font-weight: bold;
  text-decoration: none;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: background 0.3s ease;
}

.botao-cadastro:hover {
  background-color: #002f6c;
}

.botao-cadastro p{
    color: #fff;
    font-size: 14px;
}

/* Section 6 */

.nossos-apoiadores {
  padding: 60px 40px;
  background-color: #fff;
  text-align: center;
}

.nossos-apoiadores h2 {
  font-size: 26px;
  color: #002f6c;
  margin-bottom: 30px;
}

.logos-apoiadores {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 10px;
  justify-items: center;
  align-items: center;
}

.logos-apoiadores img {
  max-width: 120px;
  height: auto;
  padding: 10px;
}
@media (max-width: 900px) {
  .navbar {
    flex-direction: column;
}

  .logo-p p {
    font-size: 11px;
}
 
.titulo-escritorio {
    color: #fff;
    font-size: 26px;
    font-weight: 700;
    text-transform: uppercase;
    margin-top: 25px;
}

.empregos-texto h2 {
    font-size: 25px;
}

.empregos-texto p {
    font-size: 15px;
    text-align: center;
}

.botao-cadastro {
    padding: 14px 24px;
}

.botao-cadastro p{
    color: #fff;
    font-size: 14px;
}
.banco-empregos {
    flex-wrap: wrap;
    text-align: center;
}
.logos-apoiadores {
  grid-template-columns: repeat(auto-fit, minmax(70px, 1fr));
  gap: 25px;

}

.logos-apoiadores img {
  max-width: 100px;
  height: auto;
  padding: 10px;
}
}

/* footer */

footer {
    background-color: #064081;
    text-align: center;
    padding: 50px;
    font-size: 18px;
    color: #ffffff;
}