.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: var(--whatsapp-green);
    color: var(--text-light);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    text-decoration: none;
    box-shadow: 0 4px 8px rgba(0,0,0,0.3);
    z-index: 1000;
}
.whatsapp-float:hover {
    transform: scale(1.1);
}
.tooltip {
    position: relative;
    display: inline-block;
}
.tooltip .tooltiptext {
    visibility: hidden;
    width: 120px;
    background-color: var(--accent-gold);
    color: var(--bg-dark);
    text-align: center;
    border-radius: 6px;
    padding: 5px;
    position: absolute;
    z-index: 1;
    bottom: 125%;
    left: 50%;
    margin-left: -60px;
    opacity: 0;
    transition: opacity 0.3s;
}
.tooltip:hover .tooltiptext {
    visibility: visible;
    opacity: 1;
}
 :root {
            --bg-dark: #0b0b0b;
            --accent-gold: #D4AF37;
            --whatsapp-green: #25D366;
            --text-light: #ffffff;
            --text-secondary: #cccccc;
        }
        body {
            background-color: var(--bg-dark);
            color: var(--text-light);
            font-family: 'Arial', sans-serif;
            margin: 0;
            padding: 0;
        }
        .hero {
            background: linear-gradient(135deg, var(--bg-dark), #1a1a1a);
            padding: 80px 20px;
            text-align: center;
        }
        .hero h1 {
            color: var(--accent-gold);
            font-size: 2.5rem;
            margin-bottom: 20px;
        }
        .hero p {
            font-size: 1.2rem;
            margin-bottom: 30px;
        }
        .cta-button {
            background-color: var(--whatsapp-green);
            color: var(--text-light);
            border: none;
            padding: 15px 30px;
            font-size: 1.2rem;
            border-radius: 50px;
            animation: pulse 2s infinite;
        }
        @keyframes pulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.05); }
            100% { transform: scale(1); }
        }
        .trust-bar {
            background-color: #1a1a1a;
            padding: 20px;
            text-align: center;
        }
        .trust-bar img {
            max-width: 100px;
            margin: 0 10px;
        }
        .content-section {
            padding: 40px 20px;
            max-width: 800px;
            margin: 0 auto;
        }
        .content-section h2 {
            color: var(--accent-gold);
            margin-bottom: 20px;
        }
        .faq-section {
            padding: 40px 20px;
        }
        .accordion-button {
            background-color: var(--bg-dark);
            color: var(--text-light);
            border: 1px solid var(--accent-gold);
        }
        .accordion-button:not(.collapsed) {
            background-color: var(--accent-gold);
            color: var(--bg-dark);
        }
        .whatsapp-float {
            position: fixed;
            bottom: 20px;
            right: 20px;
            background-color: var(--whatsapp-green);
            color: var(--text-light);
            border-radius: 50%;
            width: 60px;
            height: 60px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            text-decoration: none;
            box-shadow: 0 4px 8px rgba(0,0,0,0.3);
            z-index: 1000;
        }
        .whatsapp-float:hover {
            transform: scale(1.1);
        }
        .tooltip {
            position: relative;
            display: inline-block;
        }
        .tooltip .tooltiptext {
            visibility: hidden;
            width: 120px;
            background-color: var(--accent-gold);
            color: var(--bg-dark);
            text-align: center;
            border-radius: 6px;
            padding: 5px;
            position: absolute;
            z-index: 1;
            bottom: 125%;
            left: 50%;
            margin-left: -60px;
            opacity: 0;
            transition: opacity 0.3s;
        }
        .tooltip:hover .tooltiptext {
            visibility: visible;
            opacity: 1;
        }
        @media (max-width: 768px) {
            .hero h1 {
                font-size: 2rem;
            }
            .hero p {
                font-size: 1rem;
            }
        }
/* Asegurar visibilidad y tamaño del icono flotante */
.whatsapp-float {
    z-index: 2147483647 !important;
}
.whatsapp-float svg {
    width: 28px;
    height: 28px;
    display: block;
    fill: currentColor;
}