.tv-fibra-hero {
    --bg: transparent;
    --surface: rgba(255, 255, 255, 0.04);
    --surface-strong: rgba(255, 255, 255, 0.08);
    --border: rgba(255, 255, 255, 0.12);
    --accent: #00e6c3;
    --accent-2: #ff8a29;
    --accent-3: #ffcf33;
    --text-primary: #eaf6ff;
    --text-muted: #cde9ff;
    position: relative;
    background: var(--bg);
    border-radius: 0;
    overflow: visible;
    box-shadow: none;
    isolation: auto;
}

.tv-fibra-hero::before,
.tv-fibra-hero::after {
    content: none;
}

.tv-fibra-hero .container {
    position: relative;
    z-index: 1;
}

.tv-fibra-hero .eyebrow {
    color: var(--accent);
    letter-spacing: 0.08em;
    position: relative;
    z-index: 1;
}

.tv-fibra-hero h2,
.tv-fibra-hero p,
.tv-fibra-hero li {
    color: var(--text-primary);
}

.tv-fibra-hero p.lead {
    max-width: 38rem;
    color: #dff3ff;
}

.tv-fibra-hero ul {
    padding-left: 0;
    line-height: 1.5;
    display: grid;
    gap: 6px;
}

.plan-chips {
    display: grid;
    /* Reduced minmax to 130px to fit smaller screens better or wrap more gracefully */
    grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
    grid-auto-rows: auto;
    /* Changed from fixed 52px to auto for multiline text support */
    gap: 12px;
    align-items: stretch;
    margin-bottom: 10px;
}

.plan-chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    /* Gamer Style Base */
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #8faab9;
    /* Tech Text Color */

    padding: 12px 14px;
    /* Reduced side padding slightly */
    min-height: 52px;

    /* Tech Shape */
    border-radius: 0;
    clip-path: polygon(12px 0, 100% 0, 100% calc(100% - 12px), calc(100% - 12px) 100%, 0 100%, 0 12px);

    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: normal;
    /* Allow wrapping if needed */
    text-align: center;
    line-height: 1.2;
    box-shadow: none;
    position: relative;
    z-index: 1;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.plan-chip:focus-visible {
    outline: 1px solid #ff4d1d;
    outline-offset: 4px;
}

.plan-chip:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.3);
}

.plan-chip.is-active {
    /* Gamer Style Active - Orange Tech */
    background: rgba(255, 77, 29, 0.15);
    /* Laranja Transparente */
    border-color: #ff4d1d;
    /* Laranja Neon */
    color: #fff;
    box-shadow: 0 0 15px rgba(255, 77, 29, 0.25), inset 0 0 10px rgba(255, 77, 29, 0.1);
    text-shadow: 0 0 8px rgba(255, 77, 29, 0.6);
    transform: translateY(-2px);
}

.badges {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    grid-auto-rows: auto;
    gap: 10px;
    align-items: stretch;
    margin-bottom: 12px;
}

.badge-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(120deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.04));
    color: var(--text-muted);
    padding: 10px 14px;
    min-height: 44px;
    border-radius: 999px;
    font-size: 0.95rem;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.14);
    line-height: 1.2;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.22);
    white-space: normal;
    text-align: center;
}

.btn-primary-cta {
    background: linear-gradient(120deg, #ff8a29, #ff4d1d);
    border: none;
    color: #0b1b2e;
    font-weight: 800;
    padding: 12px 24px;
    border-radius: 14px;
    box-shadow: 0 15px 40px rgba(255, 138, 41, 0.35);
    text-transform: uppercase;
    letter-spacing: 0.03em;
    position: relative;
    z-index: 1;
}

.btn-primary-cta:hover {
    filter: brightness(1.05);
    transform: translateY(-1px);
}

.btn-primary-cta:focus-visible,
.btn-secondary-ghost:focus-visible {
    outline: 2px solid #ffffff;
    outline-offset: 3px;
    box-shadow: 0 0 0 6px rgba(255, 255, 255, 0.08);
}

.btn-secondary-ghost {
    border: 1px solid rgba(0, 230, 195, 0.6);
    color: #c8f7ed;
    padding: 12px 20px;
    border-radius: 12px;
    background: rgba(0, 230, 195, 0.08);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.25);
}

.btn-secondary-ghost:hover {
    border-color: #00e6c3;
    color: #00e6c3;
}

.hero-card {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    background: var(--surface);
    backdrop-filter: blur(14px);
    border: 1px solid var(--border);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.35);
    /* Safety for mobile */
    max-width: 100%;
    width: 100%;
}

