/* Estilos básicos para o App parecer um App */
body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    background-color: #fce4ec; /* Um tom rosa bem claro */
    margin: 0;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    min-height: 100vh;
    color: #333;
}

#app {
    width: 100%;
    max-width: 480px; /* Largura de celular */
}

.card {
    background: white;
    border-radius: 20px;
    padding: 24px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    animation: fadeIn 0.3s ease-in-out;
}

h2 {
    color: #d81b60;
    margin-top: 0;
}

h3 {
    color: #ad1457;
}

p, li {
    line-height: 1.6;
    color: #555;
}

ul {
    padding-left: 20px;
}

button {
    background-color: #d81b60;
    color: white;
    border: none;
    padding: 15px 20px;
    border-radius: 12px;
    width: 100%;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    margin-bottom: 10px;
    transition: background 0.2s;
    text-align: center;
}

button:hover {
    background-color: #ad1457;
}

.aviso {
    background-color: #fff3e0;
    border-left: 4px solid #ff9800;
    padding: 15px;
    margin: 20px 0;
    border-radius: 4px;
    font-size: 0.9em;
}

hr {
    border: 0;
    height: 1px;
    background: #eee;
    margin: 20px 0;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}
