@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900&display=swap');

body {
  font-family: 'Poppins', sans-serif;
  margin: 0;
  padding: 0;
  background: linear-gradient(to bottom, #fff170 0%, #ffeb8f 30%, rgb(255, 225, 91) 60%, #ffdd45 100%);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  color: #333;
}

/* Banner topo */
.carousel {
  position: relative;
  width: 100%;
  max-width: 1000px;
  height: 600px; /* ajuste conforme quiser */
  margin: 0 auto 2em auto;
  overflow: hidden;
  border-radius: 10px;
}

.carousel-inner img {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 600px;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
  user-select: none;
  pointer-events: none;
}

.carousel-inner img.active {
  opacity: 1;
  pointer-events: auto;
  position: relative;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(212, 175, 55, 0.7);
  border: none;
  color: white;
  font-size: 2.5em;
  padding: 0 0.3em;
  cursor: pointer;
  border-radius: 50%;
  user-select: none;
}

.carousel-btn.prev {
  left: 1em;
}

.carousel-btn.next {
  right: 1em;
}

.carousel-btn:hover {
  background-color: rgba(212, 175, 55, 0.9);
}

/*fim do banner carrossel */

#equipe-estacio {
  max-width: 1000px;  /* ou qualquer largura que quiser */
  margin: 0 auto;     /* centraliza horizontalmente */
  background-color: #fff8dc;
  padding: 2em 1em;
  text-align: center;
  border-radius: 10px;
  margin-top: 30px;
}


#equipe-estacio h2 {
  font-size: 2em;
  color: #d4af37;
  margin-bottom: 2em;
}

.membro {
  margin-bottom: 2em;
}

.membro img {
  width: 150px;
  height: 150px;
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid #d4af37;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.membro h3 {
  margin: 0.6em 0 0.2em;
  font-size: 1.1em;
  color: #333;
}

.membro p {
  margin: 0;
  font-size: 0.95em;
  color: #666;
}

/* Destaque para o diretor */
.membro.destaque {
  margin-bottom: 3em;
}

.membro.destaque {
  margin: 0 auto 3em auto; /* topo:0, horizontal:auto, base:3em */
  width: 180px; /* mesma largura da imagem */
  text-align: center;
}


/* Grade da equipe */
.grid-equipe {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2em;
  max-width: 1000px;
  margin: 0 auto;
}

.membro {
  width: 160px;
  text-align: center;
}
.foto-membro {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 0.5em;
  border: 3px solid #facc00;
}




/* Responsividade */
@media (max-width: 992px) {
  #banner_abaut_us {
    height: 400px;
    background-size: contain;
  }
}

@media (max-width: 600px) {
  #banner_abaut_us {
    height: 250px;
    background-size: contain;
  }
}

/* Introdução */
.intro-quem-somos {
  background-color: #fff3d1;
  padding: 2em 1em;
  text-align: center;
  color: #444;
  font-size: 1.2em;
  max-width: 1000px;
  width: 100%;
  margin: 2em auto 0;
  border-radius: 10px;
  box-shadow: 0 3px 12px rgba(0,0,0,0.05);
}

.intro-quem-somos h2 {
  font-size: 1.8em;
  color: #d4af37;
  margin-bottom: 1em;
}

/* Seção principal */
#sobre-nos {
  padding: 3em 2em;
  max-width: 1000px;
  margin: 4em auto;
  background-color: #fff8dc;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  line-height: 1.8;
  color: #333;
}

#sobre-nos h2 {
  text-align: center;
  color: #d4af37;
  margin-bottom: 1.5em;
  font-size: 2.6em;
}

#sobre-nos p {
  font-size: 1.2em;
  margin-bottom: 1.5em;
  text-align: justify;
}

#sobre-nos a {
  color: #d4af37;
  text-decoration: none;
  font-weight: 600;
}

#sobre-nos a:hover {
  text-decoration: underline;
}

/* Citação / bloco de destaque */
blockquote {
  background-color: #fff7c2;
  border-left: 5px solid #d4af37;
  padding: 1em 1.5em;
  margin: 2em 0;
  font-style: italic;
  border-radius: 6px;
}

blockquote footer {
  text-align: right;
  font-weight: bold;
  margin-top: 1em;
  font-style: normal;
}
