/* ==========================================================
   FOOTER
   ========================================================== */

.kuali-footer {
    background: #B43407;
    color: #fff;
    padding: 80px 0;
}

.kuali-footer-container {
    max-width: 1400px;
    margin: auto;

    display: grid;

    grid-template-columns:
        1.3fr
        1fr
        1fr;

    gap: 80px;

    padding: 0 30px;
}


/* ==========================================================
   TITLES
   ========================================================== */

.footer-title {
    font-size: 1.2rem;
    font-family: 'Lora', serif;

    margin-bottom: 20px;
}


/* ==========================================================
   TEXT
   ========================================================== */

.footer-col p {
    margin-bottom: 12px;
}


/* ==========================================================
   SOCIAL ICONS
   ========================================================== */

.footer-socials {
    display: flex;
    align-items: center;

    gap: 14px;

    margin: 25px 0;
}

.footer-social-link {
    width: 38px;
    height: 38px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(255, 255, 255, .65);

    border-radius: 50%;

    color: #fff;

    transition:
        background-color .25s ease,
        color .25s ease,
        transform .25s ease,
        border-color .25s ease;
}

.footer-social-link:hover {
    background: #fff;
    color: #B43407;
    border-color: #fff;
    transform: translateY(-2px);
}

.footer-social-link svg {
    width: 18px;
    height: 18px;

    display: block;

    fill: currentColor;
}

.footer-social-link svg rect {
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
}

.footer-social-link svg circle {
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
}

.footer-social-link svg .social-fill {
    fill: currentColor;
    stroke: none;
}


/* ==========================================================
   CONTACT LINKS
   ========================================================== */

.footer-contact-link {
    display: block;

    margin-bottom: 12px;

    color: #fff;

    text-decoration: none;

    transition: opacity .2s ease;
}

.footer-contact-link:hover {
    opacity: .75;
}


/* ==========================================================
   COPYRIGHT
   ========================================================== */

.footer-copy {
    margin-top: 35px;

    opacity: .7;
}


/* ==========================================================
   WP FORMS
   ========================================================== */

.footer-form {
    max-width: 300px;
}

.footer-form input {
    width: 100%;
}


/* ==========================================================
   MOBILE
   ========================================================== */

@media (max-width: 900px) {

    .kuali-footer {
        padding: 60px 0;
    }

    .kuali-footer-container {
        grid-template-columns: 1fr;
        gap: 45px;
    }

}

#wpforms-52 .wpforms-field-email input {
    width: 100% !important;
    min-width: 280px !important;
    box-sizing: border-box;
}

.footer-form {
    max-width: 320px;
}

/* ==========================================================
   FOOTER - PEGAR AL FINAL DE LA PÁGINA
   ========================================================== */

html,
body {
    min-height: 100%;
}

body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.kuali-main-content {
    flex: 1 0 auto;
}


.kuali-footer {
    flex-shrink: 0;
}




/* ==========================================================
   WHATSAPP FLOTANTE KUALI
   ========================================================== */

a.kuali-whatsapp-float {
    position: fixed !important;

    right: 24px !important;
    bottom: 24px !important;

    width: 58px !important;
    height: 58px !important;

    display: flex !important;
    align-items: center !important;
    justify-content: center !important;

    padding: 0 !important;
    margin: 0 !important;

    background: #25D366 !important;

    border: none !important;
    border-radius: 50% !important;

    box-sizing: border-box !important;

    text-decoration: none !important;

    z-index: 99999 !important;

    overflow: hidden !important;
}


a.kuali-whatsapp-float svg {
    display: block !important;

    width: 30px !important;
    height: 30px !important;

    max-width: 30px !important;
    max-height: 30px !important;

    margin: 0 !important;
    padding: 0 !important;

    fill: #ffffff !important;

    flex: none !important;
}


a.kuali-whatsapp-float:hover {
    transform: scale(1.08);
}


/* ==========================================================
   MOBILE
   ========================================================== */

@media (max-width: 768px) {

    a.kuali-whatsapp-float {

        width: 54px !important;
        height: 54px !important;

        right: 18px !important;
        bottom: 18px !important;
    }


    a.kuali-whatsapp-float svg {

        width: 28px !important;
        height: 28px !important;

        max-width: 28px !important;
        max-height: 28px !important;
    }

}