/* ═══════════════════════════════════════════════════════════════
   ASSINENET — SISTEMA ÚNICO DE ESTILOS
   REGRA DE OURO:
   → Um único styles.css. Nenhum estilo é criado fora deste arquivo.
   → Nenhum style= inline no HTML. Use classes definidas aqui.
   → config.js é a ÚNICA fonte de dados (preços, textos, features).
   → script.js é o ÚNICO motor de renderização de cards.
   → index.html é o TEMPLATE MÃE.
═══════════════════════════════════════════════════════════════ */
/* CSS ANTIGRAVITY - ASSINENET (CLARO OFFICIAL UI) */
:root {
    --color-bg-main: #FFFFFF;
    --color-bg-light-gray: #F4F4F4;
    --color-red: #EE2922;
    --color-red-dark: #C6211C;
    --color-yellow: #FFC700;
    --color-yellow-hover: #EAB600;
    --color-blue: #0073D1;
    --color-text-main: #333333;
    --color-text-muted: #666666;
    --color-text-white: #FFFFFF;

    --transition-smooth: 0.3s ease;
    --font-main: 'Inter', sans-serif;

    /* ── TOKEN GLOBAL DE BOTÕES (altere aqui para mudar TODOS) ── */
    --btn-radius: 50px;
    /* Pílula. Mude para 8px se quiser quadrado */
    --btn-padding: 14px 28px;
    --btn-font-size: 1.05rem;
    --btn-weight: 900;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body.light-theme {
    font-family: var(--font-main);
    background-color: var(--color-bg-main);
    color: var(--color-text-main);
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.max-w-800 {
    max-width: 800px;
    margin: 0 auto;
}

.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

.mb-10 {
    margin-bottom: 10px;
}

.mb-20 {
    margin-bottom: 20px;
}

.mb-40 {
    margin-bottom: 40px;
}

.mt-10 {
    margin-top: 10px;
}

.mt-20 {
    margin-top: 20px;
}

.mt-40 {
    margin-top: 40px;
}

.w-100 {
    width: 100%;
    display: block;
    text-align: center;
}

.text-red {
    color: var(--color-red);
}

.text-white {
    color: var(--color-text-white);
}

.text-muted {
    color: var(--color-text-muted);
}

.bg-light-gray {
    background-color: var(--color-bg-light-gray);
}

.bg-red {
    background-color: var(--color-red);
}

.section-alt {
    background: #FAFAFA;
}

.section-white {
    background: #FFFFFF;
}

.section-dark {
    background: #111;
}

/* -- BOTOES: edite --btn-radius no :root para mudar todos --*/
.btn-cta-yellow {
    background-color: var(--color-yellow);
    color: #000;
    border: none;
    padding: var(--btn-padding);
    border-radius: var(--btn-radius);
    font-size: var(--btn-font-size);
    font-weight: var(--btn-weight);
    cursor: pointer;
    transition: var(--transition-smooth);
    text-transform: uppercase;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    letter-spacing: 0.5px;
}

.btn-cta-yellow:hover {
    background-color: var(--color-yellow-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(255, 199, 0, 0.45);
}

.btn-giant {
    font-size: 1.3rem;
    padding: 18px 40px;
}

.btn-outline-red {
    border: 2px solid var(--color-red);
    color: var(--color-red);
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 800;
    text-decoration: none;
    display: inline-block;
    transition: var(--transition-smooth);
}

.btn-outline-red:hover {
    background-color: var(--color-red);
    color: #FFF;
}

.btn-outline-white {
    border: 2px solid #FFF;
    color: #FFF;
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 800;
    text-decoration: none;
    display: inline-block;
    transition: var(--transition-smooth);
}

.btn-outline-white:hover {
    background-color: #FFF;
    color: var(--color-red);
}

/* --- HEADER --- */
.header-top-blue {
    background-color: var(--color-blue);
    color: #FFF;
    padding: 6px 0;
    font-size: 0.85rem;
    font-weight: 600;
}

.header-claro {
    background-color: #FFF;
    border-bottom: 1px solid #EAEAEA;
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-logo {
    height: 32px;
    width: auto;
}

.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-links a {
    color: #333333;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    gap: 5px;
}

.nav-links a:hover {
    color: var(--color-red);
}

.icon-dropdown {
    width: 14px;
    height: 14px;
    stroke: currentColor;
    stroke-width: 2;
    fill: none;
}

.icon-phone-red {
    width: 22px;
    height: 22px;
    stroke: var(--color-red-dark);
}

.header-phone-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    font-size: 1.2rem;
    box-shadow: none;
    letter-spacing: -0.5px;
}

.header-phone-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(255, 199, 0, 0.4);
}

/* --- HERO SECTION (FIBER & CAPTURE) --- */
.hero-section-fiber {
    position: relative;
    padding: 100px 0 120px;
    background-image: url('imagens/hero-claro-net.webp');
    background-size: cover;
    background-position: center;
    color: #FFF;
    text-align: center;
}

.hero-section-fiber::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.5));
    z-index: 1;
}

.hero-section-fiber .container {
    position: relative;
    z-index: 2;
}

.h1-discreet {
    font-size: 1rem;
    opacity: 0.9;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.h2-impact {
    font-size: 2.8rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.6);
}

/* --- CEP FORM & LEADS --- */
.cep-form-container {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 30px;
    max-width: 550px;
    margin: 0 auto;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    color: var(--color-text-main);
}

