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

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

.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;
}

/* Parte das emoções */

/* Emoção feliz  */

#emocaoFeliz{
    display: flex;
    justify-content: center;
    margin-top: 5rem;
}

#emocaoFeliz a{
    color: black;
    text-decoration: none;
}

#emocaoFeliz .mainCartao{
    width: 70rem;
    height: 10rem;
    background-color: #08F600;
    border-radius: 0.9rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: 1s;
}

#emocaoFeliz .mainCartao .texto p{
    font-family: "Montserrat", serif;
    font-size: 2rem;
    font-weight: 400;
    margin: 2rem;
}

#emocaoFeliz .mainCartao .texto p span{
    font-weight: 700;
}

#emocaoFeliz .mainCartao .imgCartao img{
    width: 10rem;
    padding: 4rem;
}

#emocaoFeliz .mainCartao:hover{
    scale: 1.1;
} 

/* emoção ameno */

#emocaoAmeno{
    display: flex;
    justify-content: center;
    margin-top: 5rem;
}

#emocaoAmeno a{
    color: black;
    text-decoration: none;
}

#emocaoAmeno .mainCartao{
    width: 70rem;
    height: 10rem;
    background-color: #FFB800;
    border-radius: 0.9rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: 1s;
}

#emocaoAmeno .mainCartao .texto p{
    font-family: "Montserrat", serif;
    font-size: 2rem;
    font-weight: 400;
    margin: 2rem;
}

#emocaoAmeno .mainCartao .texto p span{
    font-weight: 700;
}

#emocaoAmeno .mainCartao .imgCartao img{
    width: 10rem;
    padding: 4rem;
}

#emocaoAmeno .mainCartao:hover{
    scale: 1.1;
} 

/* Emoção triste  */

#emocaoTriste{
    display: flex;
    justify-content: center;
    margin-top: 5rem;
}

#emocaoTriste a{
    color: black;
    text-decoration: none;
}

#emocaoTriste .mainCartao{
    width: 70rem;
    height: 10rem;
    background-color: #F22E3E;
    border-radius: 0.9rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: 1s;
}

#emocaoTriste .mainCartao .texto p{
    font-family: "Montserrat", serif;
    font-size: 2rem;
    font-weight: 400;
    margin: 2rem;
}

#emocaoTriste .mainCartao .texto p span{
    font-weight: 700;
}

#emocaoTriste .mainCartao .imgCartao img{
    width: 10rem;
    padding: 4rem;
}

#emocaoTriste .mainCartao:hover{
    scale: 1.1;
} 

/* 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;
}