


  .btn-flotante {
    position: fixed;
    bottom: 30px;
    right: 100px;

    background: transparent;
    border: none;            
    box-shadow: none;      

    padding: 0;
    cursor: pointer;

    transition: transform 0.3s ease;
    z-index: 999;
}
        
        .btn-flotante img {
            width: 150px;         
            height: auto;        
            
        }

      .btn-flotante:hover {
    transform: scale(1.25);
    background: transparent;
}

      
        .modal-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.5);
            display: flex;
            justify-content: center;
            align-items: center;
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.3s ease;
            z-index: 1000;
        }

        .modal-overlay.mostrar {
            opacity: 1;
            pointer-events: auto;
        }

        
        .modal-contenido {
            background-color: #fff;
            padding: 30px;
            border-radius: 15px;
            width: 90%;
            max-width: 450px;
            box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.3);
            position: relative;
            transform: translateY(-20px);
            transition: transform 0.3s ease;
        }

        .modal-overlay.mostrar .modal-contenido {
            transform: translateY(0);
        }

        .btn-cerrar {
            position: absolute;
            top: 15px;
            right: 20px;
            font-size: 24px;
            background: none;
            border: none;
            color: #aaa;
            cursor: pointer;
        }

        .btn-cerrar:hover {
            color: #333;
        }

        .modal-contenido h2 {
            margin-top: 0;
            color: #333;
        }

        .info-ayuda {
            margin-top: 20px;
        }

        .info-ayuda p {
            margin: 10px 0;
            font-size: 16px;
            color: #555;
        }

        .telefono {
            display: inline-block;
            background-color: #ff9900;
            color: white;
            padding: 10px 20px;
            border-radius: 5px;
            text-decoration: none;
            font-weight: bold;
            margin-top: 10px;
        }

        .telefono:hover {
            background-color: #ff9900ad;
        }
        .wats {
             display: inline-block;
            background-color: #218838;
            color: white;
            padding: 10px 20px;
            border-radius: 5px;
            text-decoration: none;
            font-weight: bold;
            margin-top: 10px;

        }
        .wats:hover{
           background-color: #00801ca8; 
        }