/* =========================================
   HomeNetifly · Hero Shortcode Styles
   Prefijo: hn- para evitar conflictos WP
   ========================================= */

.hn-hero {

    display: grid;
    grid-template-columns: 1fr 1fr;
    border-bottom: 1px solid var(--line);
    box-sizing: border-box;
    margin-top: 70px;
}

/* ---- LEFT ---- */
.hn-hero-left {
    padding: 40px 0px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: linear-gradient(145deg, var(--bg) 50%, #060e11 100%);
    border-right: 1px solid var(--line);
    box-sizing: border-box;
}

.hn-hero-tag {
    font-family: var(--mont);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--blue);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.hn-hero-tag::before {
    content: '';
    width: 24px;
    height: 1px;
    background: var(--blue);
    flex-shrink: 0;
}

.hn-hero-title {
    font-family: var(--mont);
    font-size: clamp(34px, 4vw, 54px);
    font-weight: 900;
    line-height: 1.0;
    text-transform: uppercase;
    letter-spacing: -0.5px;
    margin-bottom: 20px;
    color: var(--text);
}

.hn-hero-title span {
    color: var(--blue);
}

.hn-hero-sub {
    font-family: var(--mont);
    font-size: 14px;
    font-weight: 400;
    color: var(--soft);
    max-width: 440px;
    margin-bottom: 28px;
    line-height: 1.85;
}

.hn-hero-btns {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.hn-btn-primary {
    padding: 12px 28px;
    background: var(--blue);
    color: #fff;
    font-family: var(--mont);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    transition: background 0.2s;
    display: inline-block;
    box-sizing: border-box;
}

.hn-btn-primary:hover {
    background: var(--blue-lt);
    color: #fff;
}

.hn-btn-secondary {
    padding: 12px 28px;
    background: transparent;
    color: var(--soft);
    font-family: var(--mont);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    border: 1px solid var(--line);
    transition: border-color 0.2s, color 0.2s;
    display: inline-block;
    box-sizing: border-box;
}

.hn-btn-secondary:hover {
    border-color: var(--blue);
    color: var(--blue);
}

/* ---- RIGHT ---- */
.hn-hero-right {
    display: flex;
    flex-direction: column;
    background: var(--bg2);
    justify-content: center;
}

.hn-hero-stat {
    padding: 22px 40px;
    border-bottom: 1px solid var(--line);
    display: flex;
    align-items: center;
    gap: 20px;
    box-sizing: border-box;
}

.hn-hero-stat:last-child {
    border-bottom: none;
}

.hn-stat-num {
    font-family: var(--mont);
    font-size: 38px;
    font-weight: 900;
    color: var(--blue);
    line-height: 1;
    letter-spacing: -2px;
    min-width: 88px;
}

.hn-stat-label {
    font-family: var(--mont);
    font-size: 13px;
    font-weight: 600;
    color: var(--text);
    line-height: 1.3;
}

.hn-stat-sub {
    font-family: var(--mont);
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: var(--muted);
    margin-top: 3px;
}

/* ---- RESPONSIVE ---- */
@media (max-width: 768px) {
    .hn-hero {
        grid-template-columns: 1fr;
    }

    .hn-hero-left {
        padding: 32px 24px;
        border-right: none;
        border-bottom: 1px solid var(--line);
    }

    .hn-hero-stat {
        padding: 18px 24px;
    }

    .hn-stat-num {
        font-size: 28px;
        min-width: 64px;
    }
}
