* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Arial', sans-serif;
  background: #fdd700;
  color: #fff;
  min-height: 100vh; /* Garante que a altura mínima seja a da tela */
  display: flex; /* Habilita o Flexbox */
  flex-direction: column; /* Organiza os filhos em coluna */
}

/* Seção principal */
.hero {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Logos no topo */
.logos-topo img {
  max-width: 280px;
  margin: 20px auto;
  display: block;
}

/* Layout de 2 colunas */
.conteudo {
  display: flex;
  width: 100%;
  max-width: 1200px;
  align-items: stretch;
}

/* Coluna esquerda */
.col-esquerda {
  flex: 1;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}

/* Título */
.titulo {
  position: relative;
  display: inline-block;
  margin-bottom: 30px;
}

.img-titulo {
  width: 100%;
  max-width: 450px;
}

.selo-matriculas {
  position: absolute;
  top: 0;
  right: -20px;
  width: 45px;
}

/* Textos */
.col-esquerda h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.col-esquerda p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  line-height: 1.5;
}

.destaque {
  color: #003f9c; /* amarelo destaque */
  font-size: 0.9rem;
}

/* Selos e botão */
/* Selos e botão */
.selos {
  display: flex;
  flex-direction: column;
  align-items: center; /* Centraliza horizontalmente */
  gap: 15px;
}

.selos img {
  max-width: 175px;
}

/* Botão maior */
.selos .botao-inscreva {
  max-width: 250px; /* aumenta o tamanho */
  transition: transform 0.2s ease-in-out;
  cursor: pointer;
}

.selos .botao-inscreva:hover {
  transform: scale(1.05); /* efeito ao passar o mouse */
}

/* Coluna direita */
.col-direita img {
  height: 700px;
  width: 700px;
  object-fit: cover;
  display: block;
}

/* ====== Seção descontos ====== */
.descontos {
  background: #fff;
  padding: 60px 20px;
  flex-grow: 1; /* Faz esta seção ocupar todo o espaço disponível */
}

