/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  background: #fff;
  color: #333;
}
/* SLIDER */
.hero-slider {
  margin-top: 40px;
  position: relative;
  height: 120vh; /* aumentada de 90vh para 100vh */
  overflow: hidden;
}
.slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  z-index: 0;
}
.slide::before {
  content: '';
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.3); /* camada escura sobre a imagem */
  z-index: 1;
}
.slide.active {
  opacity: 1;
  z-index: 1;
}
.slide-content {
  position: absolute;
  bottom: 33%; /* sobe todo o bloco */
  left: 10%;
  color: white;
  max-width: 800px;
  z-index: 2; /* garantir que o conteúdo fique acima da camada escura */
}
.slide-content h1 {
  font-size: 3.3rem;
  font-weight: 600;
  margin-bottom: 1rem;
  transform: translateY(-35px); /* sobe o h1 */
}
.btn-agendar {
  margin-top: 10px;
  display: inline-flex;
  align-items: center;
  background: linear-gradient(to right, #1d1709, #775e19, #D5006D);
  color: white;
  font-weight: 600;
  padding: 10px 18px;
  border-radius: 6px;
  text-decoration: none;
  font-size: 1.2rem;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  width: fit-content;
}
.btn-agendar i {
  margin-right: 8px;
  font-size: 1.5rem;
}
.slide-content p {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  transform: translateY(-35px); /* sobe o h1 */
}
/* RESPONSIVO */
@media (max-width: 768px) {
  .nav-desktop {
    display: none;
  }
  .slide-content h1 {
    font-size: 1.5rem;
    margin-top: 14px!important;
  }
   .container {
    flex-direction: column;
    align-items: flex-start;
  }

  .slide-content ul {
    font-size: 0.9rem;
  }
}

@media (max-width: 1024px) {
  .hero-slider {
    margin-top: 40px;
    position: relative;
    height: 60vh; /* aumentada de 90vh para 100vh */
    overflow: hidden;
  }

  .slide-content {
    position: absolute;
    bottom: 20%; /* sobe todo o bloco */
  }
  .btn-agendar {
    margin-top: 10px;
    display: inline-flex;
    align-items: center;
    background: linear-gradient(to right, #1d1709, #775e19, #D5006D);
    color: white;
    font-weight: 600;
    padding: 10px 18px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 1rem;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    width: fit-content;
  }
  .btn-agendar i {
    margin-right: 8px;
    font-size: 1rem;
  }
}
.cards-section {
  background-color: #f7f7f7;
  padding: 60px 20px;
  text-align: center;
}
.cards-section .container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}
.cards-section .card {
  background-color: white;
  border-radius: 15px;
  padding: 30px 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  cursor: pointer;
}
.cards-section .card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}
.cards-section .card i {
  font-size: 40px;
  color: #D5006D;
  margin-bottom: 15px;
}
.cards-section .card h3 {
  font-size: 20px;
  margin-bottom: 10px;
  font-weight: bold;
  color: #333;
}
.cards-section .card p {
  font-size: 15px;
  color: #555;
}
.sobre-nos {
  padding: 100px 100px;
  background: #0e0d0d;
  overflow: hidden;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s ease, transform 1s ease;
}
.sobre-nos.aparecer {
  opacity: 1;
  transform: translateY(0);
}
.sobre-nos .texto,
.sobre-nos .imagem {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s ease, transform 1s ease;
}
.sobre-nos.aparecer .texto,
.sobre-nos.aparecer .imagem {
  opacity: 1;
  transform: translateY(0);
}
.sobre-nos .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
}
.sobre-nos.aparecer .container {
  opacity: 1;
  transform: translateY(0);
}
.sobre-nos .texto {
  flex: 1;
  min-width: 280px;
}
.sobre-nos .texto h2 {
  font-size: 28px;
  margin-bottom: 50px;
  color:#fff;
}
.sobre-nos .texto p {
  font-size: 19px;
  color: #fff;
  margin-bottom: 20px;
text-align: justify;
}
.sobre-nos .texto ul {
  list-style: none;
  padding: 0;
}

.sobre-nos .texto ul li {
  font-weight: 600;
  color: #fff;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 19px;
}

.sobre-nos .texto ul li i {
  color: #D5006D;
  font-size: 18px;
}

.sobre-nos .imagem {
  flex: 1;
  min-width: 280px;
  text-align: center;
}

.sobre-nos .imagem img {
  width: 100%;
  max-width: 450px;
  height:350px;
  border-radius: 50%;
}

.sobre-nos .credito {
  font-size: 12px;
  margin-top: 10px;
  color: #777;
}

.sobre-nos .credito a {
  color: #1abc9c;
  text-decoration: none;
}

/* RESPONSIVO PARA MÓVEIS */
@media (max-width: 768px) {
  .sobre-nos {
    padding: 60px 20px;
  }

  .sobre-nos .container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .sobre-nos .texto,
  .sobre-nos .imagem {
    flex: none;
    width: 100%;
  }

  .sobre-nos .texto p,
  .sobre-nos .texto ul li {
    font-size: 17px;
  }

  .sobre-nos .imagem img {
    max-width: 300px;
    height: auto;
    margin-bottom: 20px;
  }

  .sobre-nos .texto h2 {
    font-size: 24px;
    margin-bottom: 30px;
  }
}

.formacao-section {
  padding: 60px 20px;
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

.titulo {
  font-size: 2.5rem;
  color: #D5006D;
  margin-bottom: 40px;
  text-align: left;
}

.formacoes-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.formacao-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
  padding: 20px;
  text-align: left;
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s ease;
}

.formacao-card img {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 15px;
  display: block;
}
.tag {
  background: #D5006D;
  color: #fff;
  font-size: 0.75rem;
  padding: 5px 12px;
  border-radius: 20px;
  display: inline-block;
  margin-bottom: 10px;
  font-weight: bold;
}
.formacao-card h3 {
  color: #141414;
  font-size: 1.25rem;
  margin-bottom: 10px;
}
.formacao-card p {
  font-size: 0.95rem;
}
/* Transição ativada via JavaScript */
.formacao-card.ativo {
  opacity: 1;
  transform: translateY(0);
}
/* Responsividade extra para telas pequenas */
@media (max-width: 768px) {
  .titulo {
    font-size: 2rem;
  }
  .formacao-card {
    padding: 15px;
  }
  .formacao-card h3 {
    font-size: 1.1rem;
  }
  .formacao-card p {
    font-size: 0.9rem;
  }
}
.metricas-section {
  background-color: #ffffff;
  padding: 60px 20px;
  color: white;
  text-align: center;
}
.container-metrica {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 20px;
  max-width: 1200px;
  margin: auto;
}
.card-metrica {
  background-color: #1a1919;
  border: 2px solid #ffffff;
  border-radius: 10px;
  padding: 40px 30px;
  width: 250px;
  transition: transform 0.3s ease;
}
.card-metrica:hover {
  transform: translateY(-5px);
}
.card-metrica h2 {
  font-size: 3rem;
  color: #fff;
  margin-bottom: 10px;
  font-weight: bold;
}
.card-metrica p {
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.9rem;
  color: #ccc;
}