.cep-input-group {
    display: flex;
    gap: 15px;
    margin-bottom: 10px;
}

.cep-input {
    flex: 1;
    padding: 16px 20px;
    border: 2px solid #EAEAEA;
    border-radius: 8px;
    font-size: 1.2rem;
    font-family: var(--font-main);
    outline: none;
    transition: var(--transition-smooth);
}

.cep-input:focus {
    border-color: var(--color-red);
}

.cep-input.input-error {
    border-color: var(--color-red);
    background-color: #FFF0F0;
}

.btn-consultar {
    background: var(--color-yellow);
    border: none;
    border-radius: var(--btn-radius);
    padding: 0 35px;
    font-size: 1.1rem;
    font-weight: var(--btn-weight);
    color: #000;
    cursor: pointer;
    transition: var(--transition-smooth);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-consultar:hover {
    background: var(--color-yellow-hover);
    transform: translateY(-2px);
}

.cep-error-msg {
    color: var(--color-red);
    font-size: 0.85rem;
    font-weight: 600;
    text-align: left;
    margin-bottom: 10px;
    display: block;
}

.client-link {
    display: inline-block;
    color: var(--color-blue);
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: underline;
    margin-top: 15px;
}

/* --- TRUST BAR --- */
.trust-bar {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 50px;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
    font-weight: 700;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
}

.trust-item svg {
    width: 24px;
    height: 24px;
    color: var(--color-red);
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

/* --- DYNAMIC STATES --- */
.hidden {
    display: none !important;
}

.spinner-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    padding: 20px 0;
}

.spinner {
    width: 40px;
    height: 40px;
    border: 4px solid #EAEAEA;
    border-top-color: var(--color-red);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    100% {
        transform: rotate(360deg);
    }
}

.success-voucher {
    background: #F0FFF4;
    border: 2px dashed #00A34A;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
    text-align: center;
    animation: fadeIn 0.5s ease-out;
}

.success-voucher h3 {
    color: #00A34A;
    font-size: 1.2rem;
    font-weight: 800;
    margin-bottom: 5px;
}

.promo-code-box {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 15px;
    flex-wrap: wrap;
}

.promo-code {
    display: inline-block;
    background: #FFF;
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 900;
    color: var(--color-text-main);
    border: 2px solid #EEE;
    font-size: 1.1rem;
    letter-spacing: 1px;
}

.btn-copy-voucher {
    background: var(--color-red);
    color: #fff;
    border: none;
    padding: 8px 16px;
    border-radius: var(--btn-radius);
    font-size: 0.85rem;
    font-weight: 800;
    cursor: pointer;
    transition: var(--transition-smooth);
    display: inline-block;
}

.btn-copy-voucher:hover {
    background: var(--color-red-dark);
    transform: translateY(-1px);
}

.btn-copy-voucher.copied {
    background: #00A34A;
}

.btn-golden-full {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    background: var(--color-yellow);
    color: #000;
    text-align: center;
    padding: 18px;
    border-radius: var(--btn-radius);
    font-size: 1.2rem;
    font-weight: var(--btn-weight);
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(255, 199, 0, 0.4);
    transition: var(--transition-smooth);
    animation: scaleIn 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    letter-spacing: 0.5px;
}

.btn-golden-full:hover {
    transform: scale(1.02);
    box-shadow: 0 6px 20px rgba(255, 199, 0, 0.6);
}

@keyframes shake {

    0%,
    100% {
        transform: translateX(0);
    }

    25% {
        transform: translateX(-5px);
    }

    75% {
        transform: translateX(5px);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* --- SECTIONS PADDING & TITLES --- */
.section-padding {
    padding: 60px 0;
}

.h2-section {
    font-size: 2.2rem;
    font-weight: 900;
    margin-bottom: 10px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--color-text-muted);
    text-align: center;
    margin-bottom: 10px;
}

/* ── SISTEMA DE HEADLINE PADRÃO (todas as seções) ─────────── */
.section-headline {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--color-red);
    color: #FFF;
    font-size: 0.8rem;
    font-weight: 900;
    padding: 7px 20px;
    border-radius: 30px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 18px;
    box-shadow: 0 3px 10px rgba(238, 41, 34, 0.3);
}

.section-notice {
    font-size: 0.88rem;
    color: #999;
    margin-top: 8px;
    text-align: center;
}

/* --- CHECK LIST STYLES --- */
.check-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.check-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
    font-size: 1.05rem;
    text-align: left;
}

.check-mark {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    background: var(--color-red);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    font-weight: 900;
    box-shadow: 0 2px 6px rgba(238, 41, 34, 0.3);
}

.check-mark::before {
    content: "✓";
}

/* --- CARDS GRID --- */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

/* --- COMBO CARDS (ESTILO CLARO OFICIAL) --- */
.combo-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.combo-card {
    background: #FFF;
    border: 2px solid var(--color-red);
    border-radius: 12px;
    padding: 25px 20px;
    display: flex;
    flex-direction: column;
    gap: 0;
    position: relative;
    transition: transform 0.3s, box-shadow 0.3s;
    overflow: visible;
}

.combo-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(238, 41, 34, 0.15);
}

.combo-card-destaque {
    border-width: 3px;
    box-shadow: 0 5px 20px rgba(238, 41, 34, 0.2);
    transform: translateY(-5px);
}

