/************Botones flotantes*****************/
.txtstrong{
  font-weight: bold !important;
}
.txtswhites{
  color: #ffffff !important;
}

 
.txtswhitestrong{
  font-weight: bold !important;
  color: #ffffff !important;
}
/* Contenedor global - Fijo en pantalla */
.dmx-custom-float {
    position: fixed !important;
    bottom: 10px !important;
    right: 10px !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 12px !important;
    z-index: 999999 !important;
}

/* Diseño Rectangular */
.dmx-btn {
    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    padding: 0 10px !important;
    border: none !important;
    cursor: pointer !important;
    color: white !important;
    font-weight: bold !important;
    border-radius: 4px !important;
    transition: transform 0.2s !important;
    /* Medidas Desktop */
    width: 110px !important; 
    height: 40px !important;
    font-size: 12px !important;
    overflow: hidden !important; /* Mantiene el icono visible */
}

/* Colores */
.dmx-whatsapp { background-color: #25D366 !important; }
.dmx-cotiza { background-color: #007bff !important; }
.dmx-productos { background-color: #321872 !important; } /* Rosa Mexicano */
.dmx-solicita{ background-color: #E4007C !important; } /* Rosa Mexicano */

/* RESPONSIVE: Ajuste para Mobile */
@media (max-width: 576px) {
    .dmx-btn {
        width: 110px !important;  /* Medida Mobile */
        height: 40px !important; /* Medida Mobile */
        font-size: 12px !important;
        padding: 0 !important;
        justify-content: center !important;
    }
    
    /* Ocultamos el texto y margen en móvil para que quepa el icono */
    .dmx-btn span {
        
    }
    
    .dmx-btn i {
        margin: 0 !important;
    }
}
/**********************************************/