body {
    font-family: Helvetica;
    margin: 0;
    padding: 0;
    background: url('../img/banner.png') no-repeat center center fixed;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    overflow: hidden;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.maintenance-container {
    text-align: center;
    background: rgba(197, 197, 197, 0.8);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    max-width: 90%;
    max-height: 90%;
    overflow: auto;
}

.logo img {
    max-width: 100px;
}

h1 {
    color: #000000;
    margin: 10px 0;
    font-size: 2.5em;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.3);
}

h2 {
    color: #fff;
    margin: 10px 0;
}


p {
    color: #ffffff;
}

.contact a.instagram-btn {
    display: inline-block;
    margin: 10px;
    text-decoration: none;
    border-radius: 50%;
    transition: transform 0.3s;
}

.contact a.instagram-btn img {
    width: 50px;
    height: 50px;
}

.contact a.instagram-btn:hover {
    transform: scale(1.1);
}

.footer {
    margin-top: 20px;
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    padding: 10px;
    border-radius: 10px;
    text-align: center;
}

.footer-main {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.location {
    margin: 10px;
    width: 100%;
    max-width: 600px;
}

.location h2 {
    color: #fff;
    margin-bottom: 10px;
}

.maps {
    width: 100%;
    height: 200px;
    border: none;
    border-radius: 10px;
}

.fim {
    margin-top: 10px;
    font-size: 14px;
}

.fim p {
    margin: 5px 0;
}

/* Responsividade */
@media (max-width: 768px) {
    .maintenance-container {
        padding: 10px;
    }

    .logo img {
        max-width: 80px;
    }

    .contact a.instagram-btn img {
        width: 40px;
        height: 40px;
    }

    .maps {
        height: 150px;
    }
    
    h1 {
        font-size: 2em;
    }
}

@media (max-width: 480px) {
    h1, h2 {
        font-size: 1.5em;
    }

    .maps {
        height: 100px;
    }

    .fim p {
        font-size: 12px;
    }
}