/*==================================================
                    FOOTER
==================================================*/

.footer{

margin-top:120px;

position:relative;

background:linear-gradient(135deg,#ff4d88,#ff7cab,#ff9ec3);

color:white;

overflow:hidden;

}

/*==================================================
                    OLA
==================================================*/

.footer-wave{

width:100%;

line-height:0;

margin-top:-2px;

}

.footer-wave svg{

display:block;

width:100%;

height:120px;

}

.footer-wave path{

fill:#ffffff;

}

/*==================================================
                CONTENEDOR
==================================================*/

.footer-container{

width:92%;

max-width:1400px;

margin:auto;

padding:70px 0;

display:grid;

grid-template-columns:repeat(auto-fit,minmax(280px,1fr));

gap:50px;

}

/*==================================================
                LOGO
==================================================*/

.footer-logo h2{

font-size:38px;

margin-bottom:20px;

}

.footer-logo p{

line-height:1.9;

font-size:17px;

opacity:.95;

}

/*==================================================
                LINKS
==================================================*/

.footer-links{

display:flex;

flex-direction:column;

gap:15px;

}

.footer-links h3{

margin-bottom:15px;

font-size:28px;

}

.footer-links a{

color:white;

text-decoration:none;

font-size:17px;

transition:.3s;

}

.footer-links a:hover{

padding-left:12px;

}

/*==================================================
                FRASE
==================================================*/

.footer-frase h3{

font-size:28px;

margin-bottom:20px;

}

.footer-frase p{

font-size:18px;

line-height:1.9;

min-height:100px;

}

/*==================================================
                FOOTER FINAL
==================================================*/

.footer-bottom{

border-top:1px solid rgba(255,255,255,.25);

padding:25px;

text-align:center;

display:flex;

justify-content:space-between;

align-items:center;

flex-wrap:wrap;

gap:15px;

}

.footer-bottom p{

font-size:16px;

}

.footer-bottom span{

font-size:16px;

font-weight:bold;

}

/*==================================================
            CORAZONES
==================================================*/

.footer-heart{

position:absolute;

bottom:-30px;

font-size:24px;

animation:heartFloat linear forwards;

pointer-events:none;

opacity:.8;

}

/*==================================================
                ANIMACIONES
==================================================*/

@keyframes heartFloat{

0%{

transform:translateY(0) scale(.7);

opacity:0;

}

20%{

opacity:1;

}

100%{

transform:translateY(-450px) rotate(360deg);

opacity:0;

}

}

/*==================================================
            RESPONSIVE
==================================================*/

@media(max-width:768px){

.footer-container{

text-align:center;

}

.footer-links{

align-items:center;

}

.footer-bottom{

flex-direction:column;

}

.footer-logo h2{

font-size:30px;

}

.footer-links h3,

.footer-frase h3{

font-size:24px;

}

}

@media(max-width:480px){

.footer{

margin-top:80px;

}

.footer-container{

padding:50px 0;

}

.footer-logo p,

.footer-frase p,

.footer-links a{

font-size:16px;

}

}