/* ============================================================
   internet-new.css
   Estilos incrementales para la página de planes C3L.
   Se carga DESPUÉS de internet.css, no lo reemplaza.
   ============================================================ */

:root {
    --c3l-verde:        #1a5c2e;
    --c3l-verde-medio:  #236b37;
    --c3l-verde-claro:  #4a9960;
    --c3l-verde-suave:  #e8f3ec;
    --c3l-negro:        #1a1a18;
    --c3l-gris-claro:   #f4f4f2;
    --c3l-gris:         #9a9a96;
    --c3l-gris-oscuro:  #4a4a48;
    --c3l-blanco:       #ffffff;
    --font-display:     'Barlow Condensed', sans-serif;
    --font-body:        'Source Sans 3', sans-serif;
}

/* ── HERO ── */
.int-hero {
    background: var(--c3l-verde);
    color: var(--c3l-blanco);
    padding: 64px 32px 52px;
    position: relative;
    overflow: hidden;
}

.int-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
        -55deg,
        transparent,
        transparent 48px,
        rgba(255,255,255,0.025) 48px,
        rgba(255,255,255,0.025) 49px
    );
    pointer-events: none;
}

.int-hero-inner {
    max-width: 860px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.int-hero-badge {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.75);
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    padding: 5px 14px;
    border-radius: 4px;
    margin-bottom: 18px;
}

.int-hero-title {
    font-family: var(--font-display) !important;
    font-size: clamp(42px, 6vw, 72px) !important;
    font-weight: 700 !important;
    line-height: 1.05 !important;
    margin-bottom: 16px;
    letter-spacing: -0.01em;
    color: var(--c3l-blanco) !important;
}

.int-hero-title span {
    color: #7dcf9a;
}

.int-hero-sub {
    font-family: var(--font-body);
    font-size: 17px;
    color: rgba(255,255,255,0.72);
    line-height: 1.65;
    max-width: 520px;
    margin: 0 auto 36px;
}

.int-hero-benefits {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px 28px;
    position: relative;
    z-index: 1;
    border-top: 1px solid rgba(255,255,255,0.15);
    padding-top: 28px;
    margin-top: 8px;
}

.int-benefit {
    display: flex;
    align-items: center;
    gap: 7px;
    font-family: var(--font-body);
    font-size: 14px;
    color: rgba(255,255,255,0.78);
}

.int-benefit svg {
    width: 15px;
    height: 15px;
    color: #7dcf9a;
    flex-shrink: 0;
}

.int-benefit strong {
    color: #fff;
    font-weight: 600;
}

/* ── TOGGLE ── */
.int-toggle-wrap {
    display: flex;
    justify-content: center;
    padding: 40px 0 8px;
}

.int-toggle {
    display: flex;
    background: #e4e4e0;
    border-radius: 8px;
    padding: 3px;
    gap: 2px;
}

.int-toggle-btn {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 500;
    color: var(--c3l-gris-oscuro);
    background: transparent;
    border: none;
    padding: 9px 24px;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
    letter-spacing: 0.01em;
}

.int-toggle-btn.active {
    background: var(--c3l-verde);
    color: #fff;
    font-weight: 600;
}

/* ── GRILLA DE PLANES ── */
.int-plans-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 32px;
    padding: 40px 20px 20px;
    max-width: 1100px;
    margin: 0 auto;
}

.int-plans-grid-4 {
    gap: 20px;
}

/* ── TARJETA DE PLAN (extensión del .pnet existente) ── */
.pnet-new {
    position: relative;
    width: 300px;
    border-radius: 14px !important;
    background-color: var(--c3l-blanco) !important;
    border: 1.5px solid #ddd;
    overflow: visible !important;
    transition: box-shadow 0.25s, transform 0.25s;
}

.pnet-new:hover {
    box-shadow: 0 12px 40px rgba(26,92,46,0.13);
    transform: translateY(-3px);
}

/* Plan destacado 
.pnet-featured {
    border-color: var(--c3l-verde) !important;
    border-width: 2px !important;
}*/

/* Plan promo 
.pnet-promo {
    border-color: var(--c3l-verde-claro) !important;
    border-width: 2px !important;
}*/

/* Badge encima de la tarjeta 
.pnet-badge {
    position: absolute;
    top: -13px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--c3l-verde);
    color: #fff;
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    padding: 4px 18px;
    border-radius: 20px;
    white-space: nowrap;
    z-index: 2;
}*/

.pnet-badge-promo {
    background: var(--c3l-verde-claro);
}

