/* RESET BÁSICO */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html, body {
  width: 100%;
  height: 100%;
  font-family: Arial, sans-serif;
}

/* HEADER */
.site-header {
  width: 100%;
  background-color: #fff;
  display: flex;
  align-items: center;
  padding: 10px 20px;
  /* Sombra leve */
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}
.header-left {
  /* Se quiser alinhar algo à esquerda sem nada à direita, tá ok */
}
.header-logo-img {
  height: 40px; /* Ajuste conforme sua logo */
  width: auto;
}

/* HERO CONTAINER */
.hero {
  display: flex;
  width: 100%;
  height: calc(100vh - 70px); 
  /* Subtrai a altura do header (ajuste se quiser) 
     Se o header tem ~70px total, então sobram ~calc(100vh - 70px). */
}

/* LADO ESQUERDO: IMAGEM FIXA */
.hero-left {
  flex: 1;
  background: url("../img/anima.jpg") no-repeat center center;
  background-size: cover;
  position: relative;
  /* A altura deste container segue a altura do .hero */
}

/* LADO DIREITO: CONTEÚDO ROLÁVEL */
.hero-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  background: linear-gradient(180deg, #5b2e92 0%, #803ac3 100%);
}

/* CONTEÚDO INTERNO DO LADO DIREITO */
.hero-content {
  padding: 40px;
  max-width: 500px; /* Limite de largura */
  margin: 0 auto;   /* Centraliza horizontal */
  color: #fff;
}

/* Título principal (opcional) */
.hero-title {
  font-size: 2rem;
  margin-bottom: 20px;
}

/* Seção do Formulário */
.form-section h2 {
  margin-bottom: 10px;
  font-size: 1.3rem;
}
.form-section p {
  margin-bottom: 20px;
  line-height: 1.4;
}

.input-group {
  margin-bottom: 20px;
}
.input-group label {
  display: block;
  margin-bottom: 5px;
  font-weight: bold;
}
.input-group input {
  width: 100%;
  padding: 10px;
  border: none;
  border-radius: 4px;
}

/* Botão Acessar */
.btn-acessar {
  background-color: #6df3b2;
  color: #3a0057;
  font-weight: bold;
  border: none;
  border-radius: 4px;
  padding: 12px 20px;
  cursor: pointer;
  transition: background-color 0.3s;
}
.btn-acessar:hover {
  background-color: #48c08b;
}

/* Mensagem de Erro */
.erro {
  color: #ffbbbb;
  margin-top: 10px;
}

/* FOOTER (rodapé) - 3 colunas */
.site-footer {
  width: 100%;
  background-color: #f1f1f1;
  display: flex;
  justify-content: space-between; /* espaça colunas */
  align-items: center;
  padding: 10px 20px;
  box-shadow: 0 -2px 5px rgba(0,0,0,0.1);
}

.footer-left,
.footer-center,
.footer-right {
  display: flex;
  align-items: center;
}

.footer-left {
  flex: 0 0 auto; /* Largura fixa, só o logo */
}
.footer-center {
  flex: 1; /* Central expand */
  justify-content: center;
  text-align: center;
}
.footer-right {
  flex: 0 0 auto; 
  justify-content: flex-end;
}

.footer-logo-img {
  height: 30px; /* Ajuste conforme sua logo */
  width: auto;
  margin-right: 10px; 
}
.footer-center p {
  font-size: 0.85rem;
  line-height: 1.2;
  color: #333;
}
.footer-right p {
  font-size: 0.85rem;
  color: #333;
}

/* RESPONSIVIDADE */
@media (max-width: 768px) {
  .hero {
    flex-direction: column;
    height: auto; /* Para não ficar travado se for muito conteúdo */
  }
  .hero-left {
    width: 100%;
    height: 200px; /* Exemplo de altura mínima para a imagem */
    flex: none;
  }
  .hero-right {
    width: 100%;
    flex: none;
    height: auto;
  }

  .hero-content {
    max-width: 90%;
  }

  /* Footer em coluna, se quiser */
  .site-footer {
    flex-direction: column;
    align-items: flex-start;
  }
  .footer-center {
    justify-content: flex-start;
    margin-top: 10px;
  }
  .footer-right {
    margin-top: 10px;
  }
}


.close {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
}
.close:hover,
.close:focus {
  color: black;
  cursor: pointer;
}

/* Modal */
.modal {
  display: none; 
  position: fixed;
  z-index: 999; 
  left: 0;
  top: 0;
  width: 100%; 
  height: 100%; 
  overflow: auto; 
  background-color: rgba(0,0,0,0.4); 
}

.modal-content {
  background-color: #fefefe;
  margin: 10% auto; 
  padding: 20px;
  border: 1px solid #888;
  width: 80%; 
}


