/* Reset básico */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  background-color: #fff;
}

.secao-combo {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.fundo-section {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

/* Cabeçalho */
.cabecalho-unico {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
}

.nome-turma2 {
  width: 90%;
  max-width: 750px;
  height: auto;
  display: block;
}

/* Conteúdo principal */
.conteudo-principal {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding: 2rem 2rem 0 2rem;
  position: relative;
  flex-wrap: wrap;
  gap: 2rem;
  margin-top: -2rem;
}

.avatars {
  max-height: 460px;
  height: auto;
}

/* Conteúdo central (combo + preço + botão) */
.conteudo-central {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.2rem;
  margin-top: 0;
}

.t-combo {
  max-width: 580px;
  width: 100%;
  margin-top: 0rem; /* ou ajuste fino como -2rem */
}

.preco-combo {
  max-width: 220px;
  width: 100%;
  margin-top: -30px;
}

.botao-matricula {
  max-width: 230px;
  width: 100%;
  cursor: pointer;
}

/* Robô IA */
.robo-ia {
  position: absolute;
  right: 12%;
  bottom: 1.5rem;
  width: 200px;
  *z-index: 1;
}

/* Separador */
.separador {
  width: 100%;
  display: block;
  margin-top: 0rem;
}

/* === MEDIA QUERIES === */

/* Telas até 768px (tablets) */
@media screen and (max-width: 768px) {
  .conteudo-principal {
    flex-direction: column;
    align-items: center;
    padding-top: 1rem;
    margin-top: 0;
  }

  .avatars {
    max-height: 300px;
    margin-bottom: 1rem;
  }

  .t-combo {
    max-width: 90%;
  }

  .robo-ia {
    position: relative;
    right: auto;
    bottom: auto;
    width: 180px;
    margin-top: 2rem;
  }
}

/* Telas até 480px (celulares) */
@media screen and (max-width: 480px) {
  .conteudo-principal {
    flex-direction: column;
    align-items: center;
    margin-top: 0;
  }

  .avatars {
    max-height: 320px;
    margin-bottom: 0;
  }

  .t-combo {
    max-width: 100%;
  }

  .robo-ia {
    position: relative;
    width: 180px;
    display: block;
    margin: 2rem auto 0 auto;
  }
}

/* Seção 2: Turmas */
.secao-turmas {
  position: relative;
  width: 100%;
  background-image: url("../img/fdo_section02.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top center;
  padding: 3rem 1rem 5rem 1rem;
  color: #000;
  overflow: hidden;
}

.fundo-turmas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  min-height: 100%;
  z-index: -1;
}

.turma {
  max-width: 900px;
  margin: 0 auto 2.5rem auto;
  text-align: center;
}

.titulo-turma {
  max-width: 600px;
  width: 90%;
  margin: 0 auto 1rem auto;
  display: block;
}

.investimento {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0.8rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}

.icone-investimento {
  width: 80px;
  height: auto;
  margin-top: 0.3rem;
}

.texto-investimento p {
  margin: 0.25rem 0;
  font-size: 1rem;
  text-align: left;
}

.botoes {
  display: flex;
  justify-content: center;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.botao {
  width: 160px;
  height: auto;
  cursor: pointer;
}

.separador-turmas {
  width: 100%;
  max-width: 800px;
  margin: 1rem auto 0 auto; /* vertical menor */
  display: block;
}
.botao-whatsapp {
  width: 200px;
  margin: 1rem auto 0 auto;
  display: block;
  cursor: pointer;
}

/*Rodapé */

.rodape {
  background: url("../img/fdo.jpg") no-repeat center center fixed;
  background-size: cover;
  color: white;
  padding: 40px 20px 30px;
  text-align: center;
}

.slogan-final {
  color: #013601;
  font-weight: bold;
  font-size: 22px;
  margin-bottom: 30px;
}

.info-container {
  max-width: 600px;
  margin: 0 auto 30px auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  text-align: left;
}

.logo-eda img {
  width: 250px;
}

.endereco {
  font-size: 14px;
  line-height: 1.5;
  max-width: 400px;
  color: #013601;
}

.duplo-tachado {
  position: relative;
  display: inline-block;
  text-decoration: line-through;
  text-decoration-thickness: 2px;
  text-decoration-color: #c00; /* opcional: cor visível */
}