.combo-card-destaque:hover {
    transform: translateY(-10px);
}

.combo-card-badge {
    position: absolute;
    top: -14px;
    left: 20px;
    background: var(--color-red);
    color: #FFF;
    font-size: 0.75rem;
    font-weight: 900;
    padding: 4px 14px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.combo-badge-popular {
    background: var(--color-yellow);
    color: #000;
}

.combo-product-row {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid #F0F0F0;
}

.combo-product-row:last-of-type {
    border-bottom: none;
}

.combo-icon-product {
    width: 22px;
    height: 22px;
    color: var(--color-red);
    flex-shrink: 0;
    margin-top: 2px;
}

.combo-product-name {
    font-size: 1rem;
    font-weight: 800;
    color: #000;
    line-height: 1.2;
}

.combo-product-sub {
    font-size: 0.8rem;
    color: #888;
    margin-top: 3px;
    line-height: 1.3;
}

.combo-internet-tag {
    background: #FFF5F5;
    color: var(--color-red);
    font-size: 0.85rem;
    font-weight: 700;
    padding: 8px 12px;
    border-radius: 6px;
    margin-top: 12px;
}

.combo-price-area {
    margin-top: 20px;
}

.combo-price-from {
    display: block;
    font-size: 0.85rem;
    color: #888;
    margin-bottom: 2px;
}

.combo-price-value {
    font-size: 1.1rem;
    color: #000;
    font-weight: 600;
    line-height: 1;
}

.combo-price-value strong {
    font-size: 2.8rem;
    font-weight: 900;
    color: #000;
}

.combo-price-value sup {
    font-size: 1.1rem;
    font-weight: 700;
    vertical-align: super;
}

.combo-price-value span {
    font-size: 0.9rem;
    color: #666;
    margin-left: 3px;
}

.btn-eu-quero {
    display: block;
    width: 100%;
    margin-top: 20px;
    background: var(--color-yellow);
    color: #000;
    font-weight: var(--btn-weight);
    font-size: var(--btn-font-size);
    padding: 15px;
    border-radius: var(--btn-radius);
    text-align: center;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-eu-quero:hover {
    transform: scale(1.03);
    box-shadow: 0 6px 18px rgba(255, 199, 0, 0.5);
}

/* ─── SEÇÃO CELULAR ─────────────────────────────────────── */
.celular-section {
    background: linear-gradient(170deg, #fff 0%, #F9F9F9 100%);
}

.celular-footnote {
    font-size: 0.78rem;
    color: #AAA;
    margin-top: 30px;
}

/* Grid de 3 colunas */
.celular-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

/* Card base */
.celular-card {
    background: #FFF;
    border: 1.5px solid #E8E8E8;
    border-radius: 16px;
    overflow: visible;
    position: relative;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s, box-shadow 0.3s;
}

.celular-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.1);
}

/* Card destaque */
.celular-card-destaque {
    border: 2.5px solid var(--color-red);
    box-shadow: 0 8px 30px rgba(238, 41, 34, 0.15);
    transform: translateY(-6px);
}

.celular-card-destaque:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 50px rgba(238, 41, 34, 0.2);
}

/* Badge "Controle" no topo */
.celular-badge {
    background: var(--color-red);
    color: #FFF;
    font-size: 0.8rem;
    font-weight: 900;
    padding: 10px 20px;
    border-radius: 14px 14px 0 0;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
}

/* Conteúdo do card */
.celular-card-body {
    padding: 22px 22px 0;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.celular-titulo {
    font-size: 2.2rem;
    font-weight: 900;
    color: #000;
    line-height: 1;
    margin-bottom: 4px;
}

.celular-subtitulo {
    font-size: 0.85rem;
    color: #999;
    margin-bottom: 18px;
}

/* Features */
.celular-features {
    list-style: none;
    margin-bottom: 20px;
    border-top: 1px solid #F0F0F0;
    padding-top: 16px;
    flex: 1;
}

.celular-features li {
    font-size: 0.9rem;
    color: #444;
    padding: 4px 0;
    line-height: 1.4;
}

.celular-features li:first-child {
    font-weight: 700;
    color: #000;
}

/* Slots de Apps */
.celular-apps-row {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    padding: 16px 0;
    border-top: 1px solid #F0F0F0;
    border-bottom: 1px solid #F0F0F0;
    margin-bottom: 16px;
    min-height: 60px;
}

.app-slot {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 900;
    color: #FFF;
    flex-shrink: 0;
    overflow: hidden;
    background: #f8f8f8;
    border: 1px solid #eee;
}

.app-slot img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 4px;
    border-radius: 10px;
}

.app-slot-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 900;
    color: #FFF;
    border-radius: 10px;
}

.apps-label {
    font-size: 0.75rem;
    color: #AAA;
    width: 100%;
    margin-top: 4px;
}

/* Preço */
.celular-price-wrap {
    padding: 0 0 6px;
}

.celular-price-label {
    font-size: 0.8rem;
    color: #888;
}

.celular-price {
    display: flex;
    align-items: baseline;
    gap: 2px;
    line-height: 1;
}

.celular-price .currency {
    font-size: 1rem;
    font-weight: 700;
}

.celular-price .value {
    font-size: 3.2rem;
    font-weight: 900;
    letter-spacing: -2px;
    color: #000;
}

.celular-price .cents {
    font-size: 1.1rem;
    font-weight: 700;
}

