
    body {
        background: linear-gradient(135deg, #003366, #1e3a8a);
        color: white;
        font-family: 'Segoe UI', sans-serif;
    }

    .welcome-container {
        display: flex;
        flex-direction: column;
        justify-content: center;    
        align-items: center;
        min-height: 80vh;
        text-align: center;
        padding: 30px;
    }
    .desc{
        color: #f0f0f0;
    }

    .welcome-box {
        background-color: rgba(255, 255, 255, 0.1);
        padding: 40px;
        border-radius: 12px;
        box-shadow: 0 0 20px rgba(0, 0, 0, 0.4);
    }

    .welcome-title {
        font-size: 2.5rem;
        font-weight: bold;
        margin-bottom: 20px;
        color: #ffffff;
    }

    .welcome-subtitle {
        font-size: 1.2rem;
        margin-bottom: 30px;
        color: #f0f0f0;
    }

    .btn-start {
        background-color: #7ebbe7;
        border: none;
        padding: 10px 30px;
        font-size: 1rem;
        border-radius: 8px;
        color: #000000;
        text-decoration: none;
        transition: 0.3s;
    }

    .btn-start:hover {
        background-color: #c477a9;
        text-decoration: none;
    }
/* Centraliza e estiliza a logo */
img {
    width: 1200px;         
    border-radius: 50%;   
    box-shadow: 0 4px 10px #c477a9; 
    transition: transform 0.3s ease;
}

img:hover {
    transform: scale(1.1); 
}
a{
    margin-top: 50px;
}
.welcome-subtitle{
    font-size: 24px;
    color: #7ebbe7;
    font-weight: bold;
}

        /* Ícones fixos no canto superior esquerdo */
        .social-fixed {
            position: absolute;
            top: 15px;
            left: 15px;
            display: flex;
            gap: 12px;
            z-index: 1000;
        }
        .social-fixed a {
            font-size: 1.4rem;
            transition: transform 0.2s;
        }
        .social-fixed a:hover {
            transform: scale(1.2);
        }