body {
    font-family: Arial, sans-serif;
    background: #061122;
    color: #fff;
    margin: 0;
}

/* HERO*/

.hero {
  height: 100vh;
  padding: 40px 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  background: linear-gradient(
    135deg,
    #002855,
    #008f72
  );

  text-align: center;
}

/* TÍTULO COM DESTAQUE MODERNO */
.titulo-hero {
  font-size: 45px;
  font-weight: bold;
  color: #efffef;
  margin-top: 10px;
  text-shadow: 0 4px 10px rgba(0,0,0,0.4);
  letter-spacing: 1px;
}

/* IMAGENS */
.imagens-lado {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  width: 70%;
}

.imagem-topo {
  width: 28%;
  height: auto;
  border-radius: 18px;
  /* sombra suave moderna */
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.35);
  /* moldura fina na cor temática */
  border: 3px solid rgba(255, 255, 255, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.imagem-fabio {
  width: 28%;                /* mesmo tamanho das outras imagens */
  height: 56%;             /* altura que você quer exibir (ajuste livre) */
  object-fit: cover;         /* corta o excesso e mantém centralizado */
  object-position: center;   /* posiciona o corte no centro */
  border-radius: 18px;       /* mantém o design */
  /* sombra suave moderna */
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.35);
  /* moldura fina na cor temática */
  border: 3px solid rgba(255, 255, 255, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.imagem-edval {
  width: 28%;
  height: 55%;
  border-radius: 18px;
  /* sombra suave moderna */
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.35);
  /* moldura fina na cor temática */
  border: 3px solid rgba(255, 255, 255, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}


/* EFEITO HOVER PROFISSIONAL */
.imagem-topo:hover {
  transform: translateY(-10px) scale(1.03);
  border-color: #00b894; 
}

.imagem-fabio:hover {
  transform: translateY(-10px) scale(1.03);
  border-color: #00b894; 
}

.imagem-edval:hover {
  transform: translateY(-10px) scale(1.03);
  border-color: #00b894; 
}

/* FORMULÁRIO */

.container {
  padding: 40px 20px;
  max-width: 600px;
  margin: 0 auto;
}

input,
select {
    width: 90%;
    padding: 12px;
    margin: 10px 0;
    border: 1px solid #fff;
    border-radius: 5px;
    font-size: 16px;
}

input:focus,
select:focus {
    outline: none;
  border-color: #fff;
  box-shadow: 0 0 4px #fff;
}

/* BOTÃO */
button {
    width: 95%;
    padding: 12px;
    background-color: #45b0e5;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    margin-top: 10px;
}

button:hover {
    background-color: #0b2b5b;
}

/* OUTROS ITENS */
.checkbox-termos {
  display: flex;
  align-items: center;
  text-align: center;
  margin-top: 20px;
  font-size: 14px;
  color: #fff;
}

.checkbox-termos input[type="checkbox"] {
  margin-right: 10px;
  width: 16px;
  height: 16px;
}

.checkbox-termos label {
  line-height: 1.4;
}

.checkbox-termos a {
  color: #45b0e5;
  text-decoration: underline;
}

.checkbox-termos a:hover {
  text-decoration: none;
}

.texto{
  text-align: center;
}

h2{
    text-align: center;
}

/* RESPONSIVO */
@media (max-width: 900px) {

  .hero {
    height: auto;
    padding: 30px 10px;
  }

  .imagens-lado {
    flex-direction: column;
    gap: 25px;
    width: 100%;
  }

  .imagem-edval {
    width: 50%;
    height: auto;
    object-fit: cover;
    border-radius: 18px;
  }

  .imagem-fabio {
    width: 60%;
    height: 150px;
    object-fit: cover;
    border-radius: 18px;
  }

  .imagem-topo {
    width: 40%;
    height: auto;
    border-radius: 18px;
  }

  .titulo-hero {
    font-size: 28px;
    margin-top: 15px;
  }
  h2{
    margin-top:-15px;
  }
}

