        body {
            background-color: #FFF9FB;
            color: #2D2D2D;
            overflow-x: hidden;
            scroll-behavior: smooth;
        }
        
        .text-gradient {
            background-clip: text;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-image: linear-gradient(to right, #D4AF37, #C5A365);
        }

        .chart-container {
            position: relative;
            width: 100%;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
            height: 350px;
            max-height: 400px;
        }

        .btn-brand {
            transition: all 0.3s ease;
            background-image: linear-gradient(to right, #D81B60, #AD1457);
        }
        .btn-brand:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 15px -3px rgba(216, 27, 96, 0.3);
            filter: brightness(1.1);
        }

        .hover-card {
            transition: all 0.4s ease;
            border: 1px solid rgba(240, 98, 146, 0.1);
        }
        .hover-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 25px -5px rgba(133, 30, 62, 0.08);
            border-color: #D4AF37;
        }

        .pink-gradient-bg {
            background: linear-gradient(135deg, #db2777 0%, #be185d 100%);
        }
        
            /* Estilos del botón */
    .whatsapp-float {
        position: fixed;
        width: 60px;
        height: 60px;
        bottom: 30px;
        right: 30px;
        background-color: #25d366;
        color: #FFF;
        border-radius: 50px;
        text-align: center;
        font-size: 30px;
        box-shadow: 0px 4px 15px rgba(0,0,0,0.3);
        z-index: 9999;
        display: flex;
        align-items: center;
        justify-content: center;
        text-decoration: none;
        transition: all 0.3s ease;
    }

    /* Efecto de pulso (opcional, para llamar la atención) */
    .whatsapp-float::before {
        content: '';
        position: absolute;
        width: 100%;
        height: 100%;
        border-radius: 50%;
        background-color: #25d366;
        opacity: 0.7;
        z-index: -1;
        animation: pulse-green 2s infinite;
    }

    .whatsapp-float:hover {
        transform: scale(1.1);
        background-color: #128c7e;
    }

    @keyframes pulse-green {
        0% {
            transform: scale(0.95);
            box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
        }
        70% {
            transform: scale(1.2);
            box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
        }
        100% {
            transform: scale(0.95);
            box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
        }
    }

    /* Ajuste para móviles */
    @media (max-width: 768px) {
        .whatsapp-float {
            width: 50px;
            height: 50px;
            bottom: 20px;
            right: 20px;
        }
    }