/**
 * Página de solicitud de alta como distribuidor y cambio de contraseña.
 *
 * Tokens tomados del diseño de Figma:
 *   Primary/70  #004A4E   Secondary/70 #00A99D
 *   Primary/5   #D4E1E1   Primary/1    #F2F6F6
 *   Neutral/50  #667085   Tipografía   Poppins
 *
 * @author  DevBlinders <info@devblinders.com>
 */

/*
 * El layout del theme envuelve el contenido en un `.container` de Bootstrap
 * (1270 con 15 de padding), que dejaba la página en 1208 útiles en vez de los
 * 1240 del diseño e impedía que el fondo llegase a los bordes. En esta página
 * ese contenedor solo envuelve a `.dbreg`, así que se neutraliza.
 */
#module-dblogin-register #wrapper > .container {
    max-width: none;
    padding-left: 0;
    padding-right: 0;
    width: 100%;
}

.dbreg {
    --dbreg-primary: #004a4e;
    --dbreg-secondary: #00a99d;
    --dbreg-border: #d4e1e1;
    --dbreg-surface: #f2f6f6;
    --dbreg-muted: #667085;
    --dbreg-danger: #c0392b;

    background-color: var(--dbreg-surface);
    color: var(--dbreg-primary);
    font-family: "Poppins", -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
    font-size: 16px;
    line-height: 24px;
    padding: 48px 0 64px;
}

/*
 * Figma: contenedor 1240 = columna principal 840 + 40 de separación + lateral 360.
 * Con el `box-sizing: border-box` del theme, el padding va por dentro: 1272 - 32
 * deja los 1240 exactos del diseño y mantiene el aire lateral en móvil.
 */
.dbreg__container {
    align-content: start;
    display: grid;
    gap: 48px 40px;
    grid-template-areas:
        "main sidebar"
        "faqs sidebar"
        "info sidebar";
    grid-template-columns: minmax(0, 1fr) 360px;
    margin: 0 auto;
    max-width: 1272px;
    padding: 0 16px;
    width: 100%;
}

.dbreg__main { grid-area: main; min-width: 0; }
.dbreg__sidebar { grid-area: sidebar; min-width: 0; }
.dbreg-faqs { grid-area: faqs; min-width: 0; }
.dbreg-info { grid-area: info; min-width: 0; }

.dbreg--narrow .dbreg__card {
    margin: 0 auto;
    max-width: 620px;
}

/* ---------- Iconos ---------- */

/*
 * SVG en línea sacados del Figma. Miden 1em, así que el tamaño se controla
 * con `font-size` desde cada contexto, y el color con `color`.
 */
.dbreg-icon {
    display: inline-block;
    flex-shrink: 0;
    vertical-align: middle;
}

/* ---------- Cabecera y pie propios de la página ---------- */

/*
 * La cabecera es específica de esta página: no se usa la del theme.
 * Medidas del componente `Header-Desktop` del Figma.
 */
.dbreg-header {
    background-color: #004a4e;
    color: #fff;
    padding: 20px 16px;
}

.dbreg-header__inner {
    align-content: center;
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 0 auto;
    max-width: 1240px;
    row-gap: 16px;
    width: 100%;
}

/* El logo de la tienda ya es un PNG de 200x19, la medida del diseño. */
.dbreg-header__logo { flex-shrink: 0; }
.dbreg-header__logo img { display: block; height: auto; width: 200px; }

.dbreg-header__help {
    align-content: center;
    align-items: center;
    display: flex;
    flex: 1 0 0;
    flex-wrap: wrap;
    font-size: 16px;
    gap: 8px 12px;
    justify-content: flex-end;
    line-height: 24px;
    margin: 0;
    min-width: 200px;
}

/*
 * El layout del theme envuelve esta cabecera en `<header id="header">` y pinta
 * sus enlaces con `#header a { color: var(--header_link) }`, que por el ID gana
 * a cualquier selector de clases. Aquí se recupera el blanco del diseño.
 */
#header .dbreg-header__help,
#header .dbreg-header__help span,
#header .dbreg-header__help a,
#header .dbreg-header__help a:hover,
#header .dbreg-header__help a:focus { color: #fff; }

