/* Configurações */
:root {
    font-size: 62.5%;
}

body{
    margin: 0;
    background-color: #E4C875;
}

.scroll-animation {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.6s ease-out;
}

.scroll-animation.active {
    opacity: 1;
    transform: translateY(0);
} 

/* Section dos controles acima */

.Controler{
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    margin-top: 2.5rem;
}

.Controler .sair img{
    width: 2.5rem;
}

.Controler .nome h1{
    font-family: "Montserrat", serif;
    font-size: 4rem;
    font-weight: 400;
    color: black;
    white-space: nowrap;
    margin: 0;
}

.Controler .nome h1 span{
    font-weight: 600;
    margin: 0;
}

.Controler .informacoes img{
    width: 2.5rem;
}

/* icone grande  */

.icone{
    display: flex;
    justify-content: center;
    margin-top: 10rem;
}

.icone img{
    width: 20rem;
}

/* parte do balão de digitação */

.balaoDeFala{
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 9rem;
}

.textarea-container {
    position: relative;
    width: 60rem;
    height: 20rem;    
    background: #00000063;
    border-radius: 10px;
    padding: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.3);
}

textarea {
    width: 100%;
    height: calc(100% - 50px); 
    resize: none;            
    border: none;
    outline: none;
    border-radius: 8px;
    padding: 10px;
    font-size: 16px;
    background: transparent;
    color: white;
}

textarea::placeholder{
    font-family: "Montserrat", serif;
    font-weight: 400;
    color: white;
    padding: 1rem;
}

button {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: #E4C875;
    color: black;
    border: none;
    border-radius: 10px;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    font-family: "Montserrat", serif;
    font-weight: 500;
}

/* pop-up de informações */
.popup {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.5);
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.popup-content {
  background: white;
  padding: 20px;
  width: 300px;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  text-align: center;
  font-family: Arial, sans-serif;
}

.popup-content p{
    font-family: "Montserrat", serif;
    font-size: 1rem;
    font-weight: 500;
}

.popup-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.close-btn {
  cursor: pointer;
  font-size: 24px;
  font-weight: bold;
}

.popup-header h1{    
    font-family: "Montserrat", serif;
    font-size: 2rem;
    font-weight: 400;
    color: black;
    white-space: nowrap;
    margin: 0;
}

.popup-header h1 span{
    font-weight: 600;
    margin: 0;
}