/* ==========================================================
   RODAPÉ INSTITUCIONAL UNIFAGOC
   ========================================================== */

/* Fundo */
.pkp_structure_footer_wrapper {
    background: #4B8F82 !important;
    width: 100% !important;
}

/* Container */
.pkp_structure_footer {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px 0 !important;
    overflow: visible !important;
}

/* Logo */
.pkp_footer_content::before {
    content: "";
    display: block;
    width: 180px;
    height: 55px;
    background-image: url("https://unifagoc.edu.br/wp-content/uploads/2022/12/cropped-logo.png");
    background-repeat: no-repeat;
    background-size: contain;
    background-position: left center;
    filter: brightness(0) invert(1);
    margin-bottom: 15px;
}

/* Grid */
.pkp_footer_content {
    display: grid;
    grid-template-columns: 1.8fr 1fr;
    column-gap: 60px;
    row-gap: 8px;
    max-width: 900px;
}

/* Coluna esquerda */
.pkp_footer_content p:nth-child(1),
.pkp_footer_content p:nth-child(2),
.pkp_footer_content p:nth-child(3) {
    grid-column: 1;
}

/* Coluna direita */
.pkp_footer_content p:nth-child(4),
.pkp_footer_content p:nth-child(5),
.pkp_footer_content p:nth-child(6) {
    grid-column: 2;
}

/* Faz o título Atendimento alinhar com Dados Institucionais */
.pkp_footer_content p:nth-child(4) {
    align-self: start;
}

/* Texto */
.pkp_footer_content p {
    color: #fff !important;
    font-size: 13px;
    line-height: 1.45;
    margin: 0;
}

/* Títulos */
.pkp_footer_content strong {
    display: block;
    color: #fff !important;
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 4px;
}

/* Links */
.pkp_footer_content a,
.pkp_footer_content a:hover,
.pkp_footer_content a:visited {
    color: #fff !important;
    text-decoration: none;
}

/* PKP no canto inferior direito */
.pkp_brand_footer {
    position: absolute;
    right: -120px;
    bottom: 10px;
    opacity: 0.22;
    transform: scale(0.65);
    transform-origin: bottom right;
    z-index: 999;
}

.pkp_brand_footer img {
    width: 160px !important;
    height: auto !important;
}

/* Mobile */
@media (max-width: 768px) {

    .pkp_footer_content {
        display: block;
    }

    .pkp_footer_content::before {
        width: 180px;
        height: 55px;
    }

    .pkp_footer_content p {
        margin-bottom: 10px;
    }

    .pkp_brand_footer {
        position: static;
        transform: none;
        margin-top: 20px;
        text-align: center;
    }
}