/* * DESIGN & DEVELOPMENT BY: Antonio Salazar
 * Email: siemprenegoceando@gmail.com
 * -------------------------------------------------------
 */

/* Estilo para el botón flotante (sin cambios) */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    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;
}

.whatsapp-float:hover {
    background-color: #128c7e;
    transform: scale(1.1);
    box-shadow: 3px 3px 5px #777;
}

/* Opcional: Centrar el icono del modal (si no está centrado por defecto) */
.modal-body .btn i {
    vertical-align: middle;
}

/* Estilos para el encabezado del Modal de Contacto */
.whatsapp-modal-header {
    background-color: #25d366;
    /* Verde de WhatsApp */
    color: white;
    /* Asegura que los bordes superiores sean redondeados con el mismo color */
    border-top-left-radius: 0.3rem;
    border-top-right-radius: 0.3rem;
    border-bottom: none;
    /* Quitamos la línea divisoria por defecto */
    padding: 1rem;
    display: flex;
    align-items: center;
    /* Centrar verticalmente el icono y el texto */
}

/* Estilo para el botón de cerrar cuando está en un fondo oscuro */
.whatsapp-modal-header .btn-close {
    filter: invert(1) grayscale(100%) brightness(200%);
    /* Hace que la 'x' sea blanca */
}

@media (min-width: 320px) and (max-width: 480px) {
    .whatsapp-float {
        position: fixed;
        bottom: 30px;
        right: 20px;
        width: 60px;
        height: 60px;
        background-color: #25d366;
        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;
    }
}

@media (min-width: 481px) and (max-width: 768px) {}

@media (min-width: 769px) and (max-width: 1024px) {
    .whatsapp-float {
        position: fixed;
        bottom: 40px;
        right: 30px;
        width: 60px;
        height: 60px;
        background-color: #25d366;
        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;
    }
}

@media (min-width: 1025px) and (max-width: 1200px) {}

@media (min-width: 1201px) and (max-width: 1399px) {}

@media (min-width: 1400px) and (max-width: 2400px) {}