.celular-price .period {
    font-size: 0.85rem;
    color: #888;
    margin-left: 4px;
}

/* Botão */
.celular-card-footer {
    padding: 16px 22px 22px;
}

.btn-celular {
    display: block;
    width: 100%;
    background: var(--color-yellow);
    color: #000;
    font-weight: var(--btn-weight);
    font-size: var(--btn-font-size);
    padding: 14px;
    border-radius: var(--btn-radius);
    text-align: center;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-celular:hover {
    transform: scale(1.02);
    box-shadow: 0 6px 18px rgba(255, 199, 0, 0.5);
}



/* ─── SEÇÃO TV ────────────────────────────────────────────── */
.tv-section {
    background: #F5F5F5;
}

.tv-notice {
    margin-top: 30px;
    background: #FFF;
    border: 1px solid #E0E0E0;
    border-radius: 8px;
    padding: 20px;
    font-size: 0.95rem;
}

/* Grid de TV (centralizado, máx 2 colunas) */
.tv-cards-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 460px));
    gap: 28px;
    justify-content: center;
    margin-bottom: 30px;
}

/* Card TV */
.tv-card {
    background: #FFF;
    border: 1px solid #E0E0E0;
    border-radius: 14px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s, box-shadow 0.3s;
}

.tv-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.1);
}

.tv-card-destaque {
    border: 2px solid var(--color-red);
    box-shadow: 0 6px 25px rgba(238, 41, 34, 0.12);
}

.tv-card-destaque:hover {
    box-shadow: 0 16px 45px rgba(238, 41, 34, 0.2);
}

/* Cabeçalho do card TV */
.tv-card-header {
    padding: 22px 22px 0;
}

.tv-card-kicker {
    font-size: 0.8rem;
    color: #888;
    font-weight: 600;
    margin-bottom: 4px;
}

.tv-card-titulo {
    font-size: 2rem;
    font-weight: 900;
    color: var(--color-red);
    margin-bottom: 4px;
    line-height: 1;
}

.tv-card-subtitulo {
    font-size: 0.82rem;
    color: #AAA;
    margin-bottom: 18px;
}

/* Streamings inclusos */
.tv-streamings-label {
    font-size: 0.85rem;
    font-weight: 800;
    color: #333;
    margin-bottom: 8px;
}

.tv-streamings-list {
    list-style: disc;
    padding-left: 20px;
    margin-bottom: 18px;
}

.tv-streamings-list li {
    font-size: 0.9rem;
    color: #444;
    padding: 2px 0;
}

.tv-streamings-list li strong {
    color: #000;
}

/* Canais */
.tv-canais-label {
    font-size: 0.82rem;
    color: #888;
    margin-bottom: 8px;
    font-weight: 600;
}

.tv-canais-row {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 20px;
}

.canal-slot {
    height: 28px;
    padding: 0 10px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.68rem;
    font-weight: 900;
    color: #FFF;
    letter-spacing: 0.3px;
}

.canal-slot img {
    height: 100%;
    width: auto;
    object-fit: contain;
    border-radius: 4px;
}

/* Divisor */
.tv-divider {
    height: 1px;
    background: #F0F0F0;
    margin: 0 22px;
}

/* Preço */
.tv-price-wrap {
    padding: 18px 22px 0;
}

.tv-price {
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--color-red);
    line-height: 1;
}

.tv-price sup {
    font-size: 1.1rem;
    font-weight: 700;
    vertical-align: super;
}

.tv-price span {
    font-size: 1rem;
    font-weight: 600;
}

.tv-price-note {
    font-size: 0.78rem;
    color: #999;
    margin-top: 6px;
    line-height: 1.4;
}

/* Footer do card TV */
.tv-card-footer {
    padding: 16px 22px 22px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: auto;
}

.btn-tv {
    display: block;
    width: 100%;
    background: var(--color-yellow);
    color: #000;
    font-weight: var(--btn-weight);
    font-size: var(--btn-font-size);
    padding: 14px;
    border-radius: var(--btn-radius);
    text-align: center;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-tv:hover {
    transform: scale(1.02);
    box-shadow: 0 6px 18px rgba(255, 199, 0, 0.5);
}

.tv-link-detalhe {
    display: block;
    text-align: center;
    font-size: 0.85rem;
    color: #0066CC;
    text-decoration: underline;
}

/* Body do card */
.tv-card-body {
    padding: 0 22px;
    flex: 1;
    display: flex;
    flex-direction: column;
}



/* --- PLANOS DE ULTRAVELOCIDADE --- */
.ultra-grid {
    margin-top: 40px;
    align-items: stretch;
}

.plan-card-ultra {
    background: #FFF;
    border: 1px solid #EAEAEA;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    padding: 30px 20px;
    transition: transform var(--transition-smooth);
    position: relative;
}

.plan-card-ultra:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.plan-card-ultra.highlight {
    border: 2px solid var(--color-red);
    transform: scale(1.03);
    z-index: 10;
    box-shadow: 0 15px 40px rgba(238, 41, 34, 0.15);
}

.plan-card-ultra.highlight:hover {
    transform: scale(1.05);
}

.badge-popular {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--color-red);
    color: #FFF;
    font-size: 0.8rem;
    font-weight: 900;
    padding: 5px 15px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    white-space: nowrap;
    z-index: 2;
}

