/* Estilo Global */
body {
    font-family: 'Lato', sans-serif;
    background:#f0f0f0;
    color: #414141;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    transition: background 1s ease;
  }
  
  /* Container do app */
  .app {
    text-align: center;
    background-color: rgba(255, 255, 255, 0.85);
    border-radius: 20px;
    padding: 40px;
    width: 400px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  }
  
  /* Título */
  h1 {
    font-family: 'Quicksand', sans-serif;
    color: #333333;
    font-size: 2.8em;
    font-weight: 600;
    margin-bottom: 20px;
  }
  
  /* Seleção de Emoções */
  select, button {
    width: 90%;
    padding: 12px;
    border: #CCCCCC;
    border-radius: 12px;
    margin: 10px 0;
    font-size: 1.1em;
    cursor: pointer;
    transition: all 0.3s ease;
    background-color: #D9CFC1;
    color: #585656	;
    font-weight: bold;
  }
  
  button:hover {
    background-color: #C1B6A4;
    color: 	#2E2E2E;
    transform: scale(1.05);
  }

  select:hover {
    background-color: #C1B6A4;
    color: 	#2E2E2E;
  }
  
  /* Texto da Mensagem */
  #mensagem {
    font-size: 1.1em;
    color: #3a3a3a;
    font-weight: 500;
    margin-top: 20px;
    max-width: 80%;
    line-height: 1.5;
    text-align: center;  /* Centraliza o texto dentro do parágrafo */
    margin-left: auto;   /* Alinha à esquerda */
    margin-right: auto;  /* Alinha à direita */
  }
  
  /* Emoções Específicas */
  .select {
    background-color: #f0f0f0;
  }

  .calm {
    background: linear-gradient(135deg, #96bdfc, #B3D7FF);
  }
  
  .happy {
    background: linear-gradient(135deg, #F5A8B0, #FFD700);
  }
  
  .sad {
    background: linear-gradient(135deg, #5d758f, #82a1ab);
  }
  
  .anxious {
    background: linear-gradient(135deg, #f6ef24, #ffdd00);
  }
  
  .relaxed {
    background: linear-gradient(135deg, #89cba4, #b5d5c3);
  }
  
  .angry {
    background: linear-gradient(135deg, #E74C3C, #9e2214);
  }
  