.dbreg-header .dbreg-header__help a {
    align-items: center;
    display: inline-flex;
    font-weight: 400;
    gap: 8px;
    text-decoration: none;
}

.dbreg-header__help .dbreg-icon { font-size: 16px; }

.dbreg-footer {
    background-color: #004a4e;
    color: #fff;
    font-size: 14px;
    line-height: 20px;
}

.dbreg-footer__inner {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    margin: 0 auto;
    max-width: 1272px;
    padding: 24px 16px;
    text-align: center;
    width: 100%;
}

/*
 * El campo del back office envuelve los enlaces en un <p>. Sin esto, los tres
 * enlaces viajan juntos dentro de un bloque que se separa del copyright y no
 * comparte su línea base. Con `display: contents` desaparecen los envoltorios
 * y cada enlace pasa a ser un elemento más de la fila, con el mismo gap de 8px
 * y el mismo salto de línea que en Figma.
 */
.dbreg-footer__links,
.dbreg-footer__links p { display: contents; }

.dbreg-footer .dbreg-footer__inner,
.dbreg-footer .dbreg-footer__links a,
.dbreg-footer .dbreg-footer__links a:hover,
.dbreg-footer .dbreg-footer__links a:focus { color: #fff; }

.dbreg-footer .dbreg-footer__links a { text-decoration: none; }
.dbreg-footer .dbreg-footer__links a:hover { text-decoration: underline; }

/* ---------- Cabecera de contenido ---------- */

.dbreg__intro { margin-bottom: 16px; }

.dbreg__title {
    color: var(--dbreg-primary);
    font-size: 26px;
    font-weight: 600;
    line-height: 32px;
    margin: 0 0 12px;
}

.dbreg__subtitle {
    color: var(--dbreg-primary);
    margin: 0 0 16px;
}

.dbreg-advantages {
    background-color: var(--dbreg-border);
    display: flex;
    flex-wrap: wrap;
    gap: 8px 20px;
    list-style: none;
    margin: 0;
    padding: 8px 16px;
    justify-content: space-between;
}

.dbreg-advantages__item {
    align-items: center;
    display: flex;
    font-size: 14px;
    font-weight: 600;
    gap: 8px;
    white-space: nowrap;
}

.dbreg-advantages__item .dbreg-icon {
    color: var(--dbreg-secondary);
    font-size: 16px;
}

.dbreg__login {
    font-size: 14px;
    margin: 0 0 16px;
}

.dbreg__login a {
    color: var(--dbreg-primary);
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
}

/* ---------- Tarjeta principal ---------- */

.dbreg__card {
    background-color: #fff;
    border: 1px solid var(--dbreg-border);
    padding: 32px;
}

/* ---------- Indicador de pasos ---------- */

.dbreg-steps {
    counter-reset: dbreg-step;
    display: flex;
    list-style: none;
    margin: 0 0 32px;
    padding: 0;
}

.dbreg-steps__item {
    flex: 1;
    position: relative;
    text-align: center;
}

.dbreg-steps__item::before {
    background-color: var(--dbreg-border);
    content: "";
    height: 1px;
    left: -50%;
    position: absolute;
    top: 20px;
    width: 100%;
    z-index: 0;
}

.dbreg-steps__item:first-child::before { display: none; }

.dbreg-steps__bullet {
    align-items: center;
    background-color: #fff;
    border: 1px solid var(--dbreg-primary);
    border-radius: 50%;
    color: var(--dbreg-primary);
    display: inline-flex;
    font-weight: 600;
    height: 40px;
    justify-content: center;
    position: relative;
    width: 40px;
    z-index: 1;
}

.dbreg-steps__check { display: none; font-size: 20px; }

.dbreg-steps__item.is-active .dbreg-steps__bullet {
    background-color: var(--dbreg-border);
    border-color: var(--dbreg-primary);
}

.dbreg-steps__item.is-done .dbreg-steps__bullet {
    background-color: var(--dbreg-secondary);
    border-color: var(--dbreg-secondary);
    color: #fff;
}

.dbreg-steps__item.is-done .dbreg-steps__number { display: none; }
.dbreg-steps__item.is-done .dbreg-steps__check { display: block; }
.dbreg-steps__item.is-done .dbreg-steps__bullet { color: #fff; }

.dbreg-steps__label {
    display: block;
    font-size: 13px;
    line-height: 20px;
    margin-top: 8px;
}

/* ---------- Pasos del formulario ---------- */

.dbreg-step {
    border: 0;
    margin: 0;
    padding: 0;
}

.dbreg-step[hidden] { display: none; }

.dbreg-step__title {
    color: var(--dbreg-primary);
    float: none;
    font-size: 18px;
    font-weight: 600;
    line-height: 24px;
    margin: 0 0 4px;
    padding: 0;
    width: auto;
}

.dbreg-step__desc {
    color: var(--dbreg-primary);
    font-size: 14px;
    line-height: 20px;
    margin: 0 0 24px;
}

.dbreg-step__actions {
    align-items: center;
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-top: 24px;
}

.dbreg-step__actions--single { justify-content: center; }
.dbreg-step__actions--center { justify-content: center; }

/* ---------- Campos ---------- */

.dbreg-field { margin-bottom: 20px; }
.dbreg-field[hidden] { display: none; }

/* El theme alinea a la derecha las etiquetas de formulario; aquí van a la izquierda. */
.dbreg-field__label {
    color: var(--dbreg-primary);
    display: block;
    font-size: 14px;
    font-weight: 600;
    line-height: 20px;
    margin-bottom: 6px;
    text-align: left;
}

.dbreg-field__required { color: var(--dbreg-primary); }
.dbreg-field__optional { color: var(--dbreg-primary); font-weight: 400; }

.dbreg-field__control {
    background-color: #fff;
    border: 1px solid var(--dbreg-primary);
    color: var(--dbreg-primary);
    display: block;
    font-family: inherit;
    font-size: 15px;
    height: 44px;
    line-height: 22px;
    padding: 10px 12px;
    width: 100%;
}

select.dbreg-field__control {
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23004A4E' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-position: right 12px center;
    background-repeat: no-repeat;
    padding-right: 36px;
}

.dbreg-field__control--area {
    height: auto;
    min-height: 96px;
    resize: vertical;
}

.dbreg-field__control:focus {
    border-color: var(--dbreg-secondary);
    box-shadow: 0 0 0 3px rgba(0, 169, 157, 0.15);
    outline: none;
}

.dbreg-field__help {
    color: var(--dbreg-primary);
    font-size: 12px;
    line-height: 18px;
    margin: 6px 0 0;
}

.dbreg-field__error {
    color: var(--dbreg-danger);
    font-size: 12px;
    line-height: 18px;
    margin: 6px 0 0;
}

.dbreg-field.has-error .dbreg-field__control { border-color: var(--dbreg-danger); }

.dbreg-field__password { position: relative; }

.dbreg-field__reveal {
    align-items: center;
    background: none;
    border: 0;
    color: var(--dbreg-primary);
    cursor: pointer;
    display: flex;
    font-size: 20px;
    height: 44px;
    justify-content: center;
    padding: 0 12px;
    position: absolute;
    right: 0;
    top: 0;
}

/* Contraseña visible: el mismo ojo del diseño, atenuado. */
.dbreg-field__reveal[aria-pressed="true"] { color: var(--dbreg-secondary); }

.dbreg-field--check { margin-bottom: 24px; }

.dbreg-check {
    align-items: flex-start;
    display: flex;
    font-size: 14px;
    font-weight: 400;
    gap: 8px;
    line-height: 20px;
    margin: 0;
    text-align: left;
}

.dbreg-check input { margin-top: 3px; }
.dbreg-check a { color: var(--dbreg-primary); text-decoration: underline; }

/*
 * Casilla de aceptación del módulo RGPD (psgdpr). Su plantilla usa
 * `custom-checkbox` + un icono de Material Icons que este theme no carga, así
 * que aquí se muestra el checkbox nativo y se le da el aspecto del diseño.
 */
.dbreg-field--check #gdpr_consent { font-size: 17px; line-height: 26px; }

.dbreg-field--check #gdpr_consent .custom-checkbox {
    display: block;
    float: none;
    margin: 0;
    padding: 0;
}

.dbreg-field--check #gdpr_consent label {
    align-items: flex-start;
    color: var(--dbreg-primary);
    display: flex;
    font-weight: 400;
    gap: 12px;
    margin: 0;
    text-align: left;
}

