/* Contenedor principal */
#brave-quiz-container, #user-info {
    max-width: 600px;
    margin: 40px auto;
    padding: 30px;
    border-radius: 30px;
    font-family: 'Segoe UI', sans-serif;
    color: #333;
    background: #fff;
}

/* Estilos de los inputs */
#user-info-form input {
    width: 100%;
    padding: 15px;
    margin-bottom: 15px;
    font-size: 16px;
    border-radius: 30px;
    background: #f8f9fa;
    border: none;
}


/* Botones */
#user-info-form button,
#brave-quiz-form button {
    background-color: #000;
    color: #fff;
    border: none;
    padding: 12px 20px;
    font-size: 16px;
    border-radius: 30px;
    cursor: pointer;
    transition: background 0.3s ease;
}

#user-info-form button:hover,
#brave-quiz-form button:hover {
    background-color: #f9b000;
}

/* Preguntas */
.quiz-question {
    margin-bottom: 30px;
    animation: fadeIn 0.4s ease-in-out;
    background: #fff;
    max-width: 600px;
    margin: 40px auto;
    padding: 30px;
    border-radius: 16px;
}

.quiz-question h3 {
    font-size: 20px;
    margin-bottom: 15px;
}

/* Opciones */
.quiz-question label {
    display: block;
    background-color: #f8f9fa;
    border-radius: 100px;
    padding: 10px 15px;
    margin-bottom: 10px;
    cursor: pointer;
    transition: background 0.2s ease;
}

.quiz-question input[type="radio"] {
    margin-right: 10px;
}

.quiz-question label:hover {
    background-color: #e9f3ff;
}

/* Resultado */
#quiz-result {
    color: white;
    margin: 30px auto;
    text-align: center;
    background: #000000;
    padding: 20px;
    border-radius: 16px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    max-width: 600px;
}

/* Animación */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(15px); }
    to   { opacity: 1; transform: translateY(0); }
}

#quiz-result img {
    max-width: 500px;
    max-height: 500px;
    width: auto;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

#quiz-result h2 {
    color: white !important;
}

.quiz-actions {
    margin-top: 30px;
    text-align: center;
}

.quiz-btn {
    background-color: #ff6b6b;
    color: #fff;
    padding: 14px 28px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    font-size: 16px;
    display: inline-block;
    margin-bottom: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.quiz-btn:hover {
    background-color: #e04949;
    transform: scale(1.05);
}

.quiz-social {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 15px;
}

.social-icon {
    width: 64px;
    height: 64px;
    display: inline-block;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.15);
    transition: transform 0.2s ease;
}

.social-icon:hover {
    transform: scale(1.1);
}

.social-icon.whatsapp {
    background-image: url('https://www.bbbsc.com/wp-content/uploads/2025/06/icons8-whatsapp-64.png');
}

.social-icon.instagram {
    background-image: url('https://www.bbbsc.com/wp-content/uploads/2025/06/icons8-instagram-64.png');
}

.social-icon.facebook {
    background-image: url('https://www.bbbsc.com/wp-content/uploads/2025/06/icons8-facebook-nuevo-60.png');
}

.quiz-btn{
    background:#f9b000;
}

.quiz-btn:hover{
    background: #000;   
}