.conteudo-descontos {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Texto lado esquerdo */
.texto-descontos {
  flex: 1;
  text-align: center;
}

.texto-descontos p {
  font-size: 1.1rem;
  margin: 20px 0;
  color: #333;
}

.texto-descontos .img-descontos {
  max-width: 300px;
}

.texto-descontos .img-data {
  margin-top: 20px;
  max-width: 150px;
}

/* Formulário lado direito */
.formulario {
  flex: 1;
  background: #003f9e; /* azul do Objetivo */
  padding: 30px;
  border-radius: 10px;
  color: #fff;
}

.formulario h2 {
  margin-bottom: 20px;
  text-align: center;
}

.formulario label {
  display: block;
  margin: 10px 0 5px;
}

.formulario input,
.formulario select {
  width: 100%;
  padding: 10px;
  border-radius: 6px;
  border: none;
  margin-bottom: 15px;
}

/* Botão centralizado */
.btn-enviar {
  display: flex;
  justify-content: center;
  background: none;
  border: none;
  margin: 0 auto;
  cursor: pointer;
}

.btn-enviar img {
  max-width: 220px;
  transition: transform 0.2s;
}

.btn-enviar img:hover {
  transform: scale(1.05);
}

/* Caixa da data */
.data-box {
  background: #fdd700; /* azul Objetivo */
  color: #fff;
  font-size: 1.3rem;
  font-weight: bold;
  padding: 15px 15px;
  border-radius: 15px;
  display: inline-block;
  margin: 10px auto;
}

/* Bloco Mais Informações */
.mais-info {
  border: 2px solid #FFD500; /* amarelo */
  border-radius: 10px;
  padding: 20px;
  margin-top: 30px;
  background: #fff;
  text-align: left;
}

.mais-info h3 {
  color: #003f9e;
  font-size: 1.1rem;
  margin-bottom: 15px;
  text-align: center;
}

.mais-info p {
  font-size: 0.8rem;
  color: #333;
  line-height: 1.5;
}
/* ====== Media Queries para responsividade ====== */

@media (max-width: 1024px) {
  .conteudo {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  
  /* Ajusta a imagem dos alunos para que ela apareça e se adapte à tela */
  .col-direita {
    display: block;
    width: 100%;
    margin-top: 30px; /* Adiciona um espaço entre o texto e a imagem */
  }

  .col-direita img {
    width: 100%;
    height: auto;
    object-fit: contain;
  }

  .col-esquerda {
    padding: 20px;
  }
  
  .img-titulo {
    max-width: 350px;
  }

  /* Ajusta o selo de matrículas para que fique no canto superior direito */
  .selo-matriculas {
    position: absolute;
    top: 0;
    right: 0px;
    width: 45px;
    margin-top: 0;
  }
  
  .col-esquerda h1 {
    font-size: 2rem;
  }

  .col-esquerda p {
    font-size: 1.1rem;
  }
  
  /* Faz com que os selos fiquem em coluna, como solicitado */
  .selos {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }
  
  .selos img {
    max-width: 175px;
  }

  /* Ajusta o layout da seção de descontos para uma coluna */
  .conteudo-descontos {
    flex-direction: column;
    gap: 20px;
  }

  .formulario {
    width: 100%;
  }

  .texto-descontos p {
    font-size: 1rem;
    line-height: 1.4;
  }
  
  .mais-info {
    text-align: center;
  }

  .mais-info p {
    font-size: 0.9rem;
    text-align: left;
  }

  .rodape p {
    font-size: 0.8rem;
  }
}
/* ====== Rodapé ====== */
.rodape {
  background: #FFD500;
  text-align: center;
  padding: 20px;
  font-size: 0.9rem;
  color: #003f9e;
  width: 100%;
}

.rodape p {
  margin: 5px 0;
}

.rodape a {
  color: #003f9e;
  text-decoration: none;
  font-weight: bold;
}

/* Ajuste adicional para o rodapé em telas menores */
@media (max-width: 768px) {
  .rodape {
    font-size: 0.8rem;
    padding: 15px;
  }
}

/* style.css */

/* ... código anterior ... */

.formulario h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 20px;
  color: #fff;
}

.formulario .btn-inscrever {
  background: none;
  border: none;
  display: block;
  margin: 0 auto;
  cursor: pointer;
  padding: 0; /* Remove o padding padrão do botão */
}

/* Garante que o efeito de transição funcione */
.formulario .btn-inscrever .botao-inscreva {
  max-width: 250px;
  transition: transform 0.2s ease-in-out;
}

.formulario .btn-inscrever .botao-inscreva:hover {
  transform: scale(1.05);
}

/* Adiciona o smooth scroll para todos os links */
html {
  scroll-behavior: smooth;
}

.logo-paragrafo {
  height: 14px;       /* força a altura fixa */
  width: auto;        /* mantém a proporção */
  vertical-align: middle; /* alinha com o texto */
  display: inline-block;
}

/* Fundos e textos */
.fundo-branco {
  background: #fff;
}

.texto-azul {
  color: #004AAD;
}

.fundo-amarelo {
  background: #FFD600; /* Amarelo Objetivo */
  color: #002B5C;
  border-radius: 12px;
  padding: 40px 20px;
}

/* Seções gerais */
.secao {
  padding: 40px 20px;
  text-align: center;
}

.secao h2 {
  font-size: 1.8rem;
  margin-bottom: 20px;
}

.lista-check,
.lista-estrela,
.lista-prova {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 600px;
  text-align: left;
}

.lista-check li,
.lista-estrela li,
.lista-prova li {
  margin: 10px 0;
  font-size: 1.1rem;
}

/* CTA */
.btn-cta {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 24px;
  font-size: 1.2rem;
  font-weight: bold;
  background: #004AAD;
  color: #fff;
  border-radius: 8px;
  text-decoration: none;
  transition: 0.3s;
}

.btn-cta:hover {
  background: #002B5C;
}

/* Responsividade */
@media (max-width: 768px) {
  .secao h2 {
    font-size: 1.5rem;
  }
  .btn-cta {
    width: 100%;
    font-size: 1rem;
  }
}
