body {
    box-sizing: border-box;
}

.custom-header {
    width: 100%;
    padding: 15px 30px;
    background-color: #ffffff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    z-index: 9999;
}


.fixed-header {
    position: fixed;
    top: 0;
    left: 0;
}

.container-header {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.logo-left,
.logo-right {
    max-height: 45px;
    height: auto;
}

@media (max-width: 768px) {
    .logo-left,
    .logo-right {
        max-height: 45px;
    }

    .custom-header {
        padding: 10px 20px;
    }
}

footer {
    background-color: #1f6297;
    padding: 10px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    width: 100%;
}

.footer-social-icons {
    display: flex;
    align-items: center;
    gap: 20px; /* Espaço uniforme entre os ícones */
}

.footer-social-icons img {
    height: 28px;
    width: 28px;
    filter: brightness(1000%) invert(1);
    object-fit: contain;
}

@media (max-width: 768px) {
    .logo-left,
    .logo-right {
        max-height:25px; /* altura menor no mobile */
        margin: 05px;
    }

    .custom-header {
        padding: 2px; /* padding reduzido no mobile */
    }

    footer {
        flex-direction: column;
        padding: 1px;
        text-align: center;
    }

    .footer-social-icons {
        margin-top: 2px;
        margin-bottom: 10px;
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }

        .footer-social-icons img {
            height: 20px;
            width: 20px;
        }

    footer img.logo-right {
        max-height: 35px;
        margin-bottom: 2px;
    }
}

.corpo{
    display: flex;
    flex-direction:column;
    height: 100vh;
}


