/* Fundo degradê verde → rosa */
body {
    margin: 0;
    padding: 0;
    font-family: "Poppins", Arial, sans-serif;
    background: linear-gradient(135deg, #34d399, #ec4899);
    color: white;
    text-align: center;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Container central */
.container {
    background: rgba(255, 255, 255, 0.15);
    padding: 40px 60px;
    border-radius: 25px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.25);
    backdrop-filter: blur(5px);
    animation: aparecer 1.2s ease;
}

/* Animação suave */
@keyframes aparecer {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

h1 {
    font-size: 70px;
    margin: 0;
    color: #ffe4f2;
    text-shadow: 0 3px 10px rgba(0,0,0,0.3);
}

.subtitulo {
    font-size: 22px;
    margin-bottom: 30px;
    color: #fafafa;
}

/* Botão fofo rosa+verde */
.botao-fofo {
    display: inline-block;
    background: linear-gradient(135deg, #34d399, #ec4899);
    color: white;
    padding: 15px 35px;
    border-radius: 15px;
    text-decoration: none;
    font-size: 22px;
    font-weight: bold;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    transition: 0.3s ease;
}

.botao-fofo:hover {
    transform: scale(1.08);
    filter: brightness(1.1);
}
