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

body {
    font-family: 'Arial', sans-serif;
    background-color: #000000;
    color: #ffffff;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.container {
    width: 100%;
    max-width: 1200px;
    padding: 20px;
}

.header {
    text-align: center;

    z-index: 1;
    width: 100%;
    left: 0;
    top: 30px;
}

.logo {
    max-width: 400px;
    width: 100%;
    height: auto;
}

.main-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

.banner {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: -100px;
    position: relative;
    z-index: -1;
}

.banner-image {
    max-width: 100%;
    height: auto;
    object-fit: contain;
}

.social-media {
    display: flex;
    gap: 30px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.social-media a {
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.social-media a:hover {
    transform: scale(1.1);
    opacity: 0.8;
}

.social-media img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.footer:before {
    content: "";
    background-image: url("assets/layer.png");
    background-size: 100%;
    background-position: center;
    width: 100%;
    height: 160px;
    display: block;
    position: absolute;
    margin-top: -100px;
    z-index: -1;
}

.footer {
    text-align: center;
    margin-top: -100px;
    background-color: #000000;
    width: 100%;
    padding-bottom: 30px;
}

.footer p {
    margin: 0 0 10px 0;
    font-size: 14px;
    letter-spacing: 0.5px;
}

.footer p:last-child {
    margin-bottom: 0;
}

.footer p a {
    color: #ffffff;
    text-decoration: none;
}

.contact-infos {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    margin-top: 20px;
}

.address {
    font-weight: 400;
}

.contact {
    font-weight: 400;
}

.email {
    font-weight: 400;
}

/* Responsividade */
@media (max-width: 768px) {
    body {
        justify-content: flex-start;
    }

    .container {
        padding: 20px 15px;
        max-width: 100%;
    }

    .header {
        top: 20px;
    }

    .logo {
        max-width: 280px;
    }

    .banner {
        margin-top: -60px;
    }

    .main-content {
        gap: 30px;
    }

    .social-media {
        gap: 25px;
        padding: 0 20px;
    }

    .social-media img {
        width: 36px;
        height: 36px;
    }

    .footer {
        margin-top: -80px;
        padding-bottom: 25px;
    }

    .footer:before {
        height: 140px;
        margin-top: -80px;
    }

    .contact-infos {
        margin-top: 15px;
        padding: 0 20px;
    }

    .footer p {
        font-size: 12px;
        line-height: 1.6;
    }

    .address {
        max-width: 90%;
    }
}

@media (max-width: 480px) {
    body {
        justify-content: flex-start;
        padding-top: 20px;
    }

    .container {
        padding: 15px 10px;
    }

    .header {
        top: 10px;
    }

    .logo {
        max-width: 220px;
    }

    .banner {
        margin-top: -40px;
        max-width: 280%;
        width: 280%;
        object-fit: cover;
        object-position: center;
    }

    .banner-image {
        max-width: 280%;
        width: 280%;
        object-fit: cover;
        object-position: center;
    }

    .main-content {
        gap: 20px;
        overflow: hidden;
    }

    .social-media {
        gap: 18px;
        padding: 0 15px;
    }

    .social-media img {
        width: 32px;
        height: 32px;
    }

    .footer {
        margin-top: -60px;
        padding-bottom: 20px;
    }

    .footer:before {
        height: 120px;
        margin-top: -60px;
        background-size: cover;
    }

    .contact-infos {
        margin-top: 10px;
        padding: 0 15px;
    }

    .footer p {
        font-size: 10px;
        line-height: 1.7;
        margin: 0 0 8px 0;
    }

    .address {
        max-width: 95%;
        word-wrap: break-word;
    }

    .contact a {
        display: inline-block;
    }
}

@media (max-width: 360px) {
    .logo {
        max-width: 180px;
    }

    .banner {
        margin-top: -30px;
    }

    .social-media {
        gap: 15px;
    }

    .social-media img {
        width: 28px;
        height: 28px;
    }

    .footer {
        margin-top: -50px;
    }

    .footer:before {
        height: 100px;
        margin-top: -50px;
    }

    .footer p {
        font-size: 9px;
    }
}