:root {
    --sports-bg: #0f172a;
    --sports-card: #ffffff;
    --sports-text: #1e293b;
    --sports-muted: #64748b;
    --sports-primary: #2563eb;
    --sports-primary-dark: #1d4ed8;
    --sports-light: #f8fafc;
    --sports-border: #e2e8f0;
}

body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    background: var(--sports-light);
    color: var(--sports-text);
}

.sports-landing {
    width: 100%;
}

.sports-hero {
    min-height: 70vh;
    display: flex;
    align-items: center;
    padding: 80px 8%;
    background: linear-gradient(135deg, #0f172a, #1e3a8a);
    color: #ffffff;
}

.sports-hero-content {
    max-width: 780px;
}

.sports-badge {
    display: inline-block;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    font-size: 14px;
    margin-bottom: 20px;
}

.sports-hero h1 {
    font-size: clamp(30px, 6vw, 72px);
    margin: 0 0 20px;
    line-height: 1.05;
}

.sports-hero p {
    font-size: 20px;
    line-height: 1.6;
    color: #dbeafe;
    max-width: 680px;
}

.sports-hero-actions {
    display: flex;
    gap: 16px;
    margin-top: 32px;
    flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
    display: inline-block;
    padding: 14px 24px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
}

.btn-primary {
    background: #ffffff;
    color: var(--sports-primary-dark);
}

.btn-secondary {
    border: 1px solid rgba(255, 255, 255, 0.5);
    color: #ffffff;
}

.sports-section {
    padding: 70px 8%;
}

.sports-section h2 {
    font-size: 36px;
    margin-bottom: 12px;
}

.sports-section > p {
    font-size: 18px;
    color: var(--sports-muted);
    max-width: 760px;
    line-height: 1.6;
}

.sports-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
    margin-top: 32px;
}

.sports-card {
    background: var(--sports-card);
    border: 1px solid var(--sports-border);
    border-radius: 20px;
    padding: 28px;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
}

.sports-card h3 {
    margin-top: 0;
    font-size: 22px;
}

.sports-card p {
    color: var(--sports-muted);
    line-height: 1.6;
}

.sports-contact {
    background: #ffffff;
}

@media (max-width: 1000px) {
    .sports-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .sports-hero {
        padding: 60px 24px;
    }

    .sports-section {
        padding: 50px 24px;
    }

    .sports-grid {
        grid-template-columns: 1fr;
    }

    .sports-hero p {
        font-size: 17px;
    }
}

.sports-admin-page {
    min-height: 100vh;
    background: #f8fafc;
    padding: 40px 6%;
}

.sports-admin-header {
    background: linear-gradient(135deg, #0f172a, #1e3a8a);
    color: #ffffff;
    padding: 40px;
    border-radius: 24px;
    margin-bottom: 28px;
}

.sports-admin-header h1 {
    margin: 12px 0 8px;
    font-size: 42px;
}

.sports-admin-header p {
    color: #dbeafe;
    font-size: 18px;
    margin: 0;
}

.sports-badge-dark {
    display: inline-block;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.14);
    font-size: 14px;
}

.sports-admin-cards {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 18px;
    margin-bottom: 28px;
}

.sports-admin-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 18px;
    padding: 22px;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
}

.sports-admin-card span {
    display: block;
    color: #64748b;
    font-size: 14px;
    margin-bottom: 10px;
}

.sports-admin-card strong {
    font-size: 34px;
    color: #0f172a;
}

.sports-admin-section {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 22px;
    padding: 28px;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.05);
}

.sports-section-title h2 {
    margin: 0 0 6px;
    font-size: 28px;
}

.sports-section-title p {
    margin: 0 0 24px;
    color: #64748b;
}

.sports-table-wrap {
    overflow-x: auto;
}

.sports-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 900px;
}

.sports-table th,
.sports-table td {
    padding: 16px;
    border-bottom: 1px solid #e2e8f0;
    text-align: left;
    vertical-align: middle;
}

.sports-table th {
    color: #475569;
    font-size: 14px;
    background: #f8fafc;
}

.sports-table td {
    color: #1e293b;
}

.sports-table small {
    color: #64748b;
}

.sports-status {
    display: inline-block;
    padding: 6px 10px;
    border-radius: 999px;
    background: #e0f2fe;
    color: #075985;
    font-size: 12px;
    font-weight: 700;
}

@media (max-width: 1200px) {
    .sports-admin-cards {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 700px) {
    .sports-admin-page {
        padding: 24px;
    }

    .sports-admin-header {
        padding: 28px;
    }

    .sports-admin-header h1 {
        font-size: 32px;
    }

    .sports-admin-cards {
        grid-template-columns: 1fr;
    }
}

.sports-header-actions {
    margin-top: 22px;
}

.sports-btn-light,
.sports-btn-primary {
    display: inline-block;
    border: none;
    cursor: pointer;
    text-decoration: none;
    font-weight: 700;
    border-radius: 12px;
    padding: 13px 20px;
    font-size: 14px;
}

.sports-btn-light {
    background: #ffffff;
    color: #1d4ed8;
}

.sports-btn-primary {
    background: #2563eb;
    color: #ffffff;
}

.sports-btn-primary:hover {
    background: #1d4ed8;
}

.sports-messages {
    margin-bottom: 24px;
}

.sports-message {
    padding: 14px 18px;
    border-radius: 14px;
    margin-bottom: 10px;
    font-weight: 600;
}

.sports-message-success {
    background: #dcfce7;
    color: #166534;
    border: 1px solid #bbf7d0;
}

.sports-message-error {
    background: #fee2e2;
    color: #991b1b;
    border: 1px solid #fecaca;
}

.sports-form {
    margin-top: 20px;
}

.sports-form-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.sports-form-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.sports-form-field label {
    font-weight: 700;
    color: #334155;
    font-size: 14px;
}

.sports-form-field input,
.sports-form-field select {
    width: 100%;
    border: 1px solid #cbd5e1;
    border-radius: 12px;
    padding: 13px 14px;
    font-size: 15px;
    background: #ffffff;
    color: #0f172a;
    box-sizing: border-box;
}

.sports-form-field input:focus,
.sports-form-field select:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.12);
}

.sports-form-actions {
    margin-top: 24px;
}

.sports-mt {
    margin-top: 28px;
}

@media (max-width: 1000px) {
    .sports-form-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 700px) {
    .sports-form-grid {
        grid-template-columns: 1fr;
    }
}

.sports-table-actions {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.sports-btn-small {
    display: inline-block;
    text-decoration: none;
    padding: 8px 12px;
    border-radius: 10px;
    background: #2563eb;
    color: #ffffff;
    font-size: 12px;
    font-weight: 700;
}

.sports-btn-small-secondary {
    background: #e2e8f0;
    color: #0f172a;
}

.sports-detail-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.sports-detail-grid div {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    padding: 16px;
}

.sports-detail-grid label {
    display: block;
    font-size: 13px;
    color: #64748b;
    font-weight: 700;
    margin-bottom: 8px;
}

.sports-detail-grid p {
    margin: 0;
    color: #0f172a;
    font-weight: 700;
}

@media (max-width: 1000px) {
    .sports-detail-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 700px) {
    .sports-detail-grid {
        grid-template-columns: 1fr;
    }
}

.sports-form-field-wide {
    grid-column: span 2;
}

.sports-modules-box {
    margin-top: 28px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 18px;
    padding: 22px;
}

.sports-modules-box h3 {
    margin: 0 0 18px;
    color: #0f172a;
}

.sports-checkbox-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}

.sports-checkbox-card {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    padding: 14px;
    cursor: pointer;
}

.sports-checkbox-card input {
    margin-top: 4px;
}

.sports-checkbox-card strong {
    display: block;
    color: #0f172a;
    font-size: 14px;
    margin-bottom: 4px;
}

.sports-checkbox-card small {
    display: block;
    color: #64748b;
    font-size: 12px;
}

.sports-checkbox-inline {
    display: flex;
    gap: 10px;
    align-items: center;
    margin-top: 20px;
    background: #fff7ed;
    border: 1px solid #fed7aa;
    color: #9a3412;
    border-radius: 14px;
    padding: 14px 16px;
    font-weight: 700;
}

@media (max-width: 1200px) {
    .sports-checkbox-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 900px) {
    .sports-checkbox-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .sports-form-field-wide {
        grid-column: span 1;
    }
}

@media (max-width: 600px) {
    .sports-checkbox-grid {
        grid-template-columns: 1fr;
    }
}

