body {
    margin: 0;
    padding: 0;
    font-family: "Poppins", Arial, sans-serif;
    background: linear-gradient(135deg, #34d399, #ec4899);
    color: white;
    text-align: center;
}

header {
    padding: 40px 20px;
    backdrop-filter: blur(5px);
}

h1 {
    font-size: 48px;
    margin-bottom: 10px;
}

h2 {
    margin-top: 40px;
    font-size: 32px;
}

p {
    max-width: 800px;
    margin: auto;
    font-size: 18px;
    line-height: 1.6;
}

.card {
    background: rgba(255, 255, 255, 0.15);
    padding: 25px;
    margin: 40px auto;
    width: 80%;
    border-radius: 20px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(6px);
    animation: aparecer 1.4s ease;
}

@keyframes aparecer {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
        }
}

.botao {
    display: inline-block;
    margin-top: 20px;
    padding: 14px 30px;
    background: white;
    color: #ec4899;
    font-size: 18px;
    font-weight: bold;
    border-radius: 12px;
    text-decoration: none;
    transition: 0.3s;
}

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


.botao:hover {
    transform: scale(1.07);
    background: #ffe4f2;
}

footer {
    margin-top: 50px;
    padding: 20px;
    font-size: 14px;
    opacity: 0.8;
}