/* ======================================================
   DJ BOOKING EVALUATOR – FORM STYLE (EDITORIAL DARK)
   ====================================================== */

/* Reset suave solo para el formulario */
.djbe-evaluation-form,
.djbe-evaluation-form * {
    box-sizing: border-box;
}

/* Contenedor general – totalmente transparente */
.djbe-evaluation-form {
    background: transparent;
    padding: 0;
    margin: 0;
    color: #ffffff;
    font-family: inherit;
}

/* ======================================================
   GRID 2x2 DE PREGUNTAS
   ====================================================== */

.djbe-questions-grid {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    column-gap: 80px !important;
    row-gap: 48px !important;
    width: 100%;
}

.djbe-questions-grid > .djbe-question {
    width: 100%;
    max-width: 100%;
}

.djbe-questions-grid {
    align-items: start;
}


/* Cada bloque de pregunta */
.djbe-question {
    width: 100%;
}

/* Título de la pregunta */
.djbe-question-title {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 10px;
    letter-spacing: 0.3px;
}

/* ======================================================
   RADIOS EN TEXTO (1 2 3 4 5)
   ====================================================== */

.djbe-radio-text {
    display: flex;
    gap: 14px;
    font-size: 16px;
}

.djbe-radio-text label {
    cursor: pointer;
}

/* Ocultamos el radio real */
.djbe-radio-text input {
    display: none;
}

/* Estilo del texto */
.djbe-radio-text span {
    opacity: 0.6;
    transition: opacity 0.15s ease, color 0.15s ease;
}

/* Hover */
.djbe-radio-text label:hover span {
    opacity: 1;
}

/* Seleccionado */
.djbe-radio-text input:checked + span {
    opacity: 1;
    font-weight: 600;
    color: #ffffff;
}

/* ======================================================
   SELECT DE DJ
   ====================================================== */

.djbe-evaluation-form select {
    width: 100%;
    padding: 12px 14px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 6px;
    color: #ffffff;
    font-size: 16px;
}

.djbe-evaluation-form select option {
    color: #000;
}

/* ======================================================
   TEXTAREA COMENTARIOS
   ====================================================== */

.djbe-evaluation-form textarea {
    width: 100%;
    padding: 12px 14px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 6px;
    color: #ffffff;
    font-size: 15px;
    resize: vertical;
}

/* ======================================================
   BOTÓN
   ====================================================== */

.djbe-evaluation-form button {
    background: #ffffff;
    color: #000000;
    border: none;
    padding: 14px 26px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    border-radius: 6px;
    transition: background 0.2s ease, color 0.2s ease;
}

.djbe-evaluation-form button:hover {
    background: #eaeaea;
}

/* ======================================================
   ESPACIADOS GENERALES
   ====================================================== */

.djbe-evaluation-form p {
    margin-bottom: 28px;
}

/* ======================================================
   RESPONSIVE
   ====================================================== */

@media (max-width: 768px) {

    .djbe-questions-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .djbe-radio-text {
        gap: 18px;
    }
}


