/* --- BOTÓN DE WHATSAPP --- */
.btn-wsp {
    position: fixed;
    width: 60px;
    height: 60px;
    line-height: 63px;
    bottom: 25px;
    left: 25px; /* Botón en la esquina inferior izquierda */
    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: #20ba5a;
}

/* --- BOTÓN DE INSTAGRAM --- */
.btn-ig {
    position: fixed;
    width: 60px;
    height: 60px;
    line-height: 63px;
    bottom: 25px;
    left: 95px; /* A la derecha del botón de WhatsApp */
    background: #E1306C;
    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-ig:hover {
    background: #C13584;
}

/* --- RESPONSIVE (MÓVILES) --- */
@media only screen and (min-width: 320px) and (max-width: 768px) {
    .btn-wsp {
        width: 63px;
        height: 63px;
        line-height: 66px;
        left: 25px; /* Mantiene posición a la izquierda */
    }

    .btn-ig {
        width: 63px;
        height: 63px;
        line-height: 66px;
        left: 95px; /* Mantiene separación en móviles */
    }
}
