/**
 * Seller benefits landing — /para/vendedores
 * Mobile-first, single-column. Matches pricing/help chrome.
 */

.sellers-page {
    max-width: 720px;
    margin: 0 auto;
    padding: 100px 20px 60px;
}

.sellers-hero {
    text-align: center;
    margin-bottom: 40px;
}

.sellers-hero__title {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 5vw, 2.75rem);
    font-weight: 600;
    letter-spacing: -0.02em;
    color: var(--black);
    margin: 0 0 16px;
    line-height: 1.2;
}

.sellers-hero__sub {
    font-size: 1.0625rem;
    color: var(--gray-600);
    line-height: 1.6;
    max-width: 540px;
    margin: 0 auto 24px;
}

.sellers-section {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 14px;
    padding: 24px;
    margin-bottom: 16px;
    box-shadow: 0 16px 36px rgba(15, 23, 42, 0.06);
}

.sellers-section h2 {
    font-family: var(--font-body);
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--black);
    margin: 0 0 12px;
    letter-spacing: -0.01em;
}

.sellers-section p,
.sellers-section li {
    color: var(--gray-600);
    line-height: 1.65;
    font-size: 1rem;
}

.sellers-section p {
    margin: 0 0 12px;
}

.sellers-section ul {
    margin: 0 0 16px;
    padding-left: 1.2em;
}

.sellers-section li + li {
    margin-top: 6px;
}

.sellers-cta {
    display: inline-block;
    padding: 14px 28px;
    background: var(--red-accent);
    color: var(--white);
    font-family: var(--font-body);
    font-size: 0.9375rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: background 0.2s ease, transform 0.2s ease;
}

.sellers-cta:hover {
    background: var(--red-hover);
    transform: translateY(-1px);
    color: var(--white);
}

.sellers-cta--hero,
.sellers-cta--bottom {
    padding: 16px 36px;
    font-size: 1.0625rem;
    width: 100%;
    text-align: center;
    box-sizing: border-box;
}

.sellers-bottom {
    text-align: center;
    margin-top: 24px;
    padding: 28px 24px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 14px;
}

.sellers-bottom h2 {
    font-family: var(--font-display);
    font-size: clamp(1.4rem, 4vw, 1.9rem);
    margin: 0 0 12px;
}

.sellers-bottom p {
    color: var(--gray-600);
    line-height: 1.6;
    margin: 0 0 20px;
}

@media (min-width: 640px) {
    .sellers-cta--hero,
    .sellers-cta--bottom {
        width: auto;
    }
}