.ultra-header {
    border-bottom: 1px solid #F0F0F0;
    padding-bottom: 15px;
    margin-bottom: 20px;
    text-align: left;
}

.ultra-title {
    font-size: 1.6rem;
    font-weight: 900;
    color: #000;
    margin-bottom: 5px;
}

.ultra-sub {
    font-size: 0.9rem;
    color: #666;
    font-weight: 600;
}

.ultra-price {
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    margin-bottom: 25px;
    line-height: 1;
}

.ultra-price .currency {
    font-size: 1rem;
    font-weight: 800;
    color: #000;
    margin-right: 2px;
    margin-bottom: 5px;
}

.ultra-price .value {
    font-size: 3.5rem;
    font-weight: 900;
    color: #000;
    letter-spacing: -2px;
}

.ultra-price .cents {
    font-size: 1.5rem;
    font-weight: 900;
    color: #000;
    margin-bottom: 5px;
}

.ultra-price .period {
    font-size: 0.9rem;
    font-weight: 600;
    color: #666;
    margin-left: 5px;
    margin-bottom: 5px;
}

.ultra-price.text-red .currency,
.ultra-price.text-red .value,
.ultra-price.text-red .cents {
    color: var(--color-red);
}

.features-ultra {
    list-style: none;
    text-align: left;
    margin-bottom: 30px;
    flex-grow: 1;
}

.features-ultra li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 0.9rem;
    color: #444;
    font-weight: 600;
}

.features-ultra li::before {
    content: '✓';
    display: inline-flex;
    justify-content: center;
    align-items: center;
    background: #00A34A;
    color: #FFF;
    width: 16px;
    height: 16px;
    font-size: 10px;
    border-radius: 3px;
    font-weight: 900;
    flex-shrink: 0;
}


/* --- SEO INSTITUTIONAL GRID --- */
.seo-institutional-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.seo-image-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.seo-logo-image {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.seo-logo-image:hover {
    transform: scale(1.02);
}

.badges-modern-row {
    display: flex;
    gap: 15px;
    width: 100%;
    justify-content: center;
}

.badge-modern-item {
    background: #F9F9F9;
    border: 1px solid #EAEAEA;
    border-radius: 8px;
    padding: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
}

.badge-modern-item svg {
    width: 30px;
    height: 30px;
    color: var(--color-red);
    flex-shrink: 0;
}

.badge-modern-item span {
    font-size: 0.9rem;
    font-weight: 800;
    color: #333;
    line-height: 1.3;
}

/* ─── SEÇÃO MULTITELA + COMO ASSINAR ───────────────────────── */
.multitela-section {
    background: linear-gradient(135deg, #0A0A0A 0%, #1A1A2E 50%, #16213E 100%);
    position: relative;
    overflow: hidden;
}

.multitela-section::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(238, 41, 34, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

/* Grid Multitela */
.multitela-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 0;
}

/* Texto */
.multitela-text .section-kicker {
    margin-bottom: 16px;
}

.multitela-title {
    font-size: 4rem;
    font-weight: 900;
    color: #FFF;
    line-height: 1;
    margin-bottom: 20px;
    letter-spacing: -2px;
}

.multitela-title span {
    color: var(--color-red);
}

.multitela-desc {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.7;
    margin-bottom: 28px;
}

.multitela-desc strong {
    color: #FFF;
}

.multitela-stat {
    display: flex;
    align-items: center;
    gap: 16px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 14px;
    padding: 18px 22px;
    backdrop-filter: blur(8px);
}

.stat-number {
    font-size: 2.4rem;
    font-weight: 900;
    color: var(--color-yellow);
    line-height: 1;
    white-space: nowrap;
}

.stat-label {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.4;
}

/* Dispositivos */
.multitela-devices {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.device-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 24px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    transition: background 0.3s, border-color 0.3s, transform 0.3s;
    cursor: default;
}

.device-card:hover {
    background: rgba(238, 41, 34, 0.12);
    border-color: rgba(238, 41, 34, 0.4);
    transform: translateY(-4px);
}

.device-card svg {
    width: 44px;
    height: 44px;
    color: var(--color-red);
}

.device-card span {
    font-size: 0.85rem;
    font-weight: 700;
    color: #FFF;
    text-align: center;
}

.device-tv {
    grid-column: span 2;
}

/* Divisor */
.multitela-divider {
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.15), transparent);
    margin: 60px 0;
}

/* Como Assinar */
.como-assinar-wrap {
    color: #FFF;
}

.como-assinar-title {
    font-size: 2.5rem;
    font-weight: 900;
    color: #FFF;
    margin-bottom: 8px;
}

.como-assinar-title span {
    color: var(--color-red);
}

.como-assinar-sub {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 40px;
}

/* Steps */
.steps-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    flex-wrap: wrap;
}

.step-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 18px;
    padding: 30px 24px;
    flex: 1;
    min-width: 200px;
    max-width: 280px;
    position: relative;
    transition: background 0.3s, transform 0.3s;
}

.step-card:hover {
    background: rgba(238, 41, 34, 0.1);
    transform: translateY(-6px);
}

.step-number {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    width: 32px;
    height: 32px;
    background: var(--color-red);
    color: #FFF;
    font-size: 0.85rem;
    font-weight: 900;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(238, 41, 34, 0.5);
}

.step-icon {
    margin-bottom: 14px;
}

.step-icon svg {
    width: 40px;
    height: 40px;
    color: var(--color-yellow);
}

