/* Reset e Estilo Global */
body {
    font-family: Arial, sans-serif;
    background: linear-gradient(to right, #4facfe, #00f2fe);
    text-align: center;
    color: white;
    margin: 0;
    padding: 0;
    
    /* Imagem de fundo responsiva */
    background-image: url('https://trilhamobile.qazando.com.br/wp-content/uploads/2023/11/logo_transparent_white-768x768-1.png');
    background-size: contain; /* Ajusta a imagem ao tamanho da tela */
    background-repeat: no-repeat;
    background-position: center top;
    background-attachment: fixed;
}

/* Estilizando o container */
.container {
    width: 60%;
    margin: 120px auto 50px; /* Ajuste de margem para não sobrepor a imagem */
    background: rgba(255, 255, 255, 0.9);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

h1 {
    color: #333;
    font-size: 28px;
    margin-bottom: 10px;
}

h1 span {
    color: #007bff;
}

p {
    color: #555;
    font-size: 18px;
    margin-bottom: 20px;
}

/* Botões */
.buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.btn {
    display: inline-block;
    padding: 12px 20px;
    font-size: 16px;
    color: white;
    background: #007bff;
    border-radius: 5px;
    text-decoration: none;
    transition: 0.3s;
    font-weight: bold;
}

.btn:hover {
    background: #0056b3;
}

/* Responsividade */
@media (max-width: 768px) {
    body {
        background-size: 90% auto; /* Ajusta melhor a imagem para telas menores */
        background-position: center top;
    }

    .container {
        width: 90%;
        margin-top: 100px;
    }

    h1 {
        font-size: 22px;
    }

    p {
        font-size: 16px;
    }
}
