/*CSS full*/

.pkp_site_name .is_img img{
max-height: unset;
}
.pkp_brand_footer{
    display:none;
}
.pkp_footer_content{
    display:flex;
    justify-content:space-between;
}
.pkp_footer_content >*{
    margin:1em;
}
.firma-biteca{
    max-width:100px
}
.logoinstitucion{
    max-width:180px;
    border-right:1px solid black;
    padding-right:1.5em;
}
.pkp_footer_content .info{
    flex-grow: 2;
}
.item.references .value {
    overflow-wrap: break-word;
    word-wrap: break-word;
    -ms-word-break: break-all;
}
/* ===== CONTENEDOR PRINCIPAL ===== */
.contact_section {
    display: flex;
    justify-content: space-between;
    align-items: flex-start; /* Alinea ambas columnas arriba */
    gap: 60px; /* Espacio entre columnas */
    max-width: 1100px;
    margin: 0 auto;
    padding: 40px 20px;
}

/* ===== CADA COLUMNA ===== */
.contact_section .contact {
    flex: 1;
    min-width: 300px;
}

/* ===== TITULOS ===== */
.contact_section h2 {
    font-size: 22px;
    margin-bottom: 20px;
}

/* ===== NOMBRE ===== */
.contact_section .name {
    font-weight: 600;
    margin-bottom: 10px;
}

/* ===== EMAIL ===== */
.contact_section .email a {
    color: #0072ce;
    text-decoration: none;
}

.contact_section .email a:hover {
    text-decoration: underline;
}

/* ===== TELEFONO ===== */
.contact_section .phone {
    margin: 10px 0;
}

.contact_section .phone .label {
    font-weight: 600;
    display: block;
}

@media (max-width: 768px) {
    .contact_section {
        flex-direction: column;
        gap: 40px;
        padding: 20px;
    }

    .contact_section .contact {
        width: 100%;
    }
}
