/* Importação das fontes */
@import url('https://fonts.googleapis.com/css2?family=League+Gothic&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@700&display=swap');

/* Fundo preto e texto branco para toda a página */
body {
  background-color: #000;
  color: #ffffff;
  font-family: 'Raleway', Arial, sans-serif; /* Dumond substituída por Raleway */
  margin: 0;
  scroll-behavior: smooth;
  font-weight: 700;
}

/* Cabeçalho com logo e ícones */
.topo {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #000;
  padding: 20px 40px;
}

.logo img {
  max-height: 140px;
}

.menu .icons {
  list-style: none;
  display: flex;
  gap: 20px;
  margin: 0;
  padding: 0;
}

.menu .icons li a {
  color: #ffffff;
  font-size: 1.5rem;
  transition: 0.3s;
}

.menu .icons li a:hover {
  color: #FFBD59;
}

/* Seções gerais */
section {
  padding: 60px 40px;
}

/* Títulos com League Gothic e centralizados */
h1, h2, h3, h4, h5, h6, .titulo-depoimento {
  font-family: 'League Gothic', Arial, sans-serif;
  font-weight: normal;
  text-align: center;
  font-size: 3.5rem;
  color: #FFBD59;
}

/* Depoimentos */
#depoimentos {
  padding: 60px 20px;
  background-color: #0a0a0a;
  text-align: center;
  overflow: hidden;
}

.titulo-depoimento {
  margin-bottom: 40px;
  letter-spacing: 1px;
}

/* Carrossel que mostra 1 vídeo por vez */
.carrossel-depoimentos {
  position: relative;
  max-width: 320px;
  height: 570px;
  margin: 0 auto;
}

.video-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: none;
  transition: opacity 0.5s ease;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 0 20px rgba(255, 189, 89, 0.3);
}

.video-container.active {
  display: block;
}

.video-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* Formulário de contato */
#contato {
  text-align: left;
}

.contact-form {
  max-width: 500px;
  margin-bottom: 30px;
}

.contact-form label {
  display: block;
  margin-top: 10px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 10px;
  margin-top: 5px;
  border-radius: 5px;
  border: 1px solid #ccc;
  background-color: #222;
  color: white;
  font-family: 'Raleway', Arial, sans-serif;
}

.contact-form button {
  margin-top: 15px;
  padding: 10px 20px;
  background: white;
  color: black;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.contact-form button:hover {
  background: #FFBD59;
}

/* Botões de redes sociais (menu e rodapé) */
.icons {
  list-style: none;
  justify-content: center;
  display: flex;
  gap: 20px;
  margin: 20px 0;
  padding: 0;
}

.icons li a {
  color: white;
  font-size: 3.0rem;
  transition: 0.3s;
}

.icons li a:hover {
  color: #FFBD59;
}

/* Rodapé */
footer {
  background: #111;
  color: white;
  text-align: center;
  padding: 20px;
  font-family: 'Raleway', Arial, sans-serif;
}

/* RESPONSIVO */

/* Telas até 480px (celulares) */
@media screen and (max-width: 480px) {
  #depoimentos {
    padding: 40px 10px;
  }

  .titulo-depoimento {
    font-size: 2.5rem;
    margin-bottom: 30px;
  }

  .carrossel-depoimentos {
    max-width: 100%;
    height: 90vh;
  }

  .video-container {
    border-radius: 0;
    box-shadow: none;
  }

  .video-container iframe {
    height: 90vh;
  }

  section {
    padding: 40px 15px;
  }

  .contact-form {
    max-width: 100%;
  }
}

/* Telas maiores - Desktop e tablets */
@media screen and (min-width: 768px) {
  .carrossel-depoimentos {
    max-width: 320px;
    height: 570px;
  }

  .titulo-depoimento {
    font-size: 3.5rem;
  }
}