.sports-login-page {
    min-height: 100vh;
    background: linear-gradient(135deg, #0f172a, #1e3a8a);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.sports-login-card {
    width: 100%;
    max-width: 460px;
    background: #ffffff;
    border-radius: 24px;
    padding: 34px;
    box-shadow: 0 24px 80px rgba(15, 23, 42, 0.28);
}

.sports-login-header {
    margin-bottom: 24px;
}

.sports-login-header h1 {
    margin: 18px 0 8px;
    font-size: 34px;
    color: #0f172a;
}

.sports-login-header p {
    margin: 0;
    color: #64748b;
}

.sports-btn-full {
    width: 100%;
}

.sports-login-footer {
    margin-top: 22px;
    text-align: center;
}

.sports-login-footer a {
    color: #2563eb;
    text-decoration: none;
    font-weight: 700;
}

.sports-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.sports-card-link:hover {
    transform: translateY(-2px);
    transition: 0.2s ease;
    border-color: #2563eb;
}

.sports-client-cell {
    display: flex;
    align-items: center;
    gap: 12px;
}

.sports-avatar {
    width: 44px;
    height: 44px;
    border-radius: 999px;
    object-fit: cover;
    border: 2px solid #e2e8f0;
}

.sports-avatar-empty {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #dbeafe;
    color: #1d4ed8;
    font-weight: 800;
    font-size: 18px;
}

.sports-current-avatar {
    margin: 18px 0;
}

.sports-current-avatar img {
    width: 90px;
    height: 90px;
    border-radius: 999px;
    object-fit: cover;
    border: 3px solid #e2e8f0;
}

.sports-file-upload-wrap {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    border: 1px solid #cbd5e1;
    border-radius: 12px;
    padding: 7px;
    background: #ffffff;
    box-sizing: border-box;
}

.sports-file-upload {
    display: inline-flex;
    align-items: center;
    margin: 0;
}

.sports-file-upload input[type="file"] {
    display: none;
}

.sports-file-button {
    display: inline-block;
    padding: 10px 16px;
    border-radius: 10px;
    background: #2563eb;
    color: #ffffff;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    white-space: nowrap;
}

.sports-file-button:hover {
    background: #1d4ed8;
}

.sports-file-name {
    color: #64748b;
    font-size: 14px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.sports-client-profile {
    display: flex;
    align-items: center;
    gap: 20px;
}

.sports-client-profile h2 {
    margin: 0 0 6px;
    font-size: 30px;
    color: #0f172a;
}

.sports-client-profile p {
    margin: 0 0 10px;
    color: #64748b;
}

.sports-profile-avatar {
    width: 90px;
    height: 90px;
    border-radius: 999px;
    object-fit: cover;
    border: 3px solid #e2e8f0;
    flex-shrink: 0;
}

@media (max-width: 700px) {
    .sports-client-profile {
        flex-direction: column;
        align-items: flex-start;
    }
}

.sports-charge-preview {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-top: 24px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 18px;
    padding: 18px;
}

.sports-charge-preview div {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    padding: 16px;
}

.sports-charge-preview span {
    display: block;
    color: #64748b;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 8px;
}

.sports-charge-preview strong {
    display: block;
    color: #0f172a;
    font-size: 24px;
}

@media (max-width: 700px) {
    .sports-charge-preview {
        grid-template-columns: 1fr;
    }
}

.sports-inline-form {
    display: inline-block;
    margin: 0;
}


.sports-dashboard-two-columns {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.sports-dashboard-two-columns h3 {
    margin: 0 0 16px;
    color: #0f172a;
    font-size: 20px;
}

@media (max-width: 900px) {
    .sports-dashboard-two-columns {
        grid-template-columns: 1fr;
    }
}

/* =====================================================
   Ajustes responsive dashboard negocio
   ===================================================== */

/* Evita que grids/tablas empujen el ancho de la pantalla */
.sports-admin-page,
.sports-admin-section,
.sports-dashboard-two-columns,
.sports-dashboard-two-columns > div,
.sports-table-wrap {
    max-width: 100%;
    box-sizing: border-box;
}

.sports-dashboard-two-columns > div {
    min-width: 0;
}

/* Botones del header más ordenados */
.sports-header-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
}

.sports-header-actions .sports-btn-light {
    margin: 0;
}

/* Tablas con scroll horizontal controlado */
.sports-table-wrap {
    width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
}

.sports-table {
    width: 100%;
    min-width: 760px;
}

/* Para que el texto no rompa columnas raramente */
.sports-table th,
.sports-table td {
    white-space: nowrap;
}

/* Pero permitir texto largo en columnas descriptivas */
.sports-table td:first-child,
.sports-table th:first-child {
    white-space: normal;
}

/* =====================================================
   Móvil
   ===================================================== */

@media (max-width: 700px) {

    .sports-admin-page {
        padding: 16px;
        overflow-x: hidden;
    }

    .sports-admin-header {
        padding: 28px 22px;
        border-radius: 22px;
    }

    .sports-admin-header h1 {
        font-size: 34px;
        line-height: 1.1;
        word-break: break-word;
    }

    .sports-admin-header p {
        font-size: 17px;
        line-height: 1.4;
    }

    .sports-header-actions {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10px;
        width: 100%;
        margin-top: 22px;
    }

    .sports-header-actions .sports-btn-light {
        width: 100%;
        text-align: center;
        padding: 13px 10px;
        font-size: 14px;
        box-sizing: border-box;
    }

    .sports-admin-cards {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .sports-admin-card {
        padding: 20px;
    }

    .sports-admin-card strong {
        font-size: 28px;
        word-break: break-word;
    }

    .sports-grid {
        grid-template-columns: 1fr !important;
        gap: 14px;
    }

    .sports-card {
        width: 100%;
        box-sizing: border-box;
    }

    .sports-dashboard-two-columns {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .sports-dashboard-two-columns h3 {
        font-size: 18px;
    }

    .sports-admin-section {
        padding: 22px;
        border-radius: 20px;
        overflow: hidden;
    }

    .sports-section-title h2 {
        font-size: 24px;
    }

    .sports-section-title p {
        font-size: 15px;
    }

    .sports-table-wrap {
        margin-top: 12px;
        border: 1px solid #e2e8f0;
        border-radius: 14px;
        background: #ffffff;
    }

    .sports-table {
        min-width: 680px;
    }

    .sports-table th,
    .sports-table td {
        padding: 13px 14px;
        font-size: 14px;
    }

    .sports-btn-small {
        padding: 8px 10px;
        font-size: 12px;
        white-space: nowrap;
    }
}

/* Móviles muy angostos */
@media (max-width: 430px) {

    .sports-admin-page {
        padding: 12px;
    }

    .sports-admin-header {
        padding: 24px 18px;
    }

    .sports-admin-header h1 {
        font-size: 30px;
    }

    .sports-header-actions {
        grid-template-columns: 1fr;
    }

    .sports-table {
        min-width: 620px;
    }
}


/* =====================================================
   Navegación interna panel negocio
   ===================================================== */

.sports-subnav {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 18px;
    padding: 12px;
    margin-bottom: 24px;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.04);
}

.sports-subnav a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #334155;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 10px 14px;
    font-size: 14px;
    font-weight: 700;
    transition: 0.2s ease;
}

.sports-subnav a:hover {
    background: #dbeafe;
    color: #1d4ed8;
    border-color: #bfdbfe;
}

.sports-subnav a.active {
    background: #2563eb;
    color: #ffffff;
    border-color: #2563eb;
}

@media (max-width: 700px) {
    .sports-subnav {
        flex-wrap: nowrap;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        padding: 10px;
        gap: 8px;
    }

    .sports-subnav a {
        white-space: nowrap;
        flex: 0 0 auto;
        padding: 10px 12px;
        font-size: 13px;
    }
}


.sports-admin-card small {
    display: block;
    margin-top: 8px;
    font-size: 0.90rem;
    color: #64748b;
}

.sports-admin-card-danger {
    border: 1px solid #fecaca;
    background: #fef2f2;
}

.sports-admin-card-danger strong {
    color: #b91c1c;
}

.sports-admin-card-danger small {
    color: #b91c1c;
}

.sports-admin-card-warning {
    border: 1px solid #fed7aa;
    background: #fff7ed;
}

.sports-admin-card-warning strong {
    color: #c2410c;
}

.sports-admin-card-warning small {
    color: #c2410c;
}

.sports-admin-card-ok {
    border: 1px solid #bbf7d0;
    background: #f0fdf4;
}

.sports-admin-card-ok strong {
    color: #15803d;
}

.sports-admin-card-ok small {
    color: #15803d;
}

/* =====================================================
   Semáforo portal cliente: tarjetas, cargos y pagos
   ===================================================== */

.sports-admin-card small {
    display: block;
    margin-top: 8px;
    font-size: 0.90rem;
    color: #64748b;
}

.sports-admin-card-danger {
    border: 1px solid #fecaca;
    background: #fef2f2;
}

.sports-admin-card-danger strong,
.sports-admin-card-danger small {
    color: #b91c1c;
}

.sports-admin-card-warning {
    border: 1px solid #fed7aa;
    background: #fff7ed;
}

.sports-admin-card-warning strong,
.sports-admin-card-warning small {
    color: #c2410c;
}

.sports-admin-card-ok,
.sports-admin-card-paid {
    border: 1px solid #bbf7d0;
    background: #f0fdf4;
}

.sports-admin-card-ok strong,
.sports-admin-card-ok small,
.sports-admin-card-paid strong,
.sports-admin-card-paid small {
    color: #15803d;
}

/* Filas por estatus */
.sports-row-paid {
    background: #f0fdf4;
}

.sports-row-warning {
    background: #fff7ed;
}

.sports-row-danger {
    background: #fef2f2;
}

.sports-row-normal {
    background: #ffffff;
}

/* Borde lateral visual */
.sports-row-paid td:first-child {
    border-left: 5px solid #22c55e;
}

.sports-row-warning td:first-child {
    border-left: 5px solid #f97316;
}

.sports-row-danger td:first-child {
    border-left: 5px solid #ef4444;
}

.sports-row-normal td:first-child {
    border-left: 5px solid #cbd5e1;
}

/* Montos por color */
.sports-money-paid strong,
.sports-money-paid {
    color: #15803d;
}

.sports-money-warning strong,
.sports-money-warning {
    color: #c2410c;
}

.sports-money-danger strong,
.sports-money-danger {
    color: #b91c1c;
}

.sports-money-normal strong,
.sports-money-normal {
    color: #0f172a;
}

/* Badges por estado */
.sports-status-paid {
    background: #dcfce7;
    color: #15803d;
}

.sports-status-warning {
    background: #ffedd5;
    color: #c2410c;
}

.sports-status-danger {
    background: #fee2e2;
    color: #b91c1c;
}

.sports-status-normal {
    background: #e2e8f0;
    color: #334155;
}

/* Separación de botones en el header del portal cliente */
.sports-admin-header .sports-header-actions {
    margin-top: 22px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

/* En móvil, que los botones no se encimen ni queden pegados */
@media (max-width: 700px) {
    .sports-admin-header .sports-header-actions {
        margin-top: 24px;
        width: 100%;
        display: grid;
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .sports-admin-header .sports-header-actions .sports-btn-light {
        width: 100%;
        text-align: center;
    }
}

/* =====================================================
   Acciones por rol
   ===================================================== */

.sports-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
}

.sports-inline-form {
    display: inline-flex;
    margin: 0;
}

.sports-btn-danger {
    background: #dc2626;
    color: #ffffff;
    border-color: #dc2626;
}

.sports-btn-danger:hover {
    background: #b91c1c;
    border-color: #b91c1c;
}

/* =====================================================
   Landing DEVOC Sports Manager v2
   ===================================================== */

.sports-landing-v2 {
    min-height: 100vh;
    background:
        radial-gradient(circle at top right, rgba(37, 99, 235, 0.18), transparent 34%),
        linear-gradient(180deg, #f8fafc 0%, #eef2f7 100%);
    color: #0f172a;
}

.sports-landing-nav {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
    padding: 22px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    position: relative;
    z-index: 5;
}

.sports-landing-brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #0f172a;
    text-decoration: none;
    font-weight: 900;
    letter-spacing: -0.02em;
}

.sports-brand-mark {
    width: 34px;
    height: 34px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    background: linear-gradient(135deg, #0f172a, #2563eb);
    box-shadow: 0 12px 30px rgba(37, 99, 235, 0.22);
}

.sports-landing-menu {
    display: flex;
    align-items: center;
    gap: 22px;
}

.sports-landing-menu a,
.sports-login-link {
    color: #475569;
    text-decoration: none;
    font-weight: 800;
    font-size: 0.92rem;
}

.sports-landing-menu a:hover,
.sports-login-link:hover {
    color: #2563eb;
}

.sports-landing-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.sports-demo-link {
    padding: 11px 18px;
    border-radius: 999px;
    background: #0f172a;
    color: #ffffff;
    text-decoration: none;
    font-weight: 900;
    box-shadow: 0 14px 34px rgba(15, 23, 42, 0.18);
}

.sports-hero-v2 {
    width: min(1180px, calc(100% - 40px));
    min-height: 620px;
    margin: 0 auto;
    padding: 70px 0 90px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 54px;
    align-items: center;
}

.sports-hero-copy h1 {
    max-width: 620px;
    font-size: clamp(3.2rem, 7vw, 6.7rem);
    line-height: 0.92;
    letter-spacing: -0.07em;
    margin: 22px 0;
    color: #0f172a;
}

.sports-hero-copy p {
    max-width: 570px;
    font-size: 1.16rem;
    line-height: 1.75;
    color: #475569;
    margin-bottom: 28px;
}

.sports-badge,
.sports-eyebrow {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    padding: 8px 13px;
    border-radius: 999px;
    background: #dbeafe;
    color: #1d4ed8;
    font-size: 0.82rem;
    font-weight: 900;
    letter-spacing: 0.02em;
}

.sports-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    align-items: center;
}

.sports-btn-hero-primary,
.sports-btn-hero-secondary {
    min-height: 48px;
    padding: 14px 22px;
    border-radius: 14px;
    text-decoration: none;
    font-weight: 900;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.sports-btn-hero-primary {
    background: #2563eb;
    color: #ffffff;
    box-shadow: 0 18px 40px rgba(37, 99, 235, 0.28);
}

.sports-btn-hero-secondary {
    background: #ffffff;
    color: #0f172a;
    border: 1px solid #dbe3ef;
    box-shadow: 0 16px 34px rgba(15, 23, 42, 0.08);
}

.sports-hero-points {
    margin-top: 22px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.sports-hero-points span {
    padding: 9px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.74);
    color: #334155;
    font-size: 0.88rem;
    font-weight: 800;
    border: 1px solid #e2e8f0;
}

.sports-hero-preview {
    min-height: 460px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sports-preview-card {
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(226, 232, 240, 0.95);
    border-radius: 32px;
    box-shadow: 0 30px 90px rgba(15, 23, 42, 0.16);
    backdrop-filter: blur(18px);
}

.sports-preview-main {
    width: min(520px, 100%);
    padding: 26px;
}

.sports-preview-top {
    padding: 24px;
    border-radius: 24px;
    background: linear-gradient(135deg, #0f172a, #1d4ed8);
    color: #ffffff;
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.sports-preview-top span,
.sports-preview-top small {
    color: #cbd5e1;
    font-weight: 800;
}

.sports-preview-top strong {
    display: block;
    margin-top: 8px;
    font-size: 2rem;
    letter-spacing: -0.04em;
}

.sports-preview-bars {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin: 18px 0;
}

.sports-preview-bars div,
.sports-preview-table div {
    padding: 16px;
    border-radius: 18px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
}

.sports-preview-bars span,
.sports-preview-table span {
    display: block;
    color: #64748b;
    font-weight: 800;
    font-size: 0.86rem;
}

.sports-preview-bars strong,
.sports-preview-table strong {
    display: block;
    margin-top: 6px;
    color: #0f172a;
    font-size: 1.15rem;
}

.sports-preview-table {
    display: grid;
    gap: 10px;
}

.sports-preview-table .success {
    color: #15803d;
}

.sports-preview-table .warning {
    color: #c2410c;
}

.sports-preview-table .danger {
    color: #b91c1c;
}

.sports-preview-floating {
    position: absolute;
    right: -10px;
    bottom: 24px;
    width: 230px;
    padding: 22px;
}

.sports-preview-floating span {
    color: #64748b;
    font-weight: 800;
    font-size: 0.85rem;
}

.sports-preview-floating strong {
    display: block;
    margin: 8px 0;
    font-size: 1.25rem;
    color: #0f172a;
}

.sports-preview-floating small {
    color: #64748b;
    line-height: 1.5;
}

.sports-section-v2,
.sports-split-section,
.sports-growth-section,
.sports-final-cta {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto 34px;
}

.sports-section-v2,
.sports-split-section,
.sports-growth-section,
.sports-final-cta {
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid #e2e8f0;
    border-radius: 34px;
    box-shadow: 0 20px 70px rgba(15, 23, 42, 0.08);
}

.sports-section-v2 {
    padding: 48px;
}

.sports-section-heading {
    max-width: 720px;
    margin-bottom: 30px;
}

.sports-section-heading h2,
.sports-split-section h2,
.sports-growth-section h2,
.sports-final-cta h2 {
    margin: 14px 0;
    font-size: clamp(2rem, 4vw, 3.4rem);
    line-height: 1;
    letter-spacing: -0.05em;
}

.sports-section-heading p,
.sports-split-section p,
.sports-growth-section p,
.sports-final-cta p {
    color: #64748b;
    font-size: 1.05rem;
    line-height: 1.7;
}

.sports-feature-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.sports-feature-card {
    padding: 24px;
    border: 1px solid #e2e8f0;
    border-radius: 24px;
    background: #ffffff;
    transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.sports-feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.10);
}

.sports-feature-icon {
    width: 46px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    background: #eff6ff;
    margin-bottom: 16px;
    font-size: 1.3rem;
}

.sports-feature-card h3 {
    margin: 0 0 10px;
    font-size: 1.18rem;
}

.sports-feature-card p {
    margin: 0;
    color: #64748b;
    line-height: 1.6;
}

.sports-split-section {
    padding: 48px;
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 34px;
    align-items: center;
}

.sports-benefit-list {
    display: grid;
    gap: 14px;
    margin-top: 22px;
}

.sports-benefit-list div {
    padding: 18px;
    border-radius: 20px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
}

.sports-benefit-list strong {
    display: block;
    margin-bottom: 4px;
}

.sports-benefit-list span {
    color: #64748b;
}

.sports-dashboard-mock {
    min-height: 360px;
    border-radius: 30px;
    padding: 24px;
    background: linear-gradient(135deg, #0f172a, #1e3a8a);
    box-shadow: inset 0 0 0 1px rgba(255,255,255,0.12);
}

.mock-header {
    height: 58px;
    border-radius: 20px;
    background: rgba(255,255,255,0.16);
    margin-bottom: 18px;
}

.mock-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 18px;
}

.mock-cards span,
.mock-table span {
    display: block;
    border-radius: 18px;
    background: rgba(255,255,255,0.9);
}

.mock-cards span {
    height: 82px;
}

.mock-table {
    display: grid;
    gap: 12px;
}

.mock-table span {
    height: 44px;
}

.sports-portal-section {
    background:
        radial-gradient(circle at bottom left, rgba(37, 99, 235, 0.11), transparent 34%),
        #ffffff;
}

.sports-portal-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.sports-portal-grid article {
    padding: 22px;
    border-radius: 22px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
}

.sports-portal-grid strong {
    display: block;
    margin-bottom: 8px;
}

.sports-portal-grid span {
    color: #64748b;
    line-height: 1.55;
}

.sports-growth-section {
    padding: 46px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    align-items: center;
}

.sports-growth-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.sports-growth-tags span {
    padding: 12px 16px;
    border-radius: 999px;
    background: #eff6ff;
    color: #1d4ed8;
    font-weight: 900;
}

.sports-final-cta {
    padding: 58px;
    text-align: center;
    margin-bottom: 60px;
    background: linear-gradient(135deg, #0f172a, #1d4ed8);
    color: #ffffff;
}

.sports-final-cta p {
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
    color: #dbeafe;
}

.sports-final-cta .sports-hero-actions {
    justify-content: center;
    margin-top: 24px;
}

.sports-final-cta .sports-btn-hero-secondary {
    background: rgba(255,255,255,0.12);
    color: #ffffff;
    border-color: rgba(255,255,255,0.22);
}

@media (max-width: 980px) {
    .sports-landing-nav {
        flex-wrap: wrap;
    }

    .sports-landing-menu {
        order: 3;
        width: 100%;
        overflow-x: auto;
        padding-bottom: 4px;
    }

    .sports-hero-v2,
    .sports-split-section,
    .sports-growth-section {
        grid-template-columns: 1fr;
    }

    .sports-feature-grid,
    .sports-portal-grid {
        grid-template-columns: 1fr 1fr;
    }

    .sports-preview-floating {
        position: relative;
        right: auto;
        bottom: auto;
        margin-top: 16px;
        width: auto;
    }

    .sports-hero-preview {
        min-height: auto;
        display: block;
    }
}

@media (max-width: 640px) {
    .sports-landing-nav,
    .sports-hero-v2,
    .sports-section-v2,
    .sports-split-section,
    .sports-growth-section,
    .sports-final-cta {
        width: min(100% - 24px, 1180px);
    }

    .sports-landing-actions {
        width: 100%;
        justify-content: space-between;
    }

    .sports-demo-link,
    .sports-login-link {
        flex: 1;
        text-align: center;
    }

    .sports-hero-v2 {
        padding-top: 34px;
    }

    .sports-section-v2,
    .sports-split-section,
    .sports-growth-section,
    .sports-final-cta {
        padding: 26px;
        border-radius: 26px;
    }

    .sports-feature-grid,
    .sports-portal-grid,
    .sports-preview-bars {
        grid-template-columns: 1fr;
    }

    .sports-hero-actions a {
        width: 100%;
    }

    .sports-hero-points {
        display: grid;
    }
}

/* =====================================================
   Corrección de contraste landing DEVOC Sports Manager
   ===================================================== */

.sports-landing-v2 {
    color: #0f172a;
}

/* Títulos principales sobre fondos claros */
.sports-landing-v2 .sports-section-v2 .sports-section-heading h2,
.sports-landing-v2 .sports-split-section h2,
.sports-landing-v2 .sports-growth-section h2,
.sports-landing-v2 .sports-portal-section .sports-section-heading h2 {
    color: #0f172a !important;
    opacity: 1 !important;
}

/* Párrafos sobre fondos claros */
.sports-landing-v2 .sports-section-v2 .sports-section-heading p,
.sports-landing-v2 .sports-split-section p,
.sports-landing-v2 .sports-growth-section p,
.sports-landing-v2 .sports-portal-section .sports-section-heading p {
    color: #475569 !important;
    opacity: 1 !important;
}

/* Cards de módulos */
.sports-landing-v2 .sports-feature-card h3 {
    color: #0f172a !important;
    opacity: 1 !important;
}

.sports-landing-v2 .sports-feature-card p {
    color: #475569 !important;
    opacity: 1 !important;
}

/* Beneficios */
.sports-landing-v2 .sports-benefit-list strong,
.sports-landing-v2 .sports-portal-grid strong {
    color: #0f172a !important;
    opacity: 1 !important;
}

.sports-landing-v2 .sports-benefit-list span,
.sports-landing-v2 .sports-portal-grid span {
    color: #475569 !important;
    opacity: 1 !important;
}

/* Tags y badges */
.sports-landing-v2 .sports-eyebrow,
.sports-landing-v2 .sports-badge {
    background: #dbeafe !important;
    color: #1d4ed8 !important;
    opacity: 1 !important;
}

/* Textos dentro de tarjetas blancas */
.sports-landing-v2 .sports-feature-card,
.sports-landing-v2 .sports-portal-grid article,
.sports-landing-v2 .sports-benefit-list div {
    color: #0f172a;
}

/* CTA final: aquí sí deben ser blancos porque el fondo es azul */
.sports-landing-v2 .sports-final-cta h2 {
    color: #ffffff !important;
}

.sports-landing-v2 .sports-final-cta p {
    color: #dbeafe !important;
}

.sports-landing-v2 .sports-final-cta .sports-badge {
    background: rgba(255, 255, 255, 0.14) !important;
    color: #ffffff !important;
}

.sports-landing-v2 .sports-hero-v2 .sports-hero-copy h1 {
    font-size: clamp(2.8rem, 4.8vw, 4.5rem) !important;
    line-height: 1 !important;
    letter-spacing: -0.04em !important;
    max-width: 10ch !important;
    margin: 20px 0 24px !important;
}


@media (max-width: 700px) {
    .sports-landing-v2 .sports-hero-v2 .sports-hero-copy h1 {
        font-size: clamp(2.3rem, 10vw, 3.4rem) !important;
        line-height: 1.02 !important;
        max-width: 11ch !important;
    }
}

/* =====================================================
   Menú hamburguesa landing móvil
   ===================================================== */

.sports-menu-toggle {
    display: none;
    width: 46px;
    height: 46px;
    border: 1px solid #dbe3ef;
    border-radius: 14px;
    background: #ffffff;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.08);
}

.sports-menu-toggle span {
    display: block;
    width: 21px;
    height: 2px;
    border-radius: 999px;
    background: #0f172a;
    transition: 0.2s ease;
}

.sports-landing-nav-panel {
    display: flex;
    align-items: center;
    gap: 28px;
}

@media (max-width: 760px) {

    .sports-landing-nav {
        width: min(100% - 28px, 1180px);
        padding: 18px 0;
        position: relative;
        align-items: center;
    }

    .sports-landing-brand {
        font-size: 1rem;
        z-index: 20;
    }

    .sports-brand-mark {
        width: 38px;
        height: 38px;
        border-radius: 14px;
    }

    .sports-menu-toggle {
        display: inline-flex;
        margin-left: auto;
        z-index: 20;
    }

    .sports-landing-nav-panel {
        position: absolute;
        top: calc(100% + 12px);
        left: 0;
        right: 0;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 14px;
        padding: 18px;
        border-radius: 24px;
        background: rgba(255, 255, 255, 0.96);
        border: 1px solid #e2e8f0;
        box-shadow: 0 24px 70px rgba(15, 23, 42, 0.16);
        backdrop-filter: blur(18px);
        z-index: 15;
    }

    body.sports-menu-open .sports-landing-nav-panel {
        display: flex;
    }

    .sports-landing-menu {
        order: initial;
        width: 100%;
        display: grid;
        grid-template-columns: 1fr;
        gap: 8px;
        overflow: visible;
        padding: 0;
    }

    .sports-landing-menu a {
        width: 100%;
        box-sizing: border-box;
        padding: 14px 16px;
        border-radius: 14px;
        background: #f8fafc;
        border: 1px solid #e2e8f0;
        color: #0f172a;
        font-size: 0.98rem;
        text-align: left;
    }

    .sports-landing-menu a:hover {
        background: #eff6ff;
        color: #1d4ed8;
    }

    .sports-landing-actions {
        width: 100%;
        display: grid;
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .sports-login-link,
    .sports-demo-link {
        width: 100%;
        box-sizing: border-box;
        text-align: center;
        padding: 14px 18px;
        border-radius: 14px;
        font-size: 0.98rem;
    }

    .sports-login-link {
        background: #eff6ff;
        color: #1d4ed8;
        border: 1px solid #bfdbfe;
    }

    .sports-demo-link {
        background: #0f172a;
        color: #ffffff;
    }

    body.sports-menu-open .sports-menu-toggle span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    body.sports-menu-open .sports-menu-toggle span:nth-child(2) {
        opacity: 0;
    }

    body.sports-menu-open .sports-menu-toggle span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }
}

.sports-landing-brand {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
}

.sports-brand-mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 72px;
    height: 48px;
    padding: 0 14px;
    border-radius: 18px;
    background: linear-gradient(135deg, #0b1533, #2f66e2);
    color: #ffffff;
    font-weight: 800;
    font-size: 1.5rem;
    letter-spacing: -0.05em;
    line-height: 1;
    box-sizing: border-box;
}

.sports-brand-text {
    color: #0b1533;
    font-weight: 800;
    font-size: 1.1rem;
}

/* =====================================================
   SVG icons landing módulos
   ===================================================== */

.sports-feature-icon-svg {
    width: 72px;
    height: 72px;
    border-radius: 22px;
    background:
        radial-gradient(circle at top left, rgba(37, 99, 235, 0.18), transparent 42%),
        #eff6ff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
    box-shadow: inset 0 0 0 1px rgba(191, 219, 254, 0.9);
    transition: transform 0.2s ease;
}

.sports-feature-icon-svg svg {
    width: 46px;
    height: 46px;
    display: block;
}

.sports-feature-icon-svg .svg-primary {
    fill: #2563eb;
}

.sports-feature-icon-svg .svg-soft {
    fill: #93c5fd;
}

.sports-feature-icon-svg .svg-dark {
    fill: #0f172a;
}

.sports-feature-icon-svg .svg-white {
    fill: #ffffff;
}

.sports-feature-icon-svg .svg-page {
    fill: #ffffff;
    stroke: #0f172a;
    stroke-width: 2.5;
    stroke-linejoin: round;
}

.sports-feature-icon-svg .svg-line,
.sports-feature-icon-svg .svg-line-only,
.sports-feature-icon-svg .svg-primary-line,
.sports-feature-icon-svg .svg-line-soft,
.sports-feature-icon-svg .svg-line-light,
.sports-feature-icon-svg .svg-line-white,
.sports-feature-icon-svg .svg-dark-line {
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.sports-feature-icon-svg .svg-line {
    stroke: #0f172a;
    stroke-width: 3;
}

.sports-feature-icon-svg .svg-line-only {
    stroke: #2563eb;
    stroke-width: 3;
}

.sports-feature-icon-svg .svg-primary-line {
    stroke: #2563eb;
    stroke-width: 4;
}

.sports-feature-icon-svg .svg-line-soft {
    stroke: #93c5fd;
    stroke-width: 3;
}

.sports-feature-icon-svg .svg-line-light {
    stroke: #dbeafe;
    stroke-width: 3;
}

.sports-feature-icon-svg .svg-line-white {
    stroke: #ffffff;
    stroke-width: 3.2;
}

.sports-feature-icon-svg .svg-dark-line {
    stroke: #0f172a;
    stroke-width: 3;
}

.sports-feature-card:hover .sports-feature-icon-svg {
    transform: translateY(-2px) scale(1.03);
}

@media (max-width: 640px) {
    .sports-feature-icon-svg {
        width: 64px;
        height: 64px;
        border-radius: 20px;
        margin-bottom: 18px;
    }

    .sports-feature-icon-svg svg {
        width: 40px;
        height: 40px;
    }
}
/* =====================================================
   Ajuste final landing DSM: header/logo + responsive móvil
   ===================================================== */

.sports-landing-nav {
    position: sticky;
    top: 12px;
    z-index: 1000;
    width: min(1180px, calc(100% - 40px));
    margin: 12px auto 0;
    padding: 12px 16px;
    border: 1px solid rgba(226, 232, 240, 0.95);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(18px);
    box-shadow: 0 18px 50px rgba(15, 23, 42, 0.08);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    box-sizing: border-box;
}

.sports-landing-brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    min-width: 235px;
    color: #0f172a;
    text-decoration: none;
    flex-shrink: 0;
}

.sports-brand-mark {
    width: 44px;
    min-width: 44px;
    height: 44px;
    padding: 0;
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0b1533, #2563eb);
    color: #ffffff;
    font-weight: 950;
    font-size: 1.32rem;
    letter-spacing: -0.04em;
    line-height: 1;
    box-shadow: 0 12px 28px rgba(37, 99, 235, 0.22);
    box-sizing: border-box;
}

.sports-brand-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 3px;
    min-width: 0;
    line-height: 1;
}

.sports-brand-title {
    display: block;
    color: #0f172a;
    font-size: 1.15rem;
    font-weight: 950;
    letter-spacing: 0.08em;
}

.sports-brand-subtitle {
    display: block;
    color: #64748b;
    font-size: 0.74rem;
    font-weight: 750;
    letter-spacing: 0.01em;
    white-space: nowrap;
}

.sports-landing-nav-panel {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 28px;
    flex: 1;
    min-width: 0;
}

.sports-landing-menu {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 22px;
    flex-wrap: nowrap;
}

.sports-landing-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.sports-login-link,
.sports-demo-link,
.sports-landing-menu a {
    white-space: nowrap;
}

.sports-menu-toggle {
    display: none;
}

.sports-landing-v2 .sports-hero-v2 {
    padding-top: 58px;
}

.sports-landing-v2 .sports-hero-v2 .sports-hero-copy h1 {
    max-width: 12ch !important;
    font-size: clamp(2.8rem, 4.7vw, 4.85rem) !important;
    line-height: 0.98 !important;
    letter-spacing: -0.045em !important;
}

.sports-hero-copy p {
    font-size: clamp(1rem, 1.4vw, 1.16rem);
}

@media (max-width: 960px) {
    .sports-landing-nav {
        width: min(100% - 28px, 1180px);
        top: 8px;
        margin-top: 8px;
        padding: 11px 12px;
        border-radius: 22px;
        flex-wrap: nowrap;
    }

    .sports-landing-brand {
        min-width: auto;
        max-width: calc(100% - 58px);
        gap: 10px;
        z-index: 20;
    }

    .sports-brand-mark {
        width: 40px;
        min-width: 40px;
        height: 40px;
        border-radius: 14px;
        font-size: 1.15rem;
    }

    .sports-brand-title {
        font-size: 1.02rem;
    }

    .sports-brand-subtitle {
        max-width: 170px;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .sports-menu-toggle {
        display: inline-flex;
        width: 42px;
        height: 42px;
        margin-left: auto;
        border: 1px solid #dbe3ef;
        border-radius: 14px;
        background: #ffffff;
        cursor: pointer;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        gap: 5px;
        box-shadow: 0 12px 28px rgba(15, 23, 42, 0.08);
        z-index: 20;
        flex-shrink: 0;
    }

    .sports-menu-toggle span {
        display: block;
        width: 21px;
        height: 2px;
        border-radius: 999px;
        background: #0f172a;
        transition: 0.2s ease;
    }

    .sports-landing-nav-panel {
        position: absolute;
        top: calc(100% + 12px);
        left: 0;
        right: 0;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 14px;
        padding: 16px;
        border-radius: 22px;
        background: rgba(255, 255, 255, 0.98);
        border: 1px solid #e2e8f0;
        box-shadow: 0 24px 70px rgba(15, 23, 42, 0.16);
        backdrop-filter: blur(18px);
        z-index: 15;
    }

    body.sports-menu-open .sports-landing-nav-panel {
        display: flex;
    }

    .sports-landing-menu {
        width: 100%;
        display: grid;
        grid-template-columns: 1fr;
        gap: 8px;
        overflow: visible;
        padding: 0;
    }

    .sports-landing-menu a {
        width: 100%;
        box-sizing: border-box;
        padding: 13px 14px;
        border-radius: 14px;
        background: #f8fafc;
        border: 1px solid #e2e8f0;
        color: #0f172a;
        font-size: 0.96rem;
        text-align: left;
    }

    .sports-landing-actions {
        width: 100%;
        display: grid;
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .sports-login-link,
    .sports-demo-link {
        width: 100%;
        box-sizing: border-box;
        text-align: center;
        padding: 13px 16px;
        border-radius: 14px;
        font-size: 0.96rem;
    }

    .sports-login-link {
        background: #eff6ff;
        color: #1d4ed8;
        border: 1px solid #bfdbfe;
    }

    .sports-demo-link {
        background: #0f172a;
        color: #ffffff;
    }

    body.sports-menu-open .sports-menu-toggle span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    body.sports-menu-open .sports-menu-toggle span:nth-child(2) {
        opacity: 0;
    }

    body.sports-menu-open .sports-menu-toggle span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }
}

@media (max-width: 760px) {
    .sports-landing-v2 .sports-hero-v2 {
        padding-top: 38px;
        padding-bottom: 56px;
        gap: 34px;
    }

    .sports-landing-v2 .sports-hero-v2 .sports-hero-copy h1 {
        max-width: 12.5ch !important;
        font-size: clamp(2.25rem, 10vw, 3.25rem) !important;
        line-height: 1.02 !important;
        letter-spacing: -0.035em !important;
    }

    .sports-hero-copy p {
        line-height: 1.62;
    }

    .sports-preview-main {
        width: 100%;
        padding: 18px;
        box-sizing: border-box;
    }

    .sports-preview-top {
        padding: 20px;
        flex-direction: column;
        gap: 8px;
    }

    .sports-preview-top strong {
        font-size: 1.65rem;
    }
}

@media (max-width: 430px) {
    .sports-brand-subtitle {
        display: none;
    }

    .sports-brand-title {
        font-size: 1rem;
    }

    .sports-landing-v2 .sports-hero-v2 .sports-hero-copy h1 {
        max-width: 11.5ch !important;
        font-size: clamp(2.05rem, 10.5vw, 2.75rem) !important;
    }

    .sports-section-v2,
    .sports-split-section,
    .sports-growth-section,
    .sports-final-cta {
        padding: 22px;
    }
}


.sports-feature-icon-svg svg {
    width: 42px;
    height: 42px;
    display: block;
    overflow: visible;
}

/* =====================================================
   Mejora visual cards módulos landing DSM
   ===================================================== */

.sports-feature-grid {
    gap: 22px;
}

.sports-feature-card {
    min-height: 225px;
    padding: 28px;
    border-radius: 26px;
    background: linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
    border: 1px solid #dbe3ef;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.sports-feature-card:hover {
    transform: translateY(-5px);
    border-color: #bfdbfe;
    box-shadow: 0 22px 55px rgba(15, 23, 42, 0.12);
}

.sports-feature-icon-svg {
    width: 78px;
    height: 78px;
    border-radius: 24px;
    margin-bottom: 24px;
    background:
        radial-gradient(circle at 28% 22%, rgba(37, 99, 235, 0.22), transparent 38%),
        linear-gradient(135deg, #eff6ff 0%, #f8fbff 100%);
    box-shadow:
        inset 0 0 0 1px rgba(191, 219, 254, 0.95),
        0 12px 24px rgba(37, 99, 235, 0.08);
}

.sports-feature-icon-svg svg {
    width: 46px;
    height: 46px;
    display: block;
    overflow: visible;
}

.sports-feature-card h3 {
    font-size: 1.22rem;
    line-height: 1.25;
    margin-bottom: 12px;
    letter-spacing: -0.01em;
}

.sports-feature-card p {
    font-size: 1rem;
    line-height: 1.65;
    max-width: 36ch;
}

/* Hace que los SVG no se vean tan pesados o encimados */
.sports-feature-icon-svg .svg-line {
    stroke-width: 2.6;
}

.sports-feature-icon-svg .svg-line-only {
    stroke-width: 2.6;
}

.sports-feature-icon-svg .svg-primary-line {
    stroke-width: 3;
}

.sports-feature-icon-svg .svg-line-soft {
    stroke-width: 2.6;
}

.sports-feature-icon-svg .svg-line-light {
    stroke-width: 2.6;
}

.sports-feature-icon-svg .svg-line-white {
    stroke-width: 2.8;
}

.sports-feature-icon-svg .svg-dark-line {
    stroke-width: 2.6;
}

@media (max-width: 640px) {
    .sports-feature-card {
        min-height: auto;
        padding: 24px;
    }

    .sports-feature-icon-svg {
        width: 68px;
        height: 68px;
        border-radius: 22px;
        margin-bottom: 18px;
    }

    .sports-feature-icon-svg svg {
        width: 42px;
        height: 42px;
    }
}

.sports-feature-card-descuentos .sports-feature-icon-svg svg {
    width: 40px;
    height: 40px;
}

/* =====================================================
   Modo claro / oscuro landing DSM
   ===================================================== */

.sports-theme-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    min-height: 40px;
    padding: 10px 14px;
    border-radius: 999px;
    border: 1px solid #dbe3ef;
    background: #ffffff;
    color: #0f172a;
    font-size: 0.88rem;
    font-weight: 850;
    cursor: pointer;
    white-space: nowrap;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
    transition: 0.2s ease;
}

.sports-theme-toggle:hover {
    background: #eff6ff;
    color: #1d4ed8;
    border-color: #bfdbfe;
}

.sports-theme-toggle .theme-icon-dark {
    display: none;
}

/* ============================= */
/* Estado oscuro */
/* ============================= */

body.sports-dark-mode {
    background: #020617;
    color: #e5e7eb;
}

body.sports-dark-mode .sports-landing-v2 {
    background:
        radial-gradient(circle at top right, rgba(37, 99, 235, 0.24), transparent 34%),
        radial-gradient(circle at bottom left, rgba(14, 165, 233, 0.14), transparent 28%),
        linear-gradient(180deg, #020617 0%, #0f172a 100%);
    color: #e5e7eb;
}

body.sports-dark-mode .sports-landing-nav {
    background: rgba(15, 23, 42, 0.88);
    border-color: rgba(148, 163, 184, 0.22);
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.38);
}

body.sports-dark-mode .sports-brand-title {
    color: #ffffff;
}

body.sports-dark-mode .sports-brand-subtitle {
    color: #94a3b8;
}

body.sports-dark-mode .sports-landing-menu a,
body.sports-dark-mode .sports-login-link {
    color: #cbd5e1;
}

body.sports-dark-mode .sports-landing-menu a:hover,
body.sports-dark-mode .sports-login-link:hover {
    color: #93c5fd;
}

body.sports-dark-mode .sports-demo-link {
    background: #2563eb;
    color: #ffffff;
    box-shadow: 0 14px 34px rgba(37, 99, 235, 0.25);
}

body.sports-dark-mode .sports-theme-toggle {
    background: #0f172a;
    color: #e5e7eb;
    border-color: rgba(148, 163, 184, 0.3);
    box-shadow: none;
}

body.sports-dark-mode .sports-theme-toggle:hover {
    background: #1e293b;
    color: #93c5fd;
}

body.sports-dark-mode .sports-theme-toggle .theme-icon-light {
    display: none;
}

body.sports-dark-mode .sports-theme-toggle .theme-icon-dark {
    display: inline;
}

/* Hero oscuro */

body.sports-dark-mode .sports-hero-copy h1,
body.sports-dark-mode .sports-landing-v2 .sports-hero-v2 .sports-hero-copy h1 {
    color: #ffffff !important;
}

body.sports-dark-mode .sports-hero-copy p {
    color: #cbd5e1;
}

body.sports-dark-mode .sports-hero-points span {
    background: rgba(15, 23, 42, 0.72);
    color: #dbeafe;
    border-color: rgba(148, 163, 184, 0.24);
}

body.sports-dark-mode .sports-badge,
body.sports-dark-mode .sports-eyebrow {
    background: rgba(37, 99, 235, 0.18) !important;
    color: #93c5fd !important;
    border: 1px solid rgba(147, 197, 253, 0.2);
}

/* Preview oscuro */

body.sports-dark-mode .sports-preview-card {
    background: rgba(15, 23, 42, 0.86);
    border-color: rgba(148, 163, 184, 0.22);
    box-shadow: 0 30px 90px rgba(0, 0, 0, 0.38);
}

body.sports-dark-mode .sports-preview-bars div,
body.sports-dark-mode .sports-preview-table div {
    background: #0f172a;
    border-color: rgba(148, 163, 184, 0.22);
}

body.sports-dark-mode .sports-preview-bars span,
body.sports-dark-mode .sports-preview-table span,
body.sports-dark-mode .sports-preview-floating span,
body.sports-dark-mode .sports-preview-floating small {
    color: #94a3b8;
}

body.sports-dark-mode .sports-preview-bars strong,
body.sports-dark-mode .sports-preview-table strong,
body.sports-dark-mode .sports-preview-floating strong {
    color: #f8fafc;
}

/* Secciones oscuras */

body.sports-dark-mode .sports-section-v2,
body.sports-dark-mode .sports-split-section,
body.sports-dark-mode .sports-growth-section {
    background: rgba(15, 23, 42, 0.86);
    border-color: rgba(148, 163, 184, 0.18);
    box-shadow: 0 20px 70px rgba(0, 0, 0, 0.34);
}

body.sports-dark-mode .sports-section-heading h2,
body.sports-dark-mode .sports-split-section h2,
body.sports-dark-mode .sports-growth-section h2 {
    color: #ffffff !important;
}

body.sports-dark-mode .sports-section-heading p,
body.sports-dark-mode .sports-split-section p,
body.sports-dark-mode .sports-growth-section p {
    color: #cbd5e1 !important;
}

/* Cards módulos oscuras */

body.sports-dark-mode .sports-feature-card {
    background: linear-gradient(180deg, #0f172a 0%, #111827 100%);
    border-color: rgba(148, 163, 184, 0.22);
    box-shadow: none;
}

body.sports-dark-mode .sports-feature-card:hover {
    border-color: rgba(147, 197, 253, 0.45);
    box-shadow: 0 22px 55px rgba(0, 0, 0, 0.32);
}

body.sports-dark-mode .sports-feature-card h3 {
    color: #ffffff !important;
}

body.sports-dark-mode .sports-feature-card p {
    color: #cbd5e1 !important;
}

body.sports-dark-mode .sports-feature-icon-svg {
    background:
        radial-gradient(circle at 28% 22%, rgba(37, 99, 235, 0.35), transparent 38%),
        linear-gradient(135deg, #172554 0%, #0f172a 100%);
    box-shadow:
        inset 0 0 0 1px rgba(147, 197, 253, 0.25),
        0 12px 24px rgba(0, 0, 0, 0.24);
}

/* Beneficios y portal */

body.sports-dark-mode .sports-benefit-list div,
body.sports-dark-mode .sports-portal-grid article {
    background: #0f172a;
    border-color: rgba(148, 163, 184, 0.22);
}

body.sports-dark-mode .sports-benefit-list strong,
body.sports-dark-mode .sports-portal-grid strong {
    color: #ffffff !important;
}

body.sports-dark-mode .sports-benefit-list span,
body.sports-dark-mode .sports-portal-grid span {
    color: #cbd5e1 !important;
}

body.sports-dark-mode .sports-portal-section {
    background:
        radial-gradient(circle at bottom left, rgba(37, 99, 235, 0.18), transparent 34%),
        rgba(15, 23, 42, 0.86);
}

/* Tags */

body.sports-dark-mode .sports-growth-tags span {
    background: rgba(37, 99, 235, 0.18);
    color: #93c5fd;
}

/* Botones hero */

body.sports-dark-mode .sports-btn-hero-secondary {
    background: #0f172a;
    color: #ffffff;
    border-color: rgba(148, 163, 184, 0.28);
    box-shadow: none;
}

body.sports-dark-mode .sports-btn-hero-primary {
    background: #2563eb;
    color: #ffffff;
}

/* Menú móvil oscuro */

@media (max-width: 960px) {
    body.sports-dark-mode .sports-menu-toggle {
        background: #0f172a;
        border-color: rgba(148, 163, 184, 0.3);
    }

    body.sports-dark-mode .sports-menu-toggle span {
        background: #ffffff;
    }

    body.sports-dark-mode .sports-landing-nav-panel {
        background: rgba(15, 23, 42, 0.98);
        border-color: rgba(148, 163, 184, 0.22);
    }

    body.sports-dark-mode .sports-landing-menu a {
        background: #111827;
        color: #e5e7eb;
        border-color: rgba(148, 163, 184, 0.22);
    }

    body.sports-dark-mode .sports-login-link {
        background: rgba(37, 99, 235, 0.16);
        color: #93c5fd;
        border-color: rgba(147, 197, 253, 0.24);
    }
}

/* =====================================================
   Corrección modo oscuro: sección Portal cliente
   ===================================================== */

body.sports-dark-mode .sports-portal-section {
    background:
        radial-gradient(circle at bottom left, rgba(37, 99, 235, 0.18), transparent 34%),
        linear-gradient(180deg, #0b1220 0%, #0f172a 100%);
    border-color: rgba(148, 163, 184, 0.18);
    box-shadow: 0 20px 70px rgba(0, 0, 0, 0.34);
}

/* Título y texto principal de la sección */
body.sports-dark-mode .sports-portal-section .sports-section-heading h2 {
    color: #ffffff !important;
    opacity: 1 !important;
}

body.sports-dark-mode .sports-portal-section .sports-section-heading p {
    color: #cbd5e1 !important;
    opacity: 1 !important;
}

/* Badge "Portal cliente" */
body.sports-dark-mode .sports-portal-section .sports-eyebrow,
body.sports-dark-mode .sports-portal-section .sports-badge {
    background: rgba(37, 99, 235, 0.18) !important;
    color: #93c5fd !important;
    border: 1px solid rgba(147, 197, 253, 0.22);
}

/* Cards internas */
body.sports-dark-mode .sports-portal-grid article {
    background: linear-gradient(180deg, #0f172a 0%, #111827 100%);
    border-color: rgba(148, 163, 184, 0.22);
    box-shadow: none;
}

body.sports-dark-mode .sports-portal-grid strong {
    color: #ffffff !important;
}

body.sports-dark-mode .sports-portal-grid span {
    color: #cbd5e1 !important;
}

/* =====================================================
   AJUSTE FINAL DARK MODE
   Sección Primera fase + Portal cliente
   Debe ir al FINAL del archivo
   ===================================================== */

/* ---------- Primera fase ---------- */
body.sports-dark-mode .sports-section-v2 {
    background: rgba(15, 23, 42, 0.86) !important;
    border-color: rgba(148, 163, 184, 0.18) !important;
    box-shadow: 0 20px 70px rgba(0, 0, 0, 0.34) !important;
}

body.sports-dark-mode .sports-section-v2 .sports-section-heading h2 {
    color: #ffffff !important;
    opacity: 1 !important;
}

body.sports-dark-mode .sports-section-v2 .sports-section-heading p {
    color: #cbd5e1 !important;
    opacity: 1 !important;
}

body.sports-dark-mode .sports-section-v2 .sports-eyebrow,
body.sports-dark-mode .sports-section-v2 .sports-badge {
    background: rgba(37, 99, 235, 0.18) !important;
    color: #93c5fd !important;
    border: 1px solid rgba(147, 197, 253, 0.22);
}

/* ---------- Cards de módulos ---------- */
body.sports-dark-mode .sports-section-v2 .sports-feature-card {
    background: linear-gradient(180deg, #0f172a 0%, #111827 100%) !important;
    border-color: rgba(148, 163, 184, 0.22) !important;
    box-shadow: none !important;
}

body.sports-dark-mode .sports-section-v2 .sports-feature-card:hover {
    border-color: rgba(147, 197, 253, 0.45) !important;
    box-shadow: 0 22px 55px rgba(0, 0, 0, 0.32) !important;
}

body.sports-dark-mode .sports-section-v2 .sports-feature-card h3 {
    color: #ffffff !important;
}

body.sports-dark-mode .sports-section-v2 .sports-feature-card p {
    color: #cbd5e1 !important;
}

/* ---------- Portal cliente ---------- */
body.sports-dark-mode .sports-portal-section {
    background:
        radial-gradient(circle at bottom left, rgba(37, 99, 235, 0.18), transparent 34%),
        linear-gradient(180deg, #0b1220 0%, #0f172a 100%) !important;
    border-color: rgba(148, 163, 184, 0.18) !important;
    box-shadow: 0 20px 70px rgba(0, 0, 0, 0.34) !important;
}

body.sports-dark-mode .sports-portal-section .sports-section-heading h2 {
    color: #ffffff !important;
    opacity: 1 !important;
}

body.sports-dark-mode .sports-portal-section .sports-section-heading p {
    color: #cbd5e1 !important;
    opacity: 1 !important;
}

body.sports-dark-mode .sports-portal-section .sports-eyebrow,
body.sports-dark-mode .sports-portal-section .sports-badge {
    background: rgba(37, 99, 235, 0.18) !important;
    color: #93c5fd !important;
    border: 1px solid rgba(147, 197, 253, 0.22);
}

body.sports-dark-mode .sports-portal-grid article {
    background: linear-gradient(180deg, #0f172a 0%, #111827 100%) !important;
    border-color: rgba(148, 163, 184, 0.22) !important;
    box-shadow: none !important;
}

body.sports-dark-mode .sports-portal-grid strong {
    color: #ffffff !important;
}

body.sports-dark-mode .sports-portal-grid span {
    color: #cbd5e1 !important;
}

/* =====================================================
   Header logo más grande
   ===================================================== */

.sports-landing-brand-logo {
    min-width: 320px;
    max-width: 360px;
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    text-decoration: none;
    flex-shrink: 0;
}

.sports-header-logo {
    display: block;
    height: 72px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
}

/* Para que el nav respire mejor */
.sports-landing-nav {
    gap: 22px;
}

.sports-landing-menu {
    gap: 34px;
}

/* Responsive tablet */
@media (max-width: 1200px) {
    .sports-landing-brand-logo {
        min-width: 270px;
        max-width: 300px;
    }

    .sports-header-logo {
        height: 62px;
    }

    .sports-landing-menu {
        gap: 24px;
    }
}

/* Responsive móvil */
@media (max-width: 960px) {
    .sports-landing-brand-logo {
        min-width: auto;
        max-width: calc(100% - 64px);
    }

    .sports-header-logo {
        height: 48px;
        max-width: 220px;
    }
}

@media (max-width: 520px) {
    .sports-header-logo {
        height: 42px;
        max-width: 180px;
    }
}

body.sports-dark-mode .sports-landing-brand-logo {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(147, 197, 253, 0.22);
}

body.sports-dark-mode .sports-header-logo {
    filter:
        brightness(1.18)
        contrast(1.08)
        drop-shadow(0 0 10px rgba(255, 255, 255, 0.25))
        drop-shadow(0 0 22px rgba(37, 99, 235, 0.38));
}

/* =====================================================
   Header logo compacto DSM
   ===================================================== */

.sports-landing-brand-compact {
    min-width: 250px;
    max-width: 320px;
    gap: 12px;
}

.sports-landing-brand-compact .sports-header-logo {
    height: 66px;
    width: auto;
    max-width: 90px;
    object-fit: contain;
    flex-shrink: 0;
    filter: drop-shadow(0 8px 18px rgba(15, 23, 42, 0.22));
}

.sports-landing-brand-compact .sports-brand-subtitle {
    display: inline-block;
    color: #334155;
    font-size: 0.92rem;
    font-weight: 900;
    letter-spacing: 0.01em;
    white-space: nowrap;
}

body.sports-dark-mode .sports-landing-brand-compact .sports-brand-subtitle {
    color: #e5e7eb;
}

body.sports-dark-mode .sports-landing-brand-compact .sports-header-logo {
    filter:
        brightness(1.15)
        contrast(1.08)
        drop-shadow(0 0 10px rgba(147, 197, 253, 0.22));
}

@media (max-width: 960px) {
    .sports-landing-brand-compact {
        min-width: auto;
        max-width: calc(100% - 58px);
    }

    .sports-landing-brand-compact .sports-header-logo {
        height: 54px;
        max-width: 72px;
    }

    .sports-landing-brand-compact .sports-brand-subtitle {
        font-size: 0.84rem;
        max-width: 170px;
        overflow: hidden;
        text-overflow: ellipsis;
    }
}

@media (max-width: 430px) {
    .sports-landing-brand-compact .sports-brand-subtitle {
        display: none;
    }

    .sports-landing-brand-compact .sports-header-logo {
        height: 50px;
        max-width: 68px;
    }
}


/* =====================================================
   Header: texto de marca en dos líneas
   ===================================================== */

.sports-brand-subtitle-two-lines {
    display: flex !important;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 2px;
    line-height: 1.05;
    white-space: normal !important;
    min-width: 145px;
}

.sports-brand-subtitle-two-lines span:first-child {
    font-size: 1rem;
    font-weight: 950;
    letter-spacing: 0.12em;
    color: #0f172a;
}

.sports-brand-subtitle-two-lines span:last-child {
    font-size: 0.78rem;
    font-weight: 850;
    letter-spacing: 0.03em;
    color: #475569;
}

body.sports-dark-mode .sports-brand-subtitle-two-lines span:first-child {
    color: #ffffff;
}

body.sports-dark-mode .sports-brand-subtitle-two-lines span:last-child {
    color: #cbd5e1;
}

/* Da más aire entre la marca y el menú */
.sports-landing-brand {
    gap: 12px;
    margin-right: 18px;
}

@media (max-width: 960px) {
    .sports-brand-subtitle-two-lines {
        min-width: 120px;
    }

    .sports-brand-subtitle-two-lines span:first-child {
        font-size: 0.92rem;
    }

    .sports-brand-subtitle-two-lines span:last-child {
        font-size: 0.7rem;
    }
}

@media (max-width: 430px) {
    .sports-brand-subtitle-two-lines {
        display: none !important;
    }
}

/* =====================================================
   Dark mode: mejorar colores de KPIs del preview
   ===================================================== */

/* Cards del preview en modo oscuro */
body.sports-dark-mode .sports-preview-bars div,
body.sports-dark-mode .sports-preview-table div {
    background: rgba(15, 23, 42, 0.92) !important;
    border-color: rgba(148, 163, 184, 0.22) !important;
}

/* Texto general dentro del preview */
body.sports-dark-mode .sports-preview-bars span,
body.sports-dark-mode .sports-preview-table span {
    color: #cbd5e1 !important;
}

body.sports-dark-mode .sports-preview-bars strong,
body.sports-dark-mode .sports-preview-table strong {
    color: #f8fafc !important;
}

/* Verde: pago verificado */
body.sports-dark-mode .sports-preview-table .success {
    color: #4ade80 !important;
    text-shadow: 0 0 14px rgba(74, 222, 128, 0.28);
}

/* Naranja: mensualidad / pendiente */
body.sports-dark-mode .sports-preview-table .warning {
    color: #fb923c !important;
    text-shadow: 0 0 14px rgba(251, 146, 60, 0.28);
}

/* Rojo: uniforme / vencido */
body.sports-dark-mode .sports-preview-table .danger {
    color: #f87171 !important;
    text-shadow: 0 0 14px rgba(248, 113, 113, 0.28);
}

/* Borde lateral sutil para reforzar el color */
body.sports-dark-mode .sports-preview-table div:has(.success) {
    border-left: 4px solid #22c55e !important;
}

body.sports-dark-mode .sports-preview-table div:has(.warning) {
    border-left: 4px solid #f97316 !important;
}

body.sports-dark-mode .sports-preview-table div:has(.danger) {
    border-left: 4px solid #ef4444 !important;
}

/* =====================================================
   Ayuda visual en inputs de precios
   ===================================================== */

.sports-input-help {
    display: block;
    margin-top: 6px;
    color: #64748b;
    font-size: 0.84rem;
    font-weight: 700;
}

body.sports-dark-mode .sports-input-help {
    color: #cbd5e1;
}