/*
 * La casilla del diseño se dibuja sobre el input nativo: cuadro relleno con el
 * check en un SVG incrustado. Así no depende de ninguna fuente de iconos, que
 * es justo lo que rompía el markup original de psgdpr en este theme.
 */
.dbreg-field--check #gdpr_consent input[type="checkbox"] {
    -webkit-appearance: none;
    appearance: none;
    background-color: #fff;
    background-position: center;
    background-repeat: no-repeat;
    background-size: 18px 18px;
    border: 2px solid var(--dbreg-primary);
    border-radius: 4px;
    cursor: pointer;
    flex-shrink: 0;
    height: 26px;
    margin: 0;
    opacity: 1;
    position: static;
    width: 26px;
}

.dbreg-field--check #gdpr_consent input[type="checkbox"]:checked {
    background-color: var(--dbreg-primary);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%23ffffff' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M3 8.5 6.5 12 13 4.5'/%3E%3C/svg%3E");
}

.dbreg-field--check #gdpr_consent input[type="checkbox"]:focus-visible {
    outline: 2px solid var(--dbreg-secondary);
    outline-offset: 2px;
}

/*
 * psgdpr pinta un checkbox falso (`<span>` con icono) justo detrás del nativo.
 * Como aquí se muestra el nativo, hay que ocultar ese span entero: lleva un
 * icono dentro, así que `:empty` no lo alcanzaba y salían dos casillas.
 */