.step-card h3 {
    font-size: 1.05rem;
    font-weight: 900;
    color: #FFF;
    margin-bottom: 8px;
}

.step-card p {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.5;
}

.step-card p strong {
    color: #FFF;
}

.step-connector {
    font-size: 1.6rem;
    color: rgba(255, 255, 255, 0.2);
    padding: 0 8px;
    flex-shrink: 0;
}

/* Mobile Multitela */
@media (max-width: 768px) {
    .multitela-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .multitela-title {
        font-size: 2.8rem;
    }

    .device-tv {
        grid-column: span 1;
    }

    .steps-grid {
        flex-direction: column;
    }

    .step-connector {
        transform: rotate(90deg);
    }

    .como-assinar-title {
        font-size: 1.9rem;
    }
}

/* --- RED CONTACT BAR --- */
.red-contact-bar {
    background: var(--color-red);
    color: #FFF;
    padding: 20px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    align-items: center;
    text-align: center;
}

.contact-grid div {
    border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-grid div:last-child {
    border-right: none;
}


/* ─── FAQ ACCORDION PREMIUM ────────────────────────────────── */
.faq-section {
    background: #F7F7F7;
}

.faq-list {
    max-width: 820px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.faq-item {
    background: #FFF;
    border: 1px solid #E8E8E8;
    border-radius: 14px;
    overflow: hidden;
    transition: box-shadow 0.3s, border-color 0.3s;
}

.faq-item:hover {
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.07);
    border-color: #D0D0D0;
}

.faq-item[open] {
    border-color: var(--color-red);
    box-shadow: 0 6px 24px rgba(238, 41, 34, 0.1);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    font-size: 1rem;
    font-weight: 700;
    color: #222;
    cursor: pointer;
    list-style: none;
    gap: 16px;
    transition: background 0.2s;
    user-select: none;
}

.faq-question::-webkit-details-marker {
    display: none;
}

.faq-question:hover {
    background: #FAFAFA;
}

.faq-item[open] .faq-question {
    color: var(--color-red);
    background: #FFF8F8;
}

.faq-icon {
    flex-shrink: 0;
}

.faq-icon svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s;
    color: #999;
}

.faq-item[open] .faq-icon svg {
    transform: rotate(180deg);
    color: var(--color-red);
}

.faq-answer {
    padding: 0 24px;
    max-height: 0;
    overflow: hidden;
    /* Não usamos max-height animado pois details é nativo — usamos padding */
}

.faq-item[open] .faq-answer {
    padding: 0 24px 22px;
    max-height: none;
}

.faq-answer [itemprop="text"] {
    font-size: 0.97rem;
    color: #555;
    line-height: 1.7;
    border-top: 1px solid #F0F0F0;
    padding-top: 16px;
}

.faq-answer strong {
    color: #222;
}


/* --- FOOTER --- */
.site-footer {
    background: var(--color-red);
    padding: 50px 0 30px;
    color: #FFF;
}

.footer-logo {
    height: 80px;
    width: auto;
    display: block;
}

.footer-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding-bottom: 30px;
}

.footer-links {
    font-size: 0.8rem;
    opacity: 0.8;
}

/* --- RESPONSIVE MOBILE FIRST --- */
@media (max-width: 992px) {
    .h2-impact {
        font-size: 2.2rem;
    }

    .cards-grid,
    .contact-grid,
    .ultra-grid,
    .plan-card-ultra.highlight {
        transform: none;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
        margin-top: 15px;
    }
}

@media (max-width: 768px) {
    .hidden-mobile {
        display: none;
    }

    .cards-grid,
    .contact-grid,
    .ultra-grid,
    .combo-cards-grid {
        grid-template-columns: 1fr;
        max-width: 420px;
        margin: 0 auto;
        gap: 30px;
    }

    .combo-card-destaque {
        transform: none;
    }

    .celular-cards-grid {
        grid-template-columns: 1fr;
        max-width: 420px;
        margin: 0 auto;
        gap: 20px;
    }

    .celular-card-destaque {
        transform: none;
    }

    .tv-cards-grid {
        grid-template-columns: 1fr;
        max-width: 420px;
        margin: 0 auto;
    }

    .tv-card-destaque {
        box-shadow: 0 5px 20px rgba(238, 41, 34, 0.12);
    }

    .plan-card-ultra.highlight {
        transform: none !important;
    }

    .seo-institutional-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .seo-text-col h2 {
        text-align: center !important;
    }

    .seo-image-col {
        order: -1;
    }

    .badges-modern-row {
        flex-direction: column;
    }

    .badge-modern-item {
        width: 100%;
    }

    .contact-grid div {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
        padding: 15px 0;
    }

    .footer-grid {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
}

/* ═══════════════════════════════════════════════════════
   STICKY MOBILE CTA — sempre visível no mobile
   ═══════════════════════════════════════════════════════ */
.sticky-cta-mobile {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    padding: 12px 16px;
    background: linear-gradient(135deg, #EE2922 0%, #C41E18 100%);
    box-shadow: 0 -4px 20px rgba(238, 41, 34, 0.35);
}

.sticky-cta-mobile a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: #FFF;
    font-weight: 800;
    font-size: 1rem;
    text-decoration: none;
    letter-spacing: 0.3px;
}

@media (max-width: 768px) {
    .sticky-cta-mobile {
        display: block;
    }

    body {
        padding-bottom: 68px;
    }
}

/* ═══════════════════════════════════════════════════════
   RATING BAR — prova social entre hero e planos
   ═══════════════════════════════════════════════════════ */
.rating-social-bar {
    background: #FFF;
    border-bottom: 1px solid #F0F0F0;
    padding: 14px 0;
}

.rating-social-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
}