/* Bloque megas tachados → nuevos */
.pnet-megas-upgrade {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 10px 4px;
    font-family: var(--font-body);
}

.megas-old {
    font-size: 15px;
    color: var(--c3l-gris);
    text-decoration: line-through;
    text-decoration-color: #c0392b;
    text-decoration-thickness: 2px;
}

.megas-arrow {
    font-size: 14px;
    color: var(--c3l-gris);
}

.megas-new {
    font-size: 16px;
    font-weight: 700;
    color: var(--c3l-verde);
    background: var(--c3l-verde-suave);
    padding: 2px 10px;
    border-radius: 20px;
}

/* Features especiales */
.pnet-features ul li.feat-highlight {
    color: var(--c3l-verde);
    font-weight: 600;
}

.pnet-features ul li.feat-promo {
    color: var(--c3l-verde-claro);
    font-weight: 700;
    background: var(--c3l-verde-suave);
    border-radius: 6px;
    padding: 5px 8px;
    margin-top: 4px;
    font-size: 13px;
    line-height: 1.4;
}

/* ── BANNER PROMO 300 ── */
.int-promo-banner {
    display: flex;
    align-items: center;
    gap: 24px;
    background: var(--c3l-verde);
    border-radius: 14px;
    padding: 28px 32px;
    margin: 12px auto 0;
    max-width: 960px;
    flex-wrap: wrap;
}

.int-promo-icon {
    width: 48px;
    height: 48px;
    background: rgba(255,255,255,0.12);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.int-promo-icon svg {
    width: 24px;
    height: 24px;
    color: #7dcf9a;
}

.int-promo-text {
    flex: 1;
    min-width: 200px;
}

.int-promo-text strong {
    display: block;
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 4px;
    line-height: 1.2;
}

.int-promo-text span {
    font-family: var(--font-body);
    font-size: 14px;
    color: rgba(255,255,255,0.68);
    line-height: 1.5;
}

.int-promo-cta {
    flex-shrink: 0;
}

.btn-select-plan-promo {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--c3l-blanco);
    color: var(--c3l-verde);
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 700;
    padding: 13px 24px;
    border-radius: 8px;
    cursor: pointer;
    border: none;
    white-space: nowrap;
    transition: background 0.2s, transform 0.15s;
}

.btn-select-plan-promo:hover {
    background: var(--c3l-verde-suave);
    transform: translateY(-1px);
}

.btn-select-plan-promo .fa {
    font-size: 18px;
    color: #25D366;
}

/* ── SORPRESA ── */
.int-surprise {
    text-align: center;
    padding: 40px 24px 12px;
    max-width: 700px;
    margin: 0 auto;
}

.int-surprise p {
    font-family: var(--font-display);
    font-size: clamp(22px, 3.5vw, 34px);
    font-weight: 700;
    color: var(--c3l-negro);
    line-height: 1.25;
    margin-bottom: 10px;
}

.int-surprise p em {
    color: var(--c3l-verde);
    font-style: normal;
}

.int-surprise-quote {
    color: var(--c3l-verde-claro);
    font-size: 1.4em;
    line-height: 0;
    vertical-align: -0.2em;
}

.int-surprise small {
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--c3l-gris);
    display: block;
    margin-top: 6px;
}

/* ── NOTA AL PIE DE PLANES ── */
.int-nota {
    color: var(--c3l-gris);
    font-size: 13px;
    line-height: 1.7;
    max-width: 960px;
    margin: 28px auto 16px;
    padding: 0 20px;
    text-align: center;
}

/* ── SECCIÓN CONTENEDORA ── */
.int-section {
    padding-bottom: 60px;
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
    .int-hero {
        padding: 48px 20px 40px;
    }

    .int-hero-benefits {
        gap: 10px 20px;
    }

    .int-plans-grid {
        gap: 40px 20px;
        padding: 32px 16px 16px;
    }

    .pnet-new {
        width: 280px;
    }

    .int-promo-banner {
        padding: 22px 20px;
        gap: 16px;
    }

    .int-promo-text strong {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .int-hero-title {
        font-size: 38px !important;
    }

    .pnet-new {
        width: 90vw;
        max-width: 320px;
    }

    .int-promo-banner {
        flex-direction: column;
        text-align: center;
    }

    .int-promo-cta {
        width: 100%;
    }

    .btn-select-plan-promo {
        width: 100%;
        justify-content: center;
    }

    .int-surprise p {
        font-size: 22px;
    }
}
