/* ===== Estilos base ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}


p {
    font-family:  'Inter';
}


body {
  background-color: #fefefe;
  font-family: 'Poppins', sans-serif;
  min-height: 100vh;
  display: flex;
  flex-direction: column; /* empilha tudo em coluna */
  justify-content: space-between; /* empurra o rodapé para o fim */
}

[vw] {
  z-index: 9999999;
}

[vw-access-button] {
    transform: scale(1.2);
    transform-origin: bottom right;
  bottom: 50%; /* muda a posição */
  right: 50px;
}

/* ===== Cabeçalho com logo ===== */
.cabecalho {
display: flex;
align-items: center;
justify-content: flex-start;
width: 100%;
padding: 15px 40px;
position: absolute;
top: 0;
left: 0;
}


.logo {
display: flex;
align-items: center;
font-weight: 700;
font-size: 20px;
color: #303030;
}


.logo img {
height: 60px;
width: auto;
margin-right: 10px;
}

/* Botão Voltar */
.botao-voltar {
    position: absolute;
    top: 20px;
    left: 20px;
    color: #313131;
    text-decoration: none;
    font-weight: bold;
    display: flex;
    align-items: center;
    transition: transform 0.3s ease, background 0.3s ease;
    width: 30px;
}

.botao-voltar:hover {
    color: #791dcf;
    transform: scale(1.1); 
}

.botao-voltar i {
   font-size: 25px;
}

/* ===== Botões superiores ===== */
.botao-container {
position: absolute;
top: 20px;
right: 20px;
display: flex;
gap: 15px;
}


.botao-entrar,
.botao-criar-conta {
display: flex;
align-items: center;
gap: 8px;
padding: 6px 15px;
border-radius: 10px;
text-decoration: none;
font-size: 19px;
font-weight: bold;
transition: transform 0.3s ease;
}


.botao-entrar {
background-color: #791dcf;
color: white;
border: 2px solid #6319a8;
border-bottom: 5px solid #6319a8;
}


.botao-criar-conta {
background-color: #ffffff;
color: #313131;
border: 2px solid #c8c8c8;
border-bottom: 5px solid #c8c8c8;
}


.botao-entrar:hover,
.botao-criar-conta:hover {
transform: scale(1.1);
}


.botao-criar-conta img,
.botao-entrar img {
width: 14px;
height: auto;
}

/* ===== Layout principal ===== */
.container {
 flex: 1; /* faz o conteúdo ocupar o espaço restante */
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
  padding: 40px;
  flex-wrap: wrap;
      min-height: 100vh;
}

.recuperar-area {
  width: 350px;
  text-align: center;
}

.recuperar-area h2 {
  font-size: 28px;
  color: #303030;
  margin-bottom: 15px;
}

.descricao {
  font-size: 15px;
  color: #666;
  margin-bottom: 25px;
}

/* ===== Formulário ===== */
.recuperar-area input {
  width: 100%;
  padding: 14px;
  font-size: 16px;
  background-color: #f1f1f2;
  border: 2px solid #c8c8c8;
  border-radius: 10px;
  margin-bottom: 15px;
  outline: none;
}

.recuperar-area input:focus {
  border-color: #791dcf;
}

.recuperar-area button {
  width: 100%;
  padding: 14px;
  font-size: 16px;
  background-color: #791dcf;
  border: 2px solid #6319a8;
  border-bottom: 5px solid #6319a8;
  color: white;
  border-radius: 10px;
  cursor: pointer;
  font-weight: bold;
  transition: background 0.3s ease, transform 0.1s ease;
}

.recuperar-area button:hover {
  background-color: #580a9e;
}

.recuperar-area button:active {
  transform: scale(0.97);
}

/* ===== Texto abaixo ===== */
.texto-abaixo {
  margin-top: 15px;
  font-size: 14px;
}

.texto-abaixo a {
  color: #7c7b7b;
  text-decoration: none;
  font-weight: bold;
}

.texto-abaixo a:hover {
  text-decoration: underline;
  color: #580a9e;
}

.rodape {
    background: linear-gradient(90deg, #6C2BD9, #9414b8);
    color: #fff;
    padding: 30px 20px;
    display: flex;
    justify-content: space-around;
    font-size: 18px;
    flex-wrap: wrap; /* Permite que fique responsivo */
}

.rodape a {
    color: #fff;
    display: block;
    margin: 5px 0;
    text-decoration: none; 
}

.logo-rodape {
    display: flex;
    align-items: center;
}

.logo-rodape img {
    height: 200px;
    width: auto;
    margin-right: 10px;
}

.rodape a {
    line-height: 2.2;
    font-weight: bold;
}

.redes-rodape a {
    display: flex;
    align-items: center;
    font-weight: bold;
    gap: 7px;
}

.redes-rodape img {
    width: 20px;
    height: auto;
}

.links-rodape a {
    color: #fff;
    display: block;
    margin: 8px 0;      
    text-decoration: none;
    flex-direction: column; /* Alinha links verticalmente */
}

.redes-rodape img {
    width: 20px;
    height: auto;
}

/* ===== Responsividade ===== */
@media (max-width: 768px) {
.imagem-area img {
width: 300px;
}


.recuperar-area h2 {
font-size: 24px;
}


.recuperar-area input,
.recuperar-area button {
font-size: 14px;
padding: 12px;
}


.botao-entrar,
.botao-criar-conta {
font-size: 16px;
padding: 6px 12px;
}
}


@media (max-width: 480px) {
.container {
flex-direction: column;
gap: 30px;
padding: 20px;
}


.imagem-area img {
width: 230px;
}


.recuperar-area h2 {
font-size: 22px;
}


.descricao {
font-size: 13px;
}


.texto-abaixo {
font-size: 13px;
}


.botao-container {
position: relative;
justify-content: center;
}
}

/* Esconde redes do rodapé em telas pequenas */
@media (max-width: 768px) {
    
    .rodape {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 25px;
    }

    .redes-rodape {
        text-align: center;
    }

    .logo-rodape img {
        height: 150px;
    }

        .redes-rodape {
        align-items: center;
        justify-content: center;
        text-align: center;
    }

    .redes-rodape a {
        justify-content: center;
    }
}
