/* Contact Float Buttons */
.contact-float-wrapper {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* WhatsApp Float Button */
.whatsapp-float {
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: white;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    text-decoration: none;
}

.whatsapp-float:hover {
    background-color: #128C7E;
    transform: scale(1.1);
    color: white;
    text-decoration: none;
}

/* Phone Float Button (alternativo para móviles) */
.phone-float {
    width: 50px;
    height: 50px;
    background-color: #007bff;
    color: white;
    border-radius: 50%;
    text-align: center;
    font-size: 20px;
    box-shadow: 2px 2px 3px #999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    text-decoration: none;
    padding-top: 10px;
}

.phone-float:hover {
    background-color: #0056b3;
    transform: scale(1.1);
    color: white;
    text-decoration: none;
}

/* Ajustes para móvil */
@media (max-width: 768px) {
    .contact-float-wrapper {
        bottom: 15px;
        right: 15px;
    }
    
    .whatsapp-float {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
    
    .phone-float {
        width: 45px;
        height: 45px;
        font-size: 18px;
        padding-top: 10px;
    }
}

/* Para evitar que tape contenido en móvil */
@media (max-width: 576px) {
    footer {
        padding-bottom: 120px !important; /* Más espacio para 2 botones */
    }
}