/* * DESIGN & DEVELOPMENT BY: Antonio Salazar
 * Email: siemprenegoceando@gmail.com
 * -------------------------------------------------------
 */

/* Estilos para el nuevo botón flotante de Home */
.home-float {
    position: fixed;
    bottom: 90px;
    /* 20px (base) + 60px (alto WhatsApp) + 10px (separación) */
    right: 20px;
    width: 60px;
    height: 60px;
    background-color: #3b5998;
    /* Un color distintivo, como un azul marino */
    color: white;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease-in-out;
    text-decoration: none;
    /* Asegura que no tenga subrayado si es un <a> */
}

.home-float:hover {
    background-color: #007bb6;
    /* Un azul más claro al pasar el ratón */
    transform: scale(1.1);
    box-shadow: 3px 3px 5px #777;
}

@media (min-width: 320px) and (max-width: 480px) {
    .home-float {
        position: fixed;
        bottom: 100px;
        /* 20px (base) + 60px (alto WhatsApp) + 10px (separación) */
        right: 20px;
        width: 60px;
        height: 60px;
        background-color: #3b5998;
        /* Un color distintivo, como un azul marino */
        color: white;
        border-radius: 50%;
        text-align: center;
        font-size: 30px;
        box-shadow: 2px 2px 3px #999;
        z-index: 1000;
        display: flex;
        justify-content: center;
        align-items: center;
        transition: all 0.3s ease-in-out;
        text-decoration: none;
        /* Asegura que no tenga subrayado si es un <a> */
    }
}

@media (min-width: 481px) and (max-width: 768px) {}

@media (min-width: 769px) and (max-width: 1024px) {
    .home-float {
        position: fixed;
        bottom: 130px;
        /* 20px (base) + 60px (alto WhatsApp) + 10px (separación) */
        right: 30px;
        width: 60px;
        height: 60px;
        background-color: #3b5998;
        /* Un color distintivo, como un azul marino */
        color: white;
        border-radius: 50%;
        text-align: center;
        font-size: 30px;
        box-shadow: 2px 2px 3px #999;
        z-index: 1000;
        display: flex;
        justify-content: center;
        align-items: center;
        transition: all 0.3s ease-in-out;
        text-decoration: none;
        /* Asegura que no tenga subrayado si es un <a> */
    }
}

@media (min-width: 1025px) and (max-width: 1200px) {}

@media (min-width: 1201px) and (max-width: 1399px) {}

@media (min-width: 1400px) and (max-width: 2400px) {}