/* Heredamos variables del theme Pro */
:root {
    --net-primary: #2563eb;
    --net-dark: #1e3a8a;
    --net-grad: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    --net-bg: #f8fafc;
    --net-surface: #ffffff;
    --net-text: #334155;
    --net-radius: 24px;
    --net-shadow: 0 15px 35px -5px rgba(37, 99, 235, 0.15);
    
}

/* SECTION */
.net-section-pro {
    background: var(--net-bg);
    padding: 20px 0 60px;
}





/* TABS */
.tabs-wrapper { display: flex; justify-content: center; margin-bottom: 50px; }
.tabs-container {
    background: #e2e8f0;
    padding: 5px;
    border-radius: 99px;
    display: inline-flex;
}
.tab-btn {
    border: none;
    background: transparent;
    padding: 12px 35px;
    border-radius: 99px;
    font-weight: 800;
    color: #64748b;
    cursor: pointer;
    transition: all 0.3s;
}
.tab-btn.active {
    background: #fff;
    color: var(--net-primary);
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

/* GRID */
.net-grid {
    display: none;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 35px;
    animation: fadeInUp 0.5s ease;
}
.net-grid.active-grid { display: grid; }
@keyframes fadeInUp { from{opacity:0;transform:translateY(20px)} to{opacity:1;transform:translateY(0)} }

/* TARJETA PRO */
.n-card-pro {
    background: var(--net-surface);
    border-radius: var(--net-radius);
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(0,0,0,0.05);
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
}

.n-card-pro:hover {
    transform: translateY(-10px);
    box-shadow: var(--net-shadow);
}

/* Header Tarjeta */
.n-card-header {
    background: var(--net-grad);
    padding: 35px 25px 60px; /* Padding extra abajo para la curva */
    color: #fff;
    text-align: center;
    position: relative;
}

.header-curve {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 50px;
}

.n-plan-name {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 600;
    opacity: 0.9;
    margin: 0 0 10px;
}

/* Stat Principal (Megas o GB) */
.n-main-stat {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    margin-bottom: 5px;
}
.stat-num {
    font-size: 52px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -2px;
}
.stat-meta {
    display: flex;
    flex-direction: column;
    text-align: left;
    line-height: 1;
}
.stat-unit { font-size: 16px; font-weight: 800; }
.stat-label { font-size: 11px; opacity: 0.8; }

.n-sub-stat {
    font-size: 13px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: rgba(255,255,255,0.2);
    padding: 4px 12px;
    border-radius: 20px;
}

/* Body */
.n-card-body {
    padding: 10px 30px 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

/* Precio */
.n-pricing-block { text-align: center; margin-bottom: 20px; }
.n-price-row { color: var(--net-dark); display: flex; justify-content: center; align-items: flex-start; }
.n-currency { font-size: 22px; font-weight: 600; margin-top: 4px; }
.n-amount { font-size: 42px; font-weight: 800; letter-spacing: -1px; }
.n-period { font-size: 12px; color: #64748b; font-weight: 500; }

.divider { height: 1px; background: #f1f5f9; margin: 0 auto 20px; width: 80%; }

/* Features */
.n-features-list { list-style: none; padding: 0; margin: 0 0 25px; flex-grow: 1; }
.n-features-list li {
    display: flex;
    align-items: start;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 14px;
    color: var(--net-text);
    line-height: 1.4;
}
.icon-box {
    color: var(--net-primary);
    background: #eff6ff;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 12px;
}
.highlight-feat { font-weight: 600; color: var(--net-dark); }
.icon-check { width: 16px; height: 16px; color: #10b981; margin-top: 2px; }

/* Botón CTA */
.n-btn-cta {
    background: var(--net-dark);
    color: #fff;
    text-decoration: none;
    padding: 15px;
    border-radius: 99px;
    font-weight: 700;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    transition: all 0.3s;
}
.n-btn-cta:hover {
    background: var(--net-primary);
    box-shadow: 0 10px 20px rgba(37, 99, 235, 0.3);
    transform: translateY(-3px);
}

/* Badge Flotante */
.floating-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #fff;
    color: var(--net-primary);
    font-size: 10px;
    font-weight: 800;
    padding: 5px 10px;
    border-radius: 99px;
    z-index: 10;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}