.rating-social-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.92rem;
    color: #444;
    font-weight: 600;
}

.rating-stars {
    color: #F5A623;
    font-size: 1rem;
    letter-spacing: 1px;
}

.rating-score {
    font-weight: 900;
    color: #111;
    font-size: 1.05rem;
}

.rating-divider {
    width: 1px;
    height: 28px;
    background: #E8E8E8;
}

@media (max-width: 600px) {
    .rating-social-inner {
        gap: 16px;
    }

    .rating-divider {
        display: none;
    }
}

/* ═══════════════════════════════════════════════════════
   CLARO NET FONE — Cards de Telefonia Fixa (Senior Premium)
   ═══════════════════════════════════════════════════════ */
.fone-cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    max-width: 820px;
    margin: 0 auto;
}

.fone-card {
    background: #FFF;
    border: 1.5px solid #EAEAEA;
    border-radius: 16px;
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 0;
    position: relative;
    transition: box-shadow 0.25s, transform 0.25s;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.fone-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.10);
}

.fone-card-destaque {
    border: 2px solid var(--color-red);
    box-shadow: 0 8px 28px rgba(238, 41, 34, 0.14);
}

.fone-card-destaque:hover {
    box-shadow: 0 16px 40px rgba(238, 41, 34, 0.22);
}

.fone-badge-destaque {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--color-red);
    color: #FFF;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    padding: 4px 14px;
    border-radius: 20px;
    white-space: nowrap;
    text-transform: uppercase;
}

.fone-card-header {
    margin-bottom: 20px;
}

.fone-card-kicker {
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--color-red);
    text-transform: uppercase;
    letter-spacing: 1.2px;
    margin: 0 0 8px;
}

.fone-card-titulo {
    font-size: 1.4rem;
    font-weight: 800;
    color: #111;
    margin: 0 0 6px;
    line-height: 1.25;
}

.fone-card-subtitulo {
    font-size: 0.88rem;
    color: #777;
    margin: 0;
}

.fone-divider {
    height: 1px;
    background: #F0F0F0;
    margin: 18px 0;
}

.fone-features-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
}

.fone-features-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.92rem;
    color: #444;
    font-weight: 500;
}

.fone-check {
    color: var(--color-red);
    font-weight: 900;
    font-size: 1rem;
    flex-shrink: 0;
    line-height: 1;
}

.fone-price-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.fone-price-label {
    font-size: 0.85rem;
    color: #888;
    font-weight: 500;
}

.fone-price {
    display: flex;
    align-items: baseline;
    gap: 2px;
    color: #111;
}

.fone-currency {
    font-size: 0.95rem;
    font-weight: 700;
    color: #555;
}

.fone-value {
    font-size: 2.6rem;
    font-weight: 900;
    color: #111;
    line-height: 1;
}

.fone-card-destaque .fone-value {
    color: var(--color-red);
}

.fone-cents {
    font-size: 1.1rem;
    font-weight: 700;
    color: #111;
    align-self: flex-start;
    margin-top: 4px;
}

.fone-period {
    font-size: 0.8rem;
    color: #999;
    margin-left: 4px;
    align-self: flex-end;
    margin-bottom: 4px;
}

.fone-card-footer {
    margin-top: 20px;
}

@media (max-width: 640px) {
    .fone-cards-grid {
        grid-template-columns: 1fr;
        max-width: 420px;
        margin: 0 auto;
    }

    .fone-card-destaque {
        margin-top: 18px;
    }
}

/* --- CLASSES UTILITÁRIAS EXTRAS (sem inline style= no HTML) --- */
.fw-light {
    font-weight: 300;
}

.fw-700 {
    font-weight: 700;
}

.fw-900 {
    font-weight: 900;
}

