@import url('https://fonts.googleapis.com/css2?family=Carattere&family=Noto+Serif+Kannada:wght@300&display=swap');

.conteudo {
  max-width: 1100px;
  margin: 0 auto;
  padding: 10px;
}

.perfil {
  padding-top: 80px;
}

.banner {
  display: flex;
  justify-content: center;
}

/* Perfil */
.perfil-icon {
  display: flex;
  justify-content: center;
}

.profile {
  margin-top: 200px;
  border-radius: 50%;
  width: 150px;
  height: 150px;
}

/* Nome */
.name {
  display: flex;
  justify-content: center;
  margin-top: 10px;
  font-size: 24px;
  margin-bottom: 10px;
}

/* Adaptar para dispositivos móveis */
@media screen and (max-width: 600px) {
  .profile {
    float: none;
    margin: 0 auto;
    display: block;
    width: 100px;
    height: 100px;
    margin-top: 50px;
  }

  .name {
    text-align: center;
  }
}

.dublador-card {
  width: 45%;
  /* Ajuste conforme necessário */
  display: inline-block;
  vertical-align: top;
  border: 1px solid #ccc;
  border-radius: 5px;
  padding: 10px;
  margin: 0 2.5%;
  /* Espaçamento entre os cards */
  box-sizing: border-box;
}

.dublador-card img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  margin: 10px auto;
  display: block;
}

.dublador-card h2 {
  text-align: center;
}

.dublador-card p {
  text-align: center;
  margin: 10px 0;
}

.photo-column {
  padding-right: 5px;
  padding-left: 5px;
}

.img-fluid {
  padding-bottom: 10px;
}

.titulo-secao {
  margin-top: 30px;
  margin-bottom: 20px;
  font-size: 35px;
  border-bottom: solid 1px #f2f2f2;
}

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

.photo-column img:hover {
  transition: transform 0.3s ease;
  transform: scale(1.1);
}

.faq-container {
  max-width: 900px;
  font-family: Arial, sans-serif;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  padding: 10px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  position: relative;
  overflow: hidden;
}

.faq-item:last-child {
  margin-bottom: 0;
}

.faq-item:hover {
  background-color: transparent;
}

.faq-question {
  margin-top: 0;
  margin-bottom: 5px;
  /* Reduzindo o espaço inferior da pergunta */
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 20px;
}

.faq-answer {
  margin-top: 0;
  padding-top: 0;
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease, opacity 0.5s ease;
  font-size: 15px;
}

.arrow-icon {
  transition: transform 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 1000px;
  opacity: 1;
  margin-top: 10px;
}

.faq-item.active .arrow-icon {
  transform: rotate(180deg);
}