/* Configurações Gerais */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Quicksand', sans-serif;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #a8e063 0%, #56ab2f 100%); /* Verde Natureza */
    color: #2d3436;
    overflow: hidden;
}

/* Fundo com imagem suave (opcional) */
.overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: url('https://images.unsplash.com/photo-1583337130417-3346a1be7dee?auto=format&fit=crop&q=80&w=1920') no-repeat center center/cover;
    opacity: 0.2;
    z-index: -1;
}

/* Cartão Central */
.container {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    max-width: 600px;
    width: 90%;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

/* Tipografia */
.logo {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #2d6a4f;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.logo span {
    color: #74c69d;
}

h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #1b4332;
}

p {
    line-height: 1.6;
    margin-bottom: 2rem;
    color: #4b5e57;
}

/* Badge de Status */
.status-badge {
    display: inline-block;
    background: #2d6a4f;
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 500;
    font-size: 0.9rem;
    animation: pulse 2s infinite;
}

/* Links Sociais */
.social-links {
    margin-top: 15px;
}

.social-links a {
    text-decoration: none;
    color: #2d6a4f;
    font-weight: 700;
    margin: 0 10px;
    transition: color 0.3s;
}

.social-links a:hover {
    color: #74c69d;
}

/* Animação */
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

/* Responsividade */
@media (max-width: 480px) {
    .container { padding: 2rem; }
    .logo { font-size: 2rem; }
}