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

body {
    font-family: 'Poppins', sans-serif;
    background-color: #111111;
    color: #f0f0f0;
    
    /* Centraliza todo o conteúdo na tela */
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
}

/* --- Container Principal --- */
.container {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem; /* Espaçamento vertical entre os elementos */
    opacity: 0; /* Começa invisível para animação JS */
    transform: translateY(20px);
    transition: opacity 0.8s ease-out, transform 0.6s ease-out;
}

/* Animação de entrada via JS */
.container.visible {
    opacity: 1;
    transform: translateY(0);
}

.logo-circle img { /* Corrigido para a tag img dentro da div */
    width: 80px; 
    height: auto; 
    display: block;
    margin: 0 auto; 
}


/* --- Título de Boas-vindas --- */
.welcome-title {
    font-size: 1.5rem;
    font-weight: 500;
    color: #ffffff;
}

/* --- Container dos Botões --- */
.action-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    width: 100%;
}

/* --- Estilo dos Botões --- */
.btn {
    background-color: transparent;
    border: 2px solid #FFD700;
    color: #FFD700;
    padding: 15px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    
    width: 100%;
    max-width: 320px;
    
    transition: background-color 0.3s ease, color 0.3s ease;
}

/* Efeito de hover para os botões */
.btn:hover {
    background-color: #FFD700;
    color: #111111;
}

.btn i {
    font-size: 1.1rem;
}


/* --- CSS PARA O DROPDOWN --- */

/* Estilo do container do Dropdown para posicionamento */
.dropdown-container {
    width: 100%;
    max-width: 320px;
    position: relative;
}

/* Ajuste no botão principal do dropdown (toggle) para ter espaço para a seta */
.dropdown-toggle {
    cursor: pointer;
    justify-content: space-between;
}

/* Ícone de seta do dropdown */
.dropdown-icon {
    margin-left: 10px;
    transition: transform 0.3s ease;
}

/* Gira a seta quando o menu está aberto */
.dropdown-toggle.active .dropdown-icon {
    transform: rotate(180deg);
}

/* Conteúdo do Dropdown (as opções) */
.dropdown-content {
    display: none; /* Escondido por padrão, será visível com JS */
    position: absolute;
    top: 100%; /* Posiciona abaixo do botão principal */
    left: 0;
    right: 0;
    z-index: 10;
    margin-top: 5px;
    
    /* Estilo visual do container de opções */
    background-color: #222222; 
    border: 2px solid #FFD700;
    border-radius: 30px;
    padding: 10px;
    
    flex-direction: column;
    gap: 8px;
    
    /* Animação para aparecer */
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 0.3s ease-out, transform 0.3s ease-out;
}

/* Torna o dropdown visível */
.dropdown-content.show {
    display: flex; /* Mostra o container */
    opacity: 1;
    transform: translateY(0);
}

/* Estilo das opções (links) dentro do dropdown */
.dropdown-btn {
    background-color:#111111;
;
    border: 1px solid #FFD700; 
    color: #FFD700;
    padding: 10px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 0.95rem; 
    font-weight: 500;
    
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    
    width: 100%;
    max-width: none; 
    transition: background-color 0.2s ease;
}

/* Efeito de hover para as opções internas */
.dropdown-btn:hover {
    background-color: #FFD700;
    color: #111111;
}