* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: Arial, sans-serif;
    background: url('bg.jpg') no-repeat center center fixed;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    position: relative;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Ajuste a opacidade conforme necessário */
    z-index: 1;
}

.container {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    width: 90%;
    max-width: 400px;
    z-index: 2;
    position: relative;
}

.logo img {
    width: 70%;
    max-width: 200px; /* Garantia de que a imagem não fique muito grande em telas grandes */
    margin-bottom: 20px;
}

.description {
    margin-bottom: 20px;
}

.description p {
    font-size: 16px;
    color: #333;
}

.links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.link-button {
    display: inline-block;
    padding: 15px 20px;
    color: #fff;
    border-radius: 20px;
    text-decoration: none;
    font-size: 18px;
    transition: background-color 0.3s ease;
    text-align: center;
}

.link-button i {
    margin-right: 10px;
}

.link-button:hover {
    background-color: #0056b3;
}

.link-button:nth-of-type(1) {
    background-color: #007BFF;
}

.link-button:nth-of-type(1):hover {
    background-color: #0056b3;
}

.whatsapp-button {
    background-color: #25D366;
}

.whatsapp-button:hover {
    background-color: #128C7E;
}

/* Responsividade */
@media (max-width: 600px) {
    .container {
        padding: 15px;
    }

    .link-button {
        padding: 12px 15px;
        font-size: 16px;
    }
}