.hero-card.border-cyan {
    border-radius: 18px;
    border: 2px solid #00e6c3;
    box-shadow: 0 0 18px rgba(0, 230, 195, 0.32), 0 18px 38px rgba(0, 0, 0, 0.28);
}

.hero-card::before {
    content: "";
    position: absolute;
    inset: -40% 10% auto 10%;
    height: 60%;
    background: radial-gradient(circle, rgba(0, 230, 195, 0.3), transparent 55%);
    filter: blur(50px);
    z-index: 0;
}

.hero-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(140deg, rgba(255, 255, 255, 0.06), transparent 40%);
    opacity: 0.7;
    pointer-events: none;
    z-index: 0;
}

.hero-card__image {
    position: relative;
    height: 280px;
    overflow: hidden;
}

.hero-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero-card__overlay {
    position: absolute;
    inset: 0;
    background: none;
}

.hero-card__body {
    padding: 18px 20px 22px;
    color: #e8f6ff;
    position: relative;
    z-index: 1;
    background: linear-gradient(180deg, rgba(11, 27, 46, 0.7), rgba(11, 27, 46, 0.92));
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-card .price-symbol {
    font-weight: 700;
    color: var(--text-muted);
}

.hero-card .price-value {
    font-size: 2.4rem;
    line-height: 1;
    color: #ffffff;
    text-shadow: 0 10px 25px rgba(0, 0, 0, 0.35);
}

.hero-card .price-period {
    color: var(--text-muted);
}

.hero-card .hero-note {
    color: #bafcf2;
    font-weight: 700;
}

.hero-card ul li {
    margin-bottom: 6px;
    color: var(--text-muted);
}

.hero-card ul li:last-child {
    margin-bottom: 0;
}

@media (max-width: 991px) {
    .tv-fibra-hero {
        padding: 32px 0;
    }

    .hero-card__image {
        height: 220px;
    }

    .btn-primary-cta,
    .btn-secondary-ghost {
        width: 100%;
        justify-content: center;
        text-align: center;
    }
}

@media (max-width: 576px) {
    .tv-fibra-hero h2 {
        font-size: 1.7rem;
        text-align: center;
    }

    .tv-fibra-hero .lead {
        font-size: 1rem;
        text-align: center;
    }

    .tv-fibra-hero .eyebrow {
        text-align: center;
        display: block;
    }

    .plan-chip {
        font-size: 0.95rem;
        min-height: 46px;
    }

    .badge-pill {
        font-size: 0.9rem;
    }

    /* Mobile Feature Grid */
    .feature-grid {
        grid-template-columns: 1fr;
        /* Stack vertically for clarity */
        gap: 15px;
        margin-bottom: 25px;
    }

    .feature-card {
        flex-direction: row;
        align-items: center;
        text-align: left;
        /* Keep text left aligned for readability */
        padding: 15px;
    }

    .feature-icon {
        margin-bottom: 0;
        margin-right: 15px;
        font-size: 2.2rem;
    }

    .btn-shine-cta {
        width: 100%;
        margin-bottom: 10px;
    }
}

/* --- SHINY BUTTON STYLE (Imported from Hero Gamer) --- */
.btn-shine-cta {
    position: relative;
    padding: 15px 35px;
    background: #ff4d1d;
    color: #fff !important;
    font-weight: 800;
    text-transform: uppercase;
    font-size: 1.1rem;
    border: none;
    border-radius: 6px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(255, 77, 29, 0.25);
    overflow: hidden;
    white-space: nowrap;
}

.btn-shine-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(255, 77, 29, 0.4);
    color: #fff !important;
}

.btn-shine-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.6), transparent);
    animation: shine-pass 4s infinite;
}

@keyframes shine-pass {
    0% {
        left: -100%;
    }

    20% {
        left: 100%;
    }

    100% {
        left: 100%;
    }
}

/* --- FEATURE CARDS --- */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.feature-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 20px;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 230, 195, 0.5);
    background: rgba(255, 255, 255, 0.08);
}

.feature-icon {
    font-size: 2rem;
    margin-bottom: 5px;
    line-height: 1;
    color: #00e6c3;
    /* Brand Cyan */
    text-shadow: 0 0 15px rgba(0, 230, 195, 0.6);
}

.feature-title {
    font-weight: 700;
    color: #fff;
    font-size: 1.1rem;
    margin: 0;
}

.feature-desc {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    line-height: 1.4;
}

@media (max-width: 576px) {
    .feature-grid {
        grid-template-columns: 1fr;
    }
}