.icon-sm {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.icon-md {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.text-note {
    color: #666;
    font-size: 0.9rem;
}

.text-555 {
    color: #555;
}

.link-tel {
    color: var(--color-red);
    font-weight: 800;
    text-decoration: none;
}

.link-tel:hover {
    text-decoration: underline;
}

.link-red-bold {
    font-weight: 900;
    font-size: 1rem;
    color: var(--color-red);
    text-decoration: none;
}

.link-red-bold:hover {
    text-decoration: underline;
}

.text-xl {
    font-size: 1.5rem;
}

.text-2xl {
    font-size: 2rem;
}

/* --- EDITORIAL / CHECK-LIST SECTION --- */
.editorial-lead {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #444;
}

.check-list {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.check-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 1rem;
    color: #333;
}

.check-mark {
    color: var(--color-red);
    font-weight: 900;
    flex-shrink: 0;
    line-height: 1.5;
}

.seo-text-col h2 {
    text-align: left;
    font-size: 2.2rem;
}

.tv-notice a {
    font-weight: 700;
}

/* ═══ NET-COMBO PAGE — overrides mínimos (sem duplicar) ═══ */
.breadcrumb-nav {
    font-size: 0.82rem;
    color: #FFF;
    padding: 4px 0;
}

.breadcrumb-nav a {
    color: #FFF;
    text-decoration: none;
}

.hero-content-center {
    text-align: center;
    padding: 60px 0;
    max-width: 720px;
    margin: 0 auto;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: #444;
    margin: 16px 0 28px;
    line-height: 1.7;
}

.hero-microcopy {
    font-size: 0.82rem;
    color: #888;
    margin-top: 12px;
}

.icon-sm {
    width: 20px;
    height: 20px;
}

/* ═══ NET-COMBO PAGE — BACKGROUND OVERRIDE ═══ */
.hero-section-combo {
    background-image: url('imagens/claro-net-combo.png') !important;
}

/* --- DROPDOWN HEADER MENU --- */
.nav-item-dropdown {
    position: relative;
    display: flex;
    align-items: center;
}

.nav-dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #fff;
    min-width: 180px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    z-index: 100;
    border-radius: 4px;
    padding: 10px 0;
}

.nav-item-dropdown:hover .nav-dropdown-menu {
    display: block;
}

.nav-dropdown-menu a {
    color: #333;
    padding: 10px 20px;
    text-decoration: none;
    display: block;
    font-weight: 500;
}

.nav-dropdown-menu a:hover {
    background-color: #f1f1f1;
    color: var(--color-red);
}
/* --- HUB SEO & INSTITUTIONAL MASTER --- */
.hub-seo-section { padding: 100px 0 60px; background: #FFF; border-top: 1px solid #F0F0F0; }
.hub-badge { display: inline-flex; align-items: center; background: #EE2922; color: #FFF; padding: 8px 18px; border-radius: 50px; font-size: 11px; font-weight: 900; text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 25px; box-shadow: 0 4px 15px rgba(238, 41, 34, 0.25); }
.hub-title { font-size: 2.8rem; font-weight: 900; color: #1a1a1a; margin-bottom: 12px; letter-spacing: -1px; }
.hub-subtitle { font-size: 1.2rem; color: #666; margin-bottom: 45px; max-width: 700px; margin-left: auto; margin-right: auto; line-height: 1.6; }
.hub-cards-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-bottom: 60px; }
.hub-card { background: #F8F8F8; border: 1px solid #EDEDED; padding: 24px 20px; border-radius: 16px; display: flex; align-items: center; gap: 16px; text-decoration: none; transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); text-align: left; }
.hub-card:hover { transform: translateY(-8px); background: #FFF; border-color: #EE2922; box-shadow: 0 15px 35px rgba(0, 0, 0, 0.06); }
.hub-card-icon { width: 36px; height: 36px; color: #EE2922; flex-shrink: 0; display: flex; align-items: center; justify-content: center; }
.hub-card-text { font-size: 15px; font-weight: 800; color: #333; line-height: 1.2; }
.hub-seo-content { display: grid; grid-template-columns: repeat(2, 1fr); gap: 50px; text-align: left; border-top: 1px solid #F0F0F0; padding-top: 60px; margin-top: 20px; }
.hub-seo-item h2 { font-size: 1.6rem; color: #1a1a1a; margin-bottom: 20px; font-weight: 900; line-height: 1.3; letter-spacing: -0.5px; }
.hub-seo-item p { color: #555; line-height: 1.8; font-size: 1.05rem; }
.hub-seo-item p a { color: #EE2922; text-decoration: none; font-weight: 700; border-bottom: 1px solid transparent; transition: border-color 0.2s; }
.hub-seo-item p a:hover { border-bottom-color: #EE2922; }
@media (max-width: 1024px) { .hub-cards-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 991px) { .hub-seo-section { padding: 60px 0; } .hub-title { font-size: 2.2rem; } .hub-seo-content { grid-template-columns: 1fr; gap: 35px; padding-top: 40px; } }
@media (max-width: 600px) { .hub-cards-grid { grid-template-columns: 1fr; gap: 16px; } .hub-card { padding: 18px; } .hub-title { font-size: 1.85rem; } .hub-badge { font-size: 10px; padding: 7px 15px; } }
.institucional-section { padding: 80px 0 100px; }
.institucional-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; margin-top: 50px; }
.institucional-item { background: #FFF; padding: 45px 35px; border-radius: 24px; box-shadow: 0 12px 35px rgba(0, 0, 0, 0.03); transition: all 0.4s ease; border: 1px solid #F2F2F2; text-align: left; display: flex; flex-direction: column; gap: 15px; }
.institucional-item:hover { transform: translateY(-10px); border-color: rgba(238, 41, 34, 0.3); box-shadow: 0 20px 45px rgba(0, 0, 0, 0.06); }
.institucional-item h3 { font-size: 1.4rem; color: #1a1a1a; font-weight: 800; line-height: 1.3; letter-spacing: -0.3px; }
.institucional-item p { color: #666; line-height: 1.8; font-size: 1rem; margin: 0; }
.institucional-item a { color: inherit; text-decoration: none; font-weight: 700; border-bottom: 1px solid rgba(238, 41, 34, 0.2); }
.institucional-icon-wrap { width: 48px; height: 48px; background: rgba(238, 41, 34, 0.05); color: #EE2922; border-radius: 12px; display: flex; align-items: center; justify-content: center; margin-bottom: 10px; }
@media (max-width: 991px) { .institucional-section { padding: 60px 0; } .institucional-grid { grid-template-columns: 1fr; gap: 20px; } .institucional-item { padding: 35px 25px; } }
