/* Settem Acordeón v1.0 */

.settem-acc {
    width: 100%;
    background-color: #0a0a0a;
}

/* Item */
.settem-acc-item {
    border-top: 0.5px solid #1a1a1a;
    border-bottom: 0.5px solid #1a1a1a;
    margin-top: -0.5px;
}

/* Header (botón clickeable) */
.settem-acc-header {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    background: none;
    border: none;
    padding: 20px 0;
    cursor: pointer;
    text-align: left;
    outline: none;
}

.settem-acc-header:focus-visible {
    outline: 2px solid #e8006a;
    outline-offset: 2px;
}

/* Título pregunta */
.settem-acc-title {
    font-size: 15px;
    font-weight: 600;
    color: #ffffff;
    line-height: 1.4;
    flex: 1;
}

/* Ícono + */
.settem-acc-icon {
    font-size: 20px;
    color: #e8006a;
    line-height: 1;
    flex-shrink: 0;
    transition: transform 0.3s ease;
    font-style: normal;
    font-weight: 300;
    display: inline-block;
    width: 20px;
    text-align: center;
}

/* Cuando está abierto: rotar ícono a × */
.settem-acc-item--open .settem-acc-icon {
    transform: rotate(45deg);
}

/* Cuerpo con animación */
.settem-acc-body-wrap {
    overflow: hidden;
}

/* Respuesta */
.settem-acc-body {
    font-size: 14px;
    color: #888888;
    line-height: 1.8;
    padding-bottom: 20px;
}
