* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-image: url('assets/wallpaper_fator-inovacao.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 20px;
}

.container{
    text-align: center;
    max-width: 600px;
}

.texto {
    font-size: 48px;
    font-weight: bold;
    color: #3a4f9b;
    text-align: center;
    text-shadow: 2px 2px 4px rgba(255, 255, 255, 0.7);
    margin-bottom: 50px;
}

.descricao {
    font-size: 18px;
    color: #4b5563;
    line-height: 1.6;
    text-align: center;
}

.descricao p {
    margin-bottom: 50px;
}

.destaque-azul {
    color: #3a4f9b;
    font-weight: bold;
}

@media (max-width: 768px) {
    .texto {
        font-size: 36px;
    }

    .container {
        padding: 30px;
        margin: 0 15px;
    }

    .descricao {
        font-size: 16px;
    }
}