/* NÜMO — sección Distribuidores (B2B): bloque en la home + extras del modal
   de solicitud. El modal reutiliza las clases .contact-modal (misma pieza
   visual que el modal de contacto); aquí solo va lo que aquel no tiene:
   selects, fila a dos columnas y la nota de privacidad. */
.dist {
    background: var(--bg-0, #07060a);
    border-top: 1px solid rgba(255, 255, 255, .05);
    padding: 72px 22px;
    text-align: center;
    /* Que el ancla #distribuidores no quede tapada por la nav fija. */
    scroll-margin-top: 80px;
}
.dist__inner {
    max-width: 720px;
    margin: 0 auto;
}
.dist__eyebrow {
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #c5704d;
    font-weight: 700;
    margin: 0 0 10px;
}
.dist__title {
    font-size: clamp(24px, 4vw, 32px);
    font-weight: 800;
    letter-spacing: -0.005em;
    text-transform: uppercase;
    margin: 0 0 16px;
    color: #f4ece4;
    line-height: 1.1;
}
.dist__lead {
    margin: 0 auto;
    max-width: 560px;
    font-size: 15px;
    line-height: 1.65;
    color: #c8bdb1;
}
.dist__benefits {
    list-style: none;
    margin: 30px auto 34px;
    padding: 0;
    display: inline-flex;
    flex-direction: column;
    gap: 13px;
    text-align: left;
}
.dist__benefits li {
    position: relative;
    padding-left: 32px;
    font-size: 15px;
    font-weight: 600;
    color: #e6ddd3;
    line-height: 1.45;
}
.dist__benefits li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 1px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 1.5px solid #c5704d;
    color: #c5704d;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 800;
    line-height: 0;
}
/* Misma receta que .btn--primary (styles.css): degradado, radio y la sombra
   discreta al 30% — nada de halo cobre. */
.dist__cta {
    display: inline-block;
    padding: 17px 32px;
    font-family: inherit;
    font-weight: 700;
    font-size: 16px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #fff;
    background: linear-gradient(180deg, #d88a63, #c5704d);
    border: none;
    border-radius: 10px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .22), 0 8px 20px -12px rgba(197, 112, 77, .30);
    cursor: pointer;
    transition: transform .15s ease, box-shadow .2s ease;
    min-height: 48px;
}
.dist__cta:hover {
    transform: translateY(-2px);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .22), 0 12px 26px -12px rgba(197, 112, 77, .34);
}
.dist__cta:active { transform: translateY(0); }
.dist__note {
    margin: 14px 0 0;
    font-size: 12px;
    color: #8e827a;
}
@media (min-width: 720px) {
    .dist { padding: 96px 32px; }
}

/* --- Extras del modal de solicitud (sobre las clases .contact-modal) ----- */
.contact-modal__field select {
    font-family: inherit;
    /* 16px+ keeps iOS from zooming into the field when focused */
    font-size: 16px;
    color: #f4ece4;
    background-color: #181318;
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 8px;
    padding: 12px 40px 12px 14px;
    line-height: 1.4;
    outline: none;
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23c5704d' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    background-size: 13px;
    transition: border-color .15s ease, background-color .15s ease;
}
.contact-modal__field select:focus {
    border-color: #c5704d;
    background-color: #1f1a20;
}
/* Placeholder-look while the required select is still empty. */
.contact-modal__field select:invalid { color: #8e827a; }
.contact-modal__field select option { color: #f4ece4; background: #181318; }

.dist-form__row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
}
.dist-form__privacy {
    margin: 2px 0 0;
    font-size: 11.5px;
    line-height: 1.5;
    color: #8e827a;
}
.dist-form__privacy a {
    color: #c5704d;
    text-decoration: underline;
    text-underline-offset: 2px;
}
@media (min-width: 600px) {
    .dist-form__row { grid-template-columns: 1fr 1fr; }
}
