#backToTop{
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    background: var(--primary-color);
    color: white;
    border: 3px solid var(--primary-color);
    padding: 12px 15px;
    font-size: 16px;
    border-radius: 50px;
    cursor: pointer;
    display: none;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
}
#backToTop:hover{
    background: white;
    border: 3px solid var(--primary-color);
    color: var(--primary-color);
}
/*Boton de Whatsapp*/
.btn-wsp{
    position:fixed;
    width: 55px;
    height:55px;
    line-height: 55px;
    bottom:30px;
    right:30px;
    background:#25d366;
    color:#FFF;
    border-radius:50px;
    text-align:center;
    font-size:35px;
    box-shadow: 0px 1px 10px rgba(0,0,0,0.3);
    z-index:100;
    transition: all 300ms ease;
}
.btn-wsp:hover{
    background: #fff/*#20ba5a*/;
    color: #20ba5a;
}
footer{
    background: var(--primary-color);
    /*padding: 60px 20px 30px;*/
    text-align: center;
    color: var(--primary-color);
}
.footer-bottom{
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 30px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
}
.footer-logo{
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 22px;
    font-weight: bold;
    color: white;
}
.footer-logo i{
    color: var(--secondary-color);
}
.footer-links{
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
    justify-content: center;
    margin: 20px 0;
}
.footer-links a{
    color: white;
    text-decoration: none;
    font-size: 14px;
}
.footer-links a:hover{
    color: var(--secondary-color);
}
.social-icons{
    display: flex;
    gap: 15px;
}
.social-icons a{
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--primary-color);
    text-decoration: none;
    background: white;
    font-size: 16px;
    transition: background 0.3s;
}
.copyright{
    margin-top: 20px;
    font-size: 13px;
    color: #bbb;
    padding-bottom: 20px;
}
.whatsapp-float {
    position: fixed;
    bottom: 80px;
    right: 30px;
    background: #25D366;
    color: white;
    font-size: 22px;
    padding: 14px 16px;
    border-radius: 50%;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    z-index: 999;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}