body, html {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    font-family: sans-serif;
    background-color: #f4f4f9;
}

.construction-container {
    background-image: url('fundo.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 20px;
}

.header {
    margin-bottom: 20px;
    height: auto;
}

.header .logo {
    width: 480px;
    height: auto;
}

.main-content {
    display: flex;
    width: 100%;
    max-width: 1000px;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
    padding: 10px;
}

.main-content .map {
    width: 500px;
    height: auto;
    overflow: hidden;
    max-width: 100%;
}

.main-content img {
    width: 100%;
    transition: transform 0.5s ease;
}

.main-content img:hover {
    transform: scale(1.05);
}

.description {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    max-width: 100%;
}

.description img {
    width: 100%;
    height: auto;
    margin-bottom: 20px;
}

.description .saiba-mais {
    background-color: #d91e18;
    color: #fff;
    border: none;
    padding: 10px 20px;
    font-size: 18px;
    border-radius: 5px;
    cursor: pointer;
    align-self: center;
    text-decoration: none;
}

.description .saiba-mais:hover {
    background-color: #5b0100;
    transition: background-color 0.5s ease;
}


@media (max-width: 768px) {

    .header{
        align-content: center;
    }
    .header .logo{
        max-width: 100%;
        
    }
    .main-content {
        flex-direction: column;
        align-items: center;
    }

    .main-content .map {
        width: 80%;
        margin-bottom: 20px;
    }

    .description {
        align-items: center;
        text-align: center;
    }

    .description .saiba-mais {
        align-self: center;
        width: 80%;
    }
}