.dbreg-field--check #gdpr_consent input[type="checkbox"] + span {
    display: none;
}

.dbreg-field--check #gdpr_consent a { color: var(--dbreg-secondary); text-decoration: none; }
.dbreg-field--check #gdpr_consent a:hover,
.dbreg-field--check #gdpr_consent a:focus { text-decoration: underline; }

.dbreg-field--check.has-error #gdpr_consent label { color: var(--dbreg-danger); }
.dbreg-field--check.has-error #gdpr_consent input[type="checkbox"] { border-color: var(--dbreg-danger); }

/*
 * Información básica de protección de datos. Va debajo de la casilla y no es
 * una segunda aceptación: solo informa, por eso no lleva control asociado.
 */
.dbreg-legal {
    color: var(--dbreg-primary);
    font-size: 15px;
    line-height: 24px;
    margin-top: 12px;
    text-align: left;
}

.dbreg-legal p { margin: 0 0 8px; }
.dbreg-legal p:last-child { margin-bottom: 0; }
.dbreg-legal strong { font-weight: 600; }
.dbreg-legal a { color: var(--dbreg-secondary); text-decoration: none; }
.dbreg-legal a:hover,
.dbreg-legal a:focus { text-decoration: underline; }

/* Campo auxiliar del formulario, fuera de la vista. */
.dbreg-field-alt {
    height: 1px;
    left: -10000px;
    overflow: hidden;
    position: absolute;
    top: auto;
    width: 1px;
}

/* ---------- Botones ---------- */

.dbreg-btn {
    align-items: center;
    border: 1px solid transparent;
    cursor: pointer;
    display: inline-flex;
    font-family: inherit;
    font-size: 15px;
    font-weight: 600;
    gap: 6px;
    justify-content: center;
    line-height: 22px;
    padding: 11px 24px;
    text-align: center;
    text-decoration: none;
    transition: background-color .15s ease, color .15s ease;
}

.dbreg-btn--primary {
    background-color: var(--dbreg-primary);
    color: #fff;
}

