.elementor-8428 .elementor-element.elementor-element-1e5169f{--display:flex;}:root{--page-title-display:none;}/* Start custom CSS for html, class: .elementor-element-ad66b1d *//* 🔥 Contenedor General */
.custom-totalpoll {
    background: linear-gradient(135deg, #6d28d9, #8b5cf6); /* Morado elegante */
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    max-width: 500px;
    margin: auto;
    text-align: center;
    transition: all 0.3s ease-in-out;
}

/* 🎯 Encuesta (TotalPoll) */
.custom-totalpoll .totalpoll-container {
    background: transparent; /* Usa el fondo externo */
    border: none;
    padding: 0;
}

/* 📌 Pregunta de la Encuesta */
.custom-totalpoll .totalpoll-question {
    font-size: 22px;
    font-weight: bold;
    color: #fff;
    margin-bottom: 15px;
}

/* ✅ Opciones de Respuesta */
.custom-totalpoll .totalpoll-choices {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* Botones de opción */
.custom-totalpoll .totalpoll-choice {
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
    padding: 12px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 18px;
    font-weight: 500;
    text-align: center;
    transition: all 0.3s ease-in-out;
    color: #fff;
}

.custom-totalpoll .totalpoll-choice:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.05);
}

/* 🚀 Botón de Enviar */
.custom-totalpoll .totalpoll-submit {
    background: #f72585;
    color: #fff;
    font-size: 18px;
    font-weight: bold;
    padding: 12px 16px;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    width: 80%;
    margin-top: 15px;
    transition: all 0.3s ease-in-out;
}

.custom-totalpoll .totalpoll-submit:hover {
    background: #b5179e;
    transform: scale(1.05);
}

/* ✨ Animación */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.custom-totalpoll {
    animation: fadeIn 0.5s ease-in-out;
}/* End custom CSS */