body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    position: relative;
}

.background-image {
    background-image: url('fundo.jpg'); /* Caminho da imagem de fundo */
    background-size: cover;
    background-position: center;
    position: absolute;
    width: 100%;
    height: 100%;
    filter: blur(4px); /* Blur mais leve */
    z-index: 1;
}

.overlay {
    position: absolute;
    z-index: 2;
    background-color: rgba(0, 0, 0, 0.55); /* Fundo semi-transparente */
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
    padding: 20px;
    box-sizing: border-box;
}

header .logo {
    max-width: 280px; /* Levemente menor para melhor proporção */
    margin-bottom: 20px;
}

.banner {
    background-color: #c04000; /* Cor combinando com o logotipo */
    padding: 30px 40px;
    border-radius: 15px; /* Borda mais arredondada */
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.25); /* Sombra mais suave */
    max-width: 600px;
}

.banner h1 {
    margin: 0 0 20px;
    font-size: 1.8rem;
}

.banner p {
    margin: 0 0 30px;
    font-size: 1rem;
    line-height: 1.5;
}

.button-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px; /* Espaço uniforme entre botões */
}

.btn {
    background-color: #ff6600; /* Cor de destaque */
    color: white;
    padding: 12px 25px;
    border: none;
    border-radius: 8px;
    text-decoration: none;
    font-size: 16px;
    font-weight: bold;
    transition: background-color 0.3s, transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
}

.btn-green {
    background-color: #32CD32; /* Verde */
}

.btn:hover {
    background-color: #cc5200;
    transform: scale(1.07);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.btn-green:hover {
    background-color: #228B22;
}

/* Responsividade para mobile */
@media (max-width: 600px) {
    .banner {
        padding: 20px;
        font-size: 0.9rem;
    }

    header .logo {
        max-width: 200px;
    }

    .btn {
        width: 100%;
        text-align: center;
    }
}
