/* Reset Básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: #111111; /* Fundo preto/carbono */
    color: #f5f5f5;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    /* Um fundo levemente texturizado simulando estúdio */
    background-image: radial-gradient(circle at center, #2a2a2a 0%, #111111 100%);
}

.container {
    width: 100%;
    max-width: 600px;
    padding: 40px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

/* Header & Logo */
header {
    margin-bottom: 40px;
}

.logo-container {
    width: 150px;
    height: 150px;
    margin: 0 auto 20px auto;
    border-radius: 50%;
    background-color: #1a1a1a;
    padding: 10px;
    box-shadow: 0 0 20px rgba(230, 57, 70, 0.2); /* Brilho vermelho sutil */
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.logo {
    max-width: 100%;
    height: auto;
    object-fit: contain;
}

h1 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

p {
    font-size: 1rem;
    color: #a0a0a0;
    font-weight: 400;
}

/* Links Container */
.links-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Botões Modernos e Esportivos */
.link-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 18px 20px;
    background-color: #1e1e1e;
    color: #ffffff;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    border: 2px solid #333333;
    border-radius: 12px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.link-btn i {
    position: absolute;
    left: 25px;
    font-size: 1.4rem;
    color: #e63946; /* Vermelho esportivo */
    transition: all 0.3s ease;
}

.link-btn span {
    z-index: 1;
}

/* Efeito de Hover Premium */
.link-btn:hover {
    border-color: #e63946;
    background-color: #e63946;
    color: #ffffff;
    box-shadow: 0 8px 20px rgba(230, 57, 70, 0.4);
    transform: translateY(-3px);
}

.link-btn:hover i {
    color: #ffffff;
}

/* Footer */
footer {
    margin-top: 50px;
    font-size: 0.85rem;
    color: #666666;
}

/* Responsividade */
@media (max-width: 480px) {
    .container {
        padding: 30px 15px;
    }
    
    h1 {
        font-size: 1.5rem;
    }
    
    .link-btn {
        padding: 16px;
        font-size: 1rem;
    }
    
    .link-btn i {
        left: 20px;
    }
}
