/* Reset básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

body {
    background-color: #f0f2f5;
    color: #333;
    line-height: 1.6;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
}

.container {
    text-align: center;
    max-width: 600px;
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

header h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

header p {
    font-size: 1.2rem;
    color: #7f8c8d;
}

footer {
    margin-top: 2rem;
    color: #95a5a6;
    font-size: 0.9rem;
}

button{
    background-color: #e74c3c;
    color: rgb(240, 240, 240);
    font-style: bold;
    font-size: 25px;
    padding: 5px 10px;
    margin: 5px 5px;
    border-radius: 100px;
    cursor: pointer;
    text-decoration: none;
}

button:hover{
    background-color: #eb8175b7;
    transition: all 0.15s ease;
    color: #333;
}

button:disabled{
    background-color: #e3594a;
    cursor: not-allowed;
    color: #333;
}

#tooltip {
  position: fixed;
  background-color: #333;
  color: white;
  padding: 8px 12px;
  border-radius: 20px;
  font-size: 14px;
  pointer-events: none; /* Não interfere com o mouse */
  z-index: 9999;
  display: none;
  box-shadow: 0 2px 5px rgba(0,0,0,0.2);
  white-space: nowrap;
  backdrop-filter: blur(10px);
}

#tooltip::after {
  display: none;
}

a{
    text-decoration: none;
    color: inherit;
}