footer{
    margin-top: 70px;
    padding-top: 123px;
    padding-bottom: 67px;
    background-color: #F8F8F8;
    position: relative;
}
footer .whatsapp{
    position: absolute;
    max-width: 1190px;
    width: 100%;
    top: 0;
    left: 50%; /* Centra el elemento horizontalmente */
    transform: translate(-50%, -50%); /* Mueve el elemento hacia arriba y hacia la izquierda la mitad de su tamaño */
}
footer .whatsapp .bluebox{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    border-radius: 10px;
    justify-content: space-between;
    background-color: #1E4BAF;
    padding: 27px 50px;
}

footer .whatsapp .textwrapper{
    max-width: 763px;
}
footer .whatsapp .textwrapper h2{
    color: #FFFFFF;
    font-size: 2em;
    text-align: left;
    font-weight: 500;
    margin-bottom: 10px;
}
footer .whatsapp .textwrapper p{
    color: #FFFFFF;
    font-size: 1.25em;
}
.footer-content{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.footer-content .footer-logo{
    max-width: 256px;
}
.footer-content .footer-logo p{
    color: #606060;
	opacity: 60%;
}
.footer-content .footer-links{
    max-width: 231px;
    width: 100%;
}
.footer-content .footer-links h3{
	font-weight:500;
}
.footer-content .footer-links ul{
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-content .footer-links ul li{
    margin-bottom: 12px;
}
.footer-content .footer-links ul li a{
    font-size: 1em;
    color: #1E4BAF;
	opacity: 100%;
	font-weight: 500;
    text-decoration: none;
	transition: ease 1s;
}
.footer-content .footer-links ul li a:hover{
	opacity: 70%;
}
.footer-content .footer-links ul li:last-of-type{
    margin-bottom: 0;
}
.footer-content .footer-social{
    max-width: 270px;
    display: flex;
    flex-direction: column;
}
.footer-content .footer-social .img-area > .wp-block-group__inner-container{
	display: flex;
    flex-wrap: wrap;
    gap: 19px;
}
.footer-content .footer-social h3{
    width: 100%;
	font-weight: 500;
}
.footer-content .footer-social a{
    max-width: 39px;
    margin-right: 29px;
	transition: ease 1s;
}
.footer-content .footer-social a:hover{
	opacity: 80%;
}
.footer-content .footer-social a:last-of-type{
    margin-right: 0;
}
.footer-copy{
    margin-top: 50px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    footer {
        padding-top: 0;
		margin-top: 0;
        padding-bottom: 40px;
    }
	footer .bluebox{
		gap: 20px;
	}
	footer .whatsapp{
		    position: relative;
   		 max-width: 100%;
		margin-bottom: 60px;
		top: unset;
		left: unset;
		transform: unset;
	}
    .footer-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-content .footer-logo {
        margin-bottom: 20px;
    }

    .footer-content .footer-links {
        margin-bottom: 20px;
    }

    .footer-content .footer-social {
        margin-bottom: 20px;
    }

    .footer-content .footer-social a {
        margin-right: 15px;
    }
}

@media (max-width: 480px) {
    footer {
        padding-top: 50px;
        padding-bottom: 30px;
    }

    .footer-content .footer-social a {
        max-width: 30px;
        margin-right: 10px;
    }
}