/* =========================================
   StepsSectionNetifly · Break + Cards Styles
   Prefijo: stn- para evitar conflictos WP
   ========================================= */

.stn-break,
.stn-section {}

/* ---- BREAK HEADER ---- */
.stn-break {
    padding: 64px 48px;
    text-align: center;
    border-bottom: 1px solid var(--line);
    box-sizing: border-box;
}

.stn-break-label {
    font-family: var(--mont);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--blue);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.stn-break-label::before,
.stn-break-label::after {
    content: '';
    width: 24px;
    height: 1px;
    background: var(--blue);
    flex-shrink: 0;
}

.stn-break-title {
    font-family: var(--mont);
    font-size: clamp(28px, 4vw, 54px);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -1px;
    line-height: 0.97;
    max-width: 760px;
    margin: 0 auto;
    color: var(--text);
}

.stn-break-title em {
    font-style: normal;
    color: var(--blue);
}

.stn-break-sub {
    font-family: var(--mont);
    font-size: 15px;
    font-weight: 300;
    color: var(--soft);
    max-width: 520px;
    margin: 18px auto 0;
    line-height: 1.85;
}

/* ---- SECTION + GRID ---- */
.stn-section {
    padding: 0 0px 40px;
    border-bottom: 1px solid var(--line);
    box-sizing: border-box;
}

.stn-grid {
    display: grid;
    gap: 16px;
    margin-top: 0;
    box-sizing: border-box;
}

.stn-cols-1 { grid-template-columns: repeat(1, 1fr); }
.stn-cols-2 { grid-template-columns: repeat(2, 1fr); }
.stn-cols-3 { grid-template-columns: repeat(3, 1fr); }
.stn-cols-4 { grid-template-columns: repeat(4, 1fr); }
.stn-cols-5 { grid-template-columns: repeat(5, 1fr); }
.stn-cols-6 { grid-template-columns: repeat(6, 1fr); }

/* ---- CARD ---- */
.stn-card {
    border: 1px solid var(--line);
    padding: 32px;
    position: relative;
    transition: border-color 0.25s, background 0.25s;
    background: var(--bg);
    box-sizing: border-box;
}

.stn-card:hover {
    border-color: var(--lineb);
    background: var(--bg3);
}

/* Número decorativo esquina superior derecha */
.stn-card::before {
    content: attr(data-n);
    position: absolute;
    top: 24px;
    right: 24px;
    font-family: var(--corm);
    font-size: 48px;
    font-weight: 600;
    color: rgba(0, 160, 210, 0.1);
    line-height: 1;
    pointer-events: none;
}

.stn-icon {
    font-family: var(--mont);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--blue);
    margin-bottom: 14px;
}

.stn-title {
    font-family: var(--mont);
    font-size: 17px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: -0.2px;
    line-height: 1.15;
    margin-bottom: 12px;
    color: var(--text);
    max-width: 340px;
}

.stn-body {
    font-family: var(--mont);
    font-size: 13px;
    font-weight: 400;
    color: var(--soft);
    line-height: 1.8;
    margin: 0;
}

.stn-body strong {
    color: var(--text);
    font-weight: 700;
}

/* ---- RESPONSIVE ---- */
@media (max-width: 991px) {
    .stn-break {
        padding: 44px 24px;
    }

    .stn-section {
        padding: 0 24px 40px;
    }

    .stn-cols-3,
    .stn-cols-4,
    .stn-cols-5,
    .stn-cols-6 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .stn-break {
        padding: 36px 20px;
    }

    .stn-section {
        padding: 0 20px 32px;
    }

    .stn-cols-2,
    .stn-cols-3,
    .stn-cols-4,
    .stn-cols-5,
    .stn-cols-6 {
        grid-template-columns: 1fr;
    }

    .stn-card {
        padding: 24px 20px;
    }
}
