:root {
    --bg-color: #0b1121; /* Azul escuro */
    --card-bg: #151f38;
    --primary-text: #ffffff;
    --highlight: #ffcb05; /* Amarelo Pokémon */
    --whatsapp-green: #25d366;
    --whatsapp-hover: #1da851;
    --discord-blue: #5865F2;
    --discord-hover: #4752c4;
    --telegram-blue: #229ED9;
    --telegram-hover: #1c88ba;
    --status-green: #2ecc71;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--bg-color);
    color: var(--primary-text);
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
}

.container {
    max-width: 500px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    animation: fadeIn 0.8s ease-out;
}

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

/* Imagem de Perfil */
.profile-image-container {
    position: relative;
    display: inline-block;
    margin-bottom: 20px;
}

.profile-image {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--highlight);
    box-shadow: 0 0 15px rgba(255, 203, 5, 0.3);
}

.status-indicator {
    position: absolute;
    bottom: 5px;
    right: 5px;
    width: 20px;
    height: 20px;
    background-color: var(--status-green);
    border-radius: 50%;
    border: 3px solid var(--bg-color);
}

/* Textos */
.main-title {
    font-size: 28px;
    font-weight: 900;
    text-transform: uppercase;
    line-height: 1.2;
    margin-bottom: 10px;
}

.highlight {
    color: var(--highlight);
    font-size: 32px;
}

.subtitle {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 25px;
}

/* Card de Benefícios */
.benefits-card {
    background-color: var(--card-bg);
    border-radius: 15px;
    padding: 25px;
    width: 100%;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.description {
    font-size: 14px;
    margin-bottom: 20px;
    font-weight: 550;
    color: #cbd5e1;
}

.benefits-list {
    list-style: none;
    text-align: left;
    font-size: 14px;
    color: #e2e8f0;
}

.benefits-list li {
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    gap: 12px;
}

.benefits-list li:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.text-green {
    color: var(--status-green);
}

/* Botões */
.action-buttons {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.btn {
    display: flex;
    margin: 0 auto;
    justify-content: center;
    align-items: center;
    gap: 10px;
    width: 70%;
    padding: 14px;
    border-radius: 50px;
    text-decoration: none;
    color: white;
    font-weight: 700;
    font-size: 14px;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.btn-whatsapp {
    background-color: var(--whatsapp-green);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
    background-color: var(--whatsapp-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.btn-discord {
    background-color: var(--discord-blue);
    box-shadow: 0 4px 15px rgba(88, 101, 242, 0.3);
}

.btn-discord:hover {
    background-color: var(--discord-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(88, 101, 242, 0.4);
}

.btn-telegram {
    background-color: var(--telegram-blue);
    box-shadow: 0 4px 15px rgba(34, 158, 217, 0.3);
}

.btn-telegram:hover {
    background-color: var(--telegram-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(34, 158, 217, 0.4);
}

/* Footer */
.footer {
    margin-top: 30px;
    font-size: 12px;
    color: #94a3b8;
}

.active-status {
    margin-top: 10px;
    color: var(--status-green);
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    font-size: 11px;
    letter-spacing: 1px;
}

.active-status i {
    font-size: 8px;
    animation: blink 2s infinite;
}

@keyframes blink {
    0% { opacity: 1; }
    50% { opacity: 0.4; }
    100% { opacity: 1; }
}
