/* FOOTER */
footer {
    padding: 90px 0 20px;
    background-color: #F9F9F9;
}

.nav-footer ul {
    padding: 0;
    margin: 0;
    margin-top: 10px;
    display: flex;
    flex-direction: column;
    justify-content: start;
    text-align: start;
    gap: 14px;
}

.nav-footer ul li a {
    font-size: 16px;
}

footer .column-content {
    padding-bottom: 60px;
}

footer .iconos {
    position: relative;
    left: -5px;
}

.text-copy {
    padding: .75rem;
    color: #444444;
    font-size: 14px;
    font-weight: 100;
}

/* Forms */
#wpforms-form-31 input {
    min-width: 100%;
    border: none;
    background-color: #E3E3E3;
    border-radius: 0;
    height: 50px;
    padding: 0 1.5rem;
    font-style: italic;
    color: #444444;
    font-weight: 100;
    outline: none;
}

#wpforms-form-31 input:focus {
    box-shadow: none;
    border: none;
    outline: none;
}

#wpforms-31-field_1-container {
    padding: 4px 0;
}

#wpforms-form-31 button {
    width: 100%;
    height: 44px;
    border-radius: 0;
    background: #FFC72C;
    font-size: 18px;
}

#wpforms-form-31 button:hover {
    background: #dfb031;
}


footer .text-contact {
    font-size: 24px;
}


.whatsapp-wrapper {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
}

.whatsapp-icon {
    cursor: pointer;
}

.whatsapp-dropdown {
    display: none;
    position: absolute;
    bottom: 12px;
    right: 110px;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
    white-space: nowrap;
}



.whatsapp-dropdown::after {
    /* right chebron */
    content: "";
    position: absolute;
    top: 50%;
    right: -12px;
    border-top: 8px solid #ffffff;
    border-right: 8px solid transparent;
    border-left: 8px solid transparent;
    transform: rotate(-90deg);
}

.whatsapp-dropdown.active {
    display: block;
}

.whatsapp-dropdown a {
    display: block;
    color: #25D366;
    text-decoration: none;
    padding: 10px 16px;
}
.whatsapp-dropdown a:hover {
    background-color: #f1f1f1;
}



/* MEDIA QUERIES */
/* Extra small devices (phones, 600px and down) */
@media only screen and (max-width: 600px) {
    footer {
        padding: 22px 0 24px;
    }

    #wpforms-form-31 input {
        min-width: 85%;
        max-width: 85%;
        margin: auto;
    }

    #wpforms-form-31 button {
        width: 55%;
        max-width: 55%;
        margin: auto;
        border-radius: 20px;
    }

    footer .iconos {
        left: unset;
        margin: 1rem 0;
    }

    footer .column-content {
        padding-bottom: 0;
    }
}