body,
html {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    font-weight: bold;
    height: 100%;
    overflow-x: hidden;
}

header {
    position: absolute;
    height: 275px;
    min-width: 100;
    top: -50px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    background-color: white;
    border-radius: 40px;
    box-shadow: -4px 3px 5px 1px rgba(0, 0, 0, 0.1);
}

.logo {
    width: 350px;
    height: auto;
}


.container {
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.background-image {
    background-image: url('./assets/bg_casa2.jpg');
    background-size: cover;
    background-position: center;
    width: 100%;
    height: 100%;
    position: absolute;
    filter: blur(4px);
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
    /* Cor de sobreposição semi-transparente */
}

.button {
    display: flex;
    z-index: 2;
    padding: 15px 30px;
    margin: 10px;
    height: 30px;
    width: 90%;
    background-color: #013aa5;
    color: white;
    text-decoration: none;
    text-align: center;
    align-items: center;
    justify-content: center;
    box-shadow: -4px 3px 5px 1px rgba(0, 0, 0, 0.85);
    border: none;
    border-radius: 5px;
    transition: background-color 0.3s, transform 0.2s;
}

.button img {
    display: inline-block;
    vertical-align: middle;
    margin-right: 10px;
    /* Espaçamento entre o ícone e o texto do botão */
    width: 25px;
    height: auto;
}

.button:hover {
    background-color: #001f5b;
    transform: scale(1.03);
}

@media (max-width: 767px) {

    body,
    html {
        font-size: 14px;
    }

    header {
        height: 250px;
        width: 250px;
        top: -120px;
    }

    .logo {
        margin-top: 50px;
        width: 100%;
        height: auto;
    }

    .container {
        justify-content: flex-end;
    }

    .button {
        width: 70%;
    }
}

@media (min-width: 768px) {
    header {
        height: 250px;
        top: -100px;
    }

    .button {
        width: 40%;
    }
}

@media (min-width: 1024px) {
    header {
        height: 250px;
        top: -80px;
    }

    .button {
        width: 30%;
        max-width: 380px;
    }
}