@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;800&display=swap');

:root {
    --bg-dark: #07090b;
    --bg-card: #12161b;
    --blue-primary: #2d6a8f;
    --blue-light: #438cb5;
    --orange-primary: #f26422;
    --orange-glow: rgba(242, 100, 34, 0.4);
    --text-light: #e4e4e4;
    --text-muted: #a0aab2;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-light);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 20px;
    background-image: radial-gradient(circle at 50% 0%, #1a2936 0%, transparent 50%);
}

.logo {
    width: 250px;
    margin-bottom: 20px;
    animation: fadeInDown 1s ease-out;
}

.bemVindo {
    text-align: center;
    margin-bottom: 30px;
    animation: fadeInDown 1s ease-out;
}

.bemVindo h1 {
    font-size: 3rem;
    font-weight: 800;
    color: var(--text-light);
    letter-spacing: 2px;
    margin-bottom: 5px;
    text-transform: uppercase;
}

.bemVindo h1 span {
    color: var(--orange-primary);
}

.bemVindo h2 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--blue-light);
    letter-spacing: 4px;
    text-transform: uppercase;
}

.sobre {
    background-color: var(--bg-card);
    max-width: 600px;
    padding: 30px;
    border-radius: 12px;
    border-left: 4px solid var(--blue-primary);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    text-align: center;
    margin-bottom: 40px;
    animation: fadeInUp 1s ease-out 0.3s backwards;
}

.sobre p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-muted);
}

.links {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
    animation: fadeInUp 1s ease-out 0.6s backwards;
}

.links a {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: #ffffff;
    font-weight: 600;
    padding: 12px 28px;
    border-radius: 50px;
    background: linear-gradient(135deg, var(--bg-card), var(--bg-dark));
    border: 1px solid var(--blue-primary);
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.links a:hover {
    transform: translateY(-5px);
    border-color: var(--orange-primary);
    box-shadow: 0 8px 20px var(--orange-glow);
    background: linear-gradient(135deg, var(--bg-card), #181d24);
}

.links img {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    object-fit: cover;
}

@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 600px) {
    .logo { width: 180px; }
    .bemVindo h1 { font-size: 2.2rem; }
    .bemVindo h2 { font-size: 1rem; }
    .links { flex-direction: column; width: 100%; max-width: 300px; }
    .links a { justify-content: center; }
}