.dbreg-btn--primary:hover,
.dbreg-btn--primary:focus { background-color: #00363a; color: #fff; }

/*
 * Estado inactivo: el botón de envío está deshabilitado mientras no se acepten
 * las condiciones, y tiene que notarse. Sin esto se veía idéntico al activo.
 */
.dbreg-btn[disabled],
.dbreg-btn[disabled]:hover,
.dbreg-btn[disabled]:focus {
    background-color: var(--dbreg-primary);
    color: #fff;
    cursor: not-allowed;
    opacity: .4;
}

.dbreg-btn--outline {
    background-color: #fff;
    border-color: var(--dbreg-primary);
    color: var(--dbreg-primary);
}

.dbreg-btn--outline:hover,
.dbreg-btn--outline:focus { background-color: var(--dbreg-surface); color: var(--dbreg-primary); }

.dbreg-btn--link {
    background: none;
    color: var(--dbreg-primary);
    padding: 11px 8px;
}

.dbreg-btn--link .dbreg-icon { font-size: 20px; }

/* ---------- Aviso bajo el formulario ---------- */

.dbreg-notice {
    align-items: flex-start;
    background-color: var(--dbreg-border);
    color: var(--dbreg-primary);
    display: flex;
    font-size: 13px;
    gap: 8px;
    line-height: 20px;
    margin: 24px 0 0;
    padding: 12px 16px;
}

.dbreg-notice .dbreg-icon { font-size: 20px; }

/* ---------- Confirmación ---------- */

.dbreg-confirmation__title {
    color: var(--dbreg-primary);
    font-size: 20px;
    font-weight: 600;
    line-height: 28px;
    margin: 0 0 16px;
}

.dbreg-confirmation__content { font-size: 14px; line-height: 22px; }
.dbreg-confirmation__content p { margin: 0 0 12px; }

.dbreg-confirmation__action {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    margin: 24px 0 0;
}

.dbreg-confirmation--centered { text-align: center; }

.dbreg-confirmation__icon {
    align-items: center;
    background-color: var(--dbreg-secondary);
    border-radius: 50%;
    color: #fff;
    display: inline-flex;
    font-size: 24px;
    height: 48px;
    justify-content: center;
    margin-bottom: 16px;
    width: 48px;
}

/* ---------- Columna lateral ---------- */

.dbreg-card {
    margin-bottom: 24px;
    padding: 24px 20px;
}

.dbreg-card:last-child { margin-bottom: 0; }

.dbreg-card--process { background-color: #fff; }
.dbreg-card--stats { background-color: var(--dbreg-border); }

/* En el diseño el bloque de ayuda va sin fondo, solo con el borde. */
.dbreg-card--help {
    background-color: transparent;
    border: 1px solid var(--dbreg-primary);
}

.dbreg-card__title {
    color: var(--dbreg-primary);
    font-size: 18px;
    font-weight: 600;
    line-height: 24px;
    margin: 0 0 16px;
}

.dbreg-process { list-style: none; margin: 0; padding: 0; }

.dbreg-process__item {
    display: flex;
    gap: 10px;
    margin-bottom: 16px;
}

.dbreg-process__item:last-child { margin-bottom: 0; }

.dbreg-process__icon { color: var(--dbreg-secondary); font-size: 24px; }
.dbreg-process__body { min-width: 0; }

.dbreg-process__label {
    font-size: 14px;
    font-weight: 400;
    margin: 0 0 2px;
}

.dbreg-process__text { font-size: 13px; line-height: 20px; }
.dbreg-process__text p { margin: 0; }

.dbreg-stats { list-style: none; margin: 0; padding: 0; }

.dbreg-stats__item {
    font-size: 18px;
    font-weight: 600;
    line-height: 20px;
    margin-bottom: 12px;
}

.dbreg-stats__item:last-child { margin-bottom: 0; }

.dbreg-help__text { font-size: 13px; line-height: 20px; margin: 0 0 12px; }

.dbreg-help__phone {
    align-items: center;
    display: flex;
    gap: 6px;
    margin: 0;
}

.dbreg-help__phone a {
    color: var(--dbreg-primary);
    font-weight: 600;
    text-decoration: none;
}

.dbreg-help__phone .dbreg-icon { color: var(--dbreg-primary); font-size: 20px; }

.dbreg-help__schedule {
    color: var(--dbreg-primary);
    font-size: 12px;
    line-height: 18px;
    margin: 0 0 12px;
    padding-left: 24px;
}

.dbreg-help__mail { font-size: 13px; line-height: 20px; margin: 0; }
.dbreg-help__mail a { color: var(--dbreg-primary); text-decoration: underline; }

/* ---------- Preguntas frecuentes ---------- */

.dbreg-faqs { max-width: 840px; }

.dbreg-faqs__title {
    color: var(--dbreg-primary);
    font-size: 24px;
    font-weight: 600;
    line-height: 28px;
    margin: 0;
}

/* La franja gruesa del diseño va sobre la lista, no bajo el titular. */
.dbreg-faqs__list {
    border-top: 6px solid var(--dbreg-primary);
    margin-top: 16px;
    padding-top: 6px;
}

.dbreg-faq {
    background-color: #fff;
    margin-bottom: 12px;
}

.dbreg-faq:last-child { margin-bottom: 0; }

.dbreg-faq__heading { margin: 0; }

.dbreg-faq__trigger {
    align-items: center;
    background: none;
    border: 0;
    color: var(--dbreg-primary);
    cursor: pointer;
    display: flex;
    font-family: inherit;
    font-size: 16px;
    font-weight: 600;
    gap: 12px;
    justify-content: space-between;
    line-height: 24px;
    min-height: 50px;
    padding: 13px 15px;
    text-align: left;
    width: 100%;
}

.dbreg-faq__chevron { color: var(--dbreg-muted); font-size: 16px; transition: transform .15s ease; }
.dbreg-faq__trigger[aria-expanded="true"] .dbreg-faq__chevron { transform: rotate(180deg); }

.dbreg-faq__panel[hidden] { display: none; }

.dbreg-faq__content {
    font-size: 16px;
    line-height: 24px;
    padding: 0 15px 15px;
}

.dbreg-faq__content p { margin: 0 0 12px; }
.dbreg-faq__content p:last-child,
.dbreg-faq__content ul:last-child { margin-bottom: 0; }

/* ---------- Contenido informativo ---------- */

.dbreg-info { max-width: 840px; }

.dbreg-info__block { margin-bottom: 24px; }
.dbreg-info__block:last-child { margin-bottom: 0; }

.dbreg-info__title {
    color: var(--dbreg-primary);
    font-size: 24px;
    font-weight: 600;
    line-height: 28px;
    margin: 0 0 12px;
}

.dbreg-info__content { font-size: 16px; line-height: 24px; }
.dbreg-info__content p { margin: 0 0 16px; }
.dbreg-info__content p:last-child { margin-bottom: 0; }
.dbreg-info__content li { margin-bottom: 4px; }

/*
 * El theme deja las listas sin viñeta (`list-style: none`), así que aquí se
 * restauran los marcadores que sí tiene el contenido informativo del diseño.
 */
.dbreg-info__content ul,
.dbreg-faq__content ul {
    list-style: disc outside;
    margin: 0 0 16px;
    padding-left: 24px;
}

.dbreg-info__content ol,
.dbreg-faq__content ol {
    list-style: decimal outside;
    margin: 0 0 16px;
    padding-left: 24px;
}

.dbreg-info__content li,
.dbreg-faq__content li { display: list-item; list-style: inherit; }

/* ---------- Responsive ---------- */

@media (max-width: 991px) {
    .dbreg__container {
        gap: 32px;
        grid-template-areas:
            "main"
            "sidebar"
            "faqs"
            "info";
        grid-template-columns: minmax(0, 1fr);
    }
}

@media (max-width: 575px) {
    .dbreg { padding: 24px 0 40px; }

    /*
     * El contenedor conserva sus 16 px laterales, que es lo que marca el Figma
     * móvil: el contenido va de x=16 a x=344 sobre 360. Solo el fondo llega a
     * los bordes.
     */

    /* Figma `Header-Mobile`: 24 arriba, 20 abajo, y la ayuda cae bajo el logo. */
    .dbreg-header { padding: 24px 16px 20px; }
    .dbreg-header__help { justify-content: flex-start; }

    /* Figma: la tarjeta lleva 32 arriba y abajo, 16 a los lados. */
    .dbreg__card { padding: 32px 16px; }
    .dbreg__title { font-size: 22px; line-height: 28px; }
    .dbreg-advantages { flex-direction: column; gap: 6px; }
    .dbreg-steps__label { font-size: 11px; }
    .dbreg-step__actions { flex-direction: column-reverse; gap: 8px; }
    .dbreg-step__actions .dbreg-btn { width: 100%; }
    .dbreg-confirmation__action .dbreg-btn { width: 100%; }
    .dbreg-faqs__title,
    .dbreg-info__title { font-size: 20px; }
}
