/* ═══════════════════════════════════════════════════════════
   CFTV Monitoramento — Estilos da Página de Serviço
   Herda variáveis e base de style.css
═══════════════════════════════════════════════════════════ */

/* ─── Labels e Badges de Seção ─── */
.cftv-section-label {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 6px 14px;
    border-radius: 50px;
    margin-bottom: 16px;
}

.cftv-section-label.danger {
    background: rgba(239, 68, 68, 0.12);
    color: #f87171;
    border: 1px solid rgba(239, 68, 68, 0.25);
}

.cftv-section-label.success {
    background: rgba(0, 163, 53, 0.1);
    color: var(--intelbras-green);
    border: 1px solid rgba(0, 163, 53, 0.22);
}

/* ─── Botões da Página ─── */
.cftv-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    font-family: 'Inter', system-ui, sans-serif;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    border: 2px solid transparent;
}

.cftv-btn-primary {
    background: var(--intelbras-green);
    color: #fff;
    box-shadow: 0 4px 20px rgba(0, 163, 53, 0.4);
}

.cftv-btn-primary:hover {
    background: #008f2e;
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(0, 163, 53, 0.5);
    color: #fff;
}

.cftv-btn-outline {
    background: transparent;
    color: rgba(255, 255, 255, 0.88);
    border-color: rgba(255, 255, 255, 0.4);
}

.cftv-btn-outline:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.75);
    color: #fff;
    transform: translateY(-2px);
}

.cftv-btn-large {
    padding: 18px 44px;
    font-size: 1.1rem;
}

/* ════════════════════════════════════════════
   1. HERO
════════════════════════════════════════════ */
.cftv-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    /* Fallback gradient quando sem imagem */
    background: linear-gradient(135deg, #050D18 0%, #0a2545 50%, #0d3a22 100%);
}

.cftv-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.cftv-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
}

.cftv-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        108deg,
        rgba(5, 13, 24, 0.96) 0%,
        rgba(10, 35, 70, 0.88) 45%,
        rgba(5, 40, 15, 0.65) 100%
    );
    z-index: 1;
}

.cftv-hero-content {
    position: relative;
    z-index: 2;
    padding-top: 130px;
    padding-bottom: 80px;
    display: flex;
    flex-direction: column;
    gap: 44px;
}

.cftv-hero-text {
    max-width: 720px;
}

/* Badge topo do hero */
.cftv-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.16);
    color: rgba(255, 255, 255, 0.82);
    padding: 7px 16px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 24px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    width: fit-content;
}

.cftv-badge i {
    color: var(--intelbras-green);
    font-size: 0.8rem;
}

.cftv-hero-text h1 {
    font-size: clamp(2.8rem, 5.5vw, 5rem);
    font-weight: 900;
    color: #fff;
    line-height: 1.0;
    letter-spacing: -0.035em;
    margin-bottom: 24px;
    text-shadow: 0 4px 24px rgba(0, 0, 0, 0.5);
}

.cftv-hero-accent {
    color: var(--highlight-orange);
    display: inline-block;
    position: relative;
}

.cftv-hero-accent::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--highlight-orange), transparent);
    border-radius: 2px;
}

.cftv-hero-sub {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.7;
    margin-bottom: 40px;
    max-width: 580px;
    font-weight: 400;
}

.cftv-hero-ctas {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* Stats glassmorphism no hero */
.cftv-hero-stats {
    display: flex;
    align-items: center;
    gap: 32px;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    padding: 22px 36px;
    width: fit-content;
}

.cftv-hero-stat {
    text-align: center;
}

.cftv-stat-num {
    display: block;
    font-size: 1.9rem;
    font-weight: 900;
    color: #fff;
    line-height: 1;
    letter-spacing: -0.03em;
}

.cftv-stat-label {
    display: block;
    font-size: 0.68rem;
    color: rgba(255, 255, 255, 0.55);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 600;
    margin-top: 6px;
}

.cftv-stat-sep {
    width: 1px;
    height: 44px;
    background: rgba(255, 255, 255, 0.14);
    flex-shrink: 0;
}

/* ════════════════════════════════════════════
   2. PROBLEMA
════════════════════════════════════════════ */
.cftv-problem {
    background: #05101E;
    padding: 96px 0;
    position: relative;
    overflow: hidden;
}

/* Glow decorativo */
.cftv-problem::before {
    content: '';
    position: absolute;
    top: -150px;
    right: -150px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(239, 68, 68, 0.06) 0%, transparent 65%);
    pointer-events: none;
}

.cftv-problem::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(19, 103, 156, 0.06) 0%, transparent 65%);
    pointer-events: none;
}

.cftv-problem-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
    margin-bottom: 44px;
    position: relative;
    z-index: 1;
}

.cftv-problem-text h2 {
    font-size: 2.3rem;
    color: #F1F5F9;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    letter-spacing: -0.025em;
}

.cftv-problem-text p {
    color: #94A3B8;
    font-size: 1.02rem;
    line-height: 1.75;
    margin-bottom: 24px;
}

.cftv-problem-text strong {
    color: #F1F5F9;
    font-weight: 700;
}

/* Caixa de resultado negativo */
.cftv-problem-result {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    background: rgba(239, 68, 68, 0.07);
    border: 1px solid rgba(239, 68, 68, 0.2);
    border-left: 3px solid #f87171;
    border-radius: 10px;
    padding: 16px 20px;
    color: #fca5a5;
    font-size: 0.95rem;
    line-height: 1.55;
}

.cftv-problem-result i {
    color: #f87171;
    font-size: 1.1rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.cftv-problem-result strong {
    color: #fca5a5;
    font-weight: 700;
}

/* Cards de falha 2x2 */
.cftv-failures-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.cftv-failure-card {
    background: rgba(255, 255, 255, 0.025);
    border: 1px solid rgba(239, 68, 68, 0.14);
    border-radius: 14px;
    padding: 24px 20px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.cftv-failure-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, #f87171, transparent);
    opacity: 0;
    transition: opacity 0.3s;
}

.cftv-failure-card:hover {
    background: rgba(239, 68, 68, 0.06);
    border-color: rgba(239, 68, 68, 0.3);
    transform: translateY(-4px);
}

.cftv-failure-card:hover::before {
    opacity: 1;
}

.cftv-failure-icon {
    width: 44px;
    height: 44px;
    background: rgba(239, 68, 68, 0.12);
    color: #f87171;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    margin-bottom: 14px;
    transition: var(--transition);
}

.cftv-failure-card:hover .cftv-failure-icon {
    background: rgba(239, 68, 68, 0.2);
}

.cftv-failure-card h4 {
    color: #F1F5F9;
    font-size: 0.93rem;
    font-weight: 700;
    margin-bottom: 6px;
}

.cftv-failure-card p {
    color: #64748B;
    font-size: 0.83rem;
    line-height: 1.5;
    margin: 0;
}

/* Banner de alerta laranja */
.cftv-problem-alert {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    background: rgba(217, 138, 46, 0.07);
    border: 1px solid rgba(217, 138, 46, 0.22);
    border-radius: 12px;
    padding: 18px 32px;
    color: #fbbf24;
    font-size: 0.97rem;
    font-weight: 500;
    position: relative;
    z-index: 1;
}

.cftv-problem-alert i {
    font-size: 1.2rem;
    flex-shrink: 0;
}

.cftv-problem-alert strong {
    color: #fcd34d;
    font-weight: 700;
}

/* Coluna direita do problema: imagem DVR + cards */
.cftv-problem-right {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.cftv-dvr-image {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    flex-shrink: 0;
}

.cftv-dvr-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.cftv-dvr-badge {
    position: absolute;
    bottom: 12px;
    left: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(239, 68, 68, 0.92);
    color: #fff;
    padding: 7px 14px;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 700;
    backdrop-filter: blur(4px);
}

/* ════════════════════════════════════════════
   3. COMO FUNCIONA
════════════════════════════════════════════ */
.cftv-how {
    background:
        radial-gradient(ellipse at 20% 50%, rgba(0, 163, 53, 0.1) 0%, transparent 55%),
        radial-gradient(ellipse at 80% 20%, rgba(217, 138, 46, 0.07) 0%, transparent 45%),
        linear-gradient(140deg, #0F172A 0%, #0e4a73 100%);
}

.cftv-steps {
    display: flex;
    align-items: flex-start;
    margin-top: 8px;
}

.cftv-step {
    flex: 1;
    text-align: center;
    padding: 40px 20px 24px;
    position: relative;
}

/* Número grande de fundo */
.cftv-step-number {
    font-size: 5rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.04);
    line-height: 1;
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    letter-spacing: -0.06em;
    pointer-events: none;
    white-space: nowrap;
}

.cftv-step-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--highlight-orange), #b06820);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 22px;
    position: relative;
    z-index: 1;
    box-shadow: 0 8px 28px rgba(217, 138, 46, 0.45);
    transition: var(--transition);
}

.cftv-step:hover .cftv-step-icon {
    transform: scale(1.1) rotate(-5deg);
    box-shadow: 0 12px 36px rgba(217, 138, 46, 0.55);
}

.cftv-step h3 {
    color: #F1F5F9;
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 12px;
    position: relative;
    z-index: 1;
}

.cftv-step p {
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.88rem;
    line-height: 1.65;
    margin: 0;
    position: relative;
    z-index: 1;
}

/* Seta conectora entre steps */
.cftv-step-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 76px;
    color: rgba(255, 255, 255, 0.18);
    font-size: 1.1rem;
    flex-shrink: 0;
    width: 32px;
}

/* Visual de monitoramento remoto — seção Como Funciona */
.cftv-how-visual {
    position: relative;
    margin-top: 56px;
    border-radius: 20px;
    overflow: hidden;
    max-height: 380px;
}

.cftv-how-visual img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    object-position: center 30%;
    display: block;
}

.cftv-how-visual::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(5,13,24,0.85) 0%, transparent 60%);
}

.cftv-how-visual-quote {
    position: absolute;
    top: 50%;
    left: 48px;
    transform: translateY(-50%);
    z-index: 2;
    max-width: 380px;
}

.cftv-how-visual-quote i {
    color: var(--highlight-orange);
    font-size: 1.5rem;
    margin-bottom: 12px;
    display: block;
}

.cftv-how-visual-quote p {
    color: #fff;
    font-size: 1.6rem;
    font-weight: 800;
    line-height: 1.25;
    margin: 0;
    letter-spacing: -0.02em;
}

/* ════════════════════════════════════════════
   4. O QUE ESTÁ INCLUSO
════════════════════════════════════════════ */
.cftv-included {
    background: var(--light-gray);
}

.cftv-included-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.cftv-included-card {
    background: var(--white);
    border-radius: 16px;
    padding: 30px 26px;
    border: 1px solid #E2E8F0;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

/* Linha de acento que escorrega da esquerda no hover */
.cftv-included-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-blue), var(--intelbras-green));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.35s ease;
}

.cftv-included-card:hover::before {
    transform: scaleX(1);
}

.cftv-included-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(19, 103, 156, 0.1);
    border-color: transparent;
}

.cftv-included-icon {
    width: 52px;
    height: 52px;
    background: var(--intelbras-green-light);
    color: var(--intelbras-green);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    margin-bottom: 18px;
    transition: var(--transition);
}

.cftv-included-card:hover .cftv-included-icon {
    background: var(--intelbras-green);
    color: #fff;
    box-shadow: 0 6px 18px rgba(0, 163, 53, 0.32);
    border-radius: 12px;
}

.cftv-included-card h3 {
    font-size: 0.98rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 8px;
}

.cftv-included-card p {
    font-size: 0.86rem;
    color: var(--text-muted);
    line-height: 1.62;
    margin: 0;
}

/* Visual do dashboard — seção O que está incluso */
.cftv-dashboard-visual {
    margin-top: 48px;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 24px 60px rgba(19, 103, 156, 0.18);
    border: 1px solid #E2E8F0;
}

.cftv-dashboard-visual img {
    width: 100%;
    display: block;
    max-height: 420px;
    object-fit: cover;
    object-position: center top;
}

.cftv-dashboard-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(15, 23, 42, 0.9), transparent);
    color: rgba(255, 255, 255, 0.8);
    padding: 24px 28px 18px;
    font-size: 0.88rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.cftv-dashboard-caption i {
    color: var(--intelbras-green);
}

/* ════════════════════════════════════════════
   5. BENEFÍCIOS
════════════════════════════════════════════ */
.cftv-benefits {
    background: var(--white);
}

.cftv-benefits-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: center;
}

/* Container da imagem com placeholder */
.cftv-benefits-image {
    position: relative;
}

.cftv-benefits-img-wrap {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(0, 163, 53, 0.1);
    transition: var(--transition);
    /* Fallback quando sem imagem */
    background: linear-gradient(135deg, #0F172A 0%, #13679C 55%, #0a5f30 100%);
    min-height: 380px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cftv-benefits-img-wrap:hover {
    box-shadow: 0 40px 70px rgba(0, 0, 0, 0.2), 0 0 0 1px rgba(0, 163, 53, 0.15);
    transform: translateY(-4px);
}

.cftv-benefits-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 20px;
    position: absolute;
    inset: 0;
}

/* Ícone placeholder quando não há imagem */
.cftv-img-placeholder-icon {
    color: rgba(255, 255, 255, 0.15);
    font-size: 6rem;
    z-index: 1;
}

/* Badge sobreposto na imagem */
.cftv-benefits-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(15, 23, 42, 0.92);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    padding: 11px 18px;
    border-radius: 12px;
    font-size: 0.86rem;
    font-weight: 600;
    z-index: 2;
}

.cftv-benefits-badge i {
    color: var(--intelbras-green);
}

/* Conteúdo direito */
.cftv-benefits-content h2 {
    font-size: 2.1rem;
    font-weight: 800;
    color: var(--text-color);
    letter-spacing: -0.025em;
    margin-bottom: 12px;
    line-height: 1.2;
}

.cftv-benefits-content > p {
    color: var(--text-muted);
    font-size: 1rem;
    margin-bottom: 32px;
    line-height: 1.65;
}

.cftv-benefits-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.cftv-benefits-list li {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.cftv-benefit-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    background: linear-gradient(135deg, var(--primary-blue), var(--intelbras-green));
    color: #fff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    box-shadow: 0 4px 14px rgba(19, 103, 156, 0.25);
    flex-shrink: 0;
}

.cftv-benefits-list li strong {
    display: block;
    font-size: 0.94rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 3px;
}

.cftv-benefits-list li p {
    font-size: 0.84rem;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.55;
}

/* ════════════════════════════════════════════
   6. PARA QUEM É IDEAL
════════════════════════════════════════════ */
.cftv-ideal {
    background:
        radial-gradient(ellipse at 12% 60%, rgba(0, 163, 53, 0.12) 0%, transparent 50%),
        radial-gradient(ellipse at 88% 40%, rgba(217, 138, 46, 0.08) 0%, transparent 50%),
        linear-gradient(140deg, #0F172A 0%, #13679C 100%);
}

.cftv-ideal-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 12px;
}

.cftv-ideal-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 18px;
    padding: 34px 22px;
    text-align: center;
    transition: var(--transition);
}

.cftv-ideal-card:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.22);
    transform: translateY(-8px);
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.25);
}

.cftv-ideal-icon {
    width: 64px;
    height: 64px;
    background: rgba(217, 138, 46, 0.14);
    color: var(--highlight-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin: 0 auto 18px;
    transition: var(--transition);
}

.cftv-ideal-card:hover .cftv-ideal-icon {
    background: var(--highlight-orange);
    color: #fff;
    box-shadow: 0 8px 24px rgba(217, 138, 46, 0.42);
}

.cftv-ideal-card h3 {
    color: #F1F5F9;
    font-size: 0.97rem;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1.35;
}

.cftv-ideal-card p {
    color: rgba(255, 255, 255, 0.48);
    font-size: 0.84rem;
    line-height: 1.55;
    margin: 0;
}

/* ════════════════════════════════════════════
   7. FAQ ACCORDION
════════════════════════════════════════════ */
.cftv-faq {
    background: var(--light-gray);
}

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

.cftv-faq-item {
    background: var(--white);
    border-radius: 14px;
    border: 1px solid #E2E8F0;
    overflow: hidden;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.cftv-faq-item.open {
    border-color: var(--primary-blue);
    box-shadow: 0 4px 20px rgba(19, 103, 156, 0.08);
}

.cftv-faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    padding: 20px 24px;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    transition: background 0.2s;
    font-family: 'Inter', system-ui, sans-serif;
}

.cftv-faq-question:hover {
    background: #F8FAFC;
}

.cftv-faq-question span {
    font-weight: 600;
    font-size: 0.97rem;
    color: var(--text-color);
    line-height: 1.4;
}

.cftv-faq-question .faq-icon {
    width: 28px;
    height: 28px;
    min-width: 28px;
    border-radius: 50%;
    background: var(--intelbras-green-light);
    color: var(--intelbras-green);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    transition: transform 0.3s ease, background 0.2s;
}

.cftv-faq-item.open .cftv-faq-question .faq-icon {
    transform: rotate(45deg);
    background: var(--primary-blue);
    color: #fff;
}

.cftv-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.38s ease;
}

.cftv-faq-item.open .cftv-faq-answer {
    max-height: 220px;
}

.cftv-faq-answer p {
    color: var(--text-muted);
    font-size: 0.92rem;
    line-height: 1.72;
    margin: 0;
    padding: 0 24px 22px;
    border-top: 1px solid #F1F5F9;
    padding-top: 16px;
}

/* ════════════════════════════════════════════
   8. CTA FINAL
════════════════════════════════════════════ */
.cftv-cta-final {
    background:
        radial-gradient(ellipse at 20% 50%, rgba(0, 163, 53, 0.16) 0%, transparent 55%),
        radial-gradient(ellipse at 80% 50%, rgba(217, 138, 46, 0.1) 0%, transparent 55%),
        linear-gradient(135deg, #050D18 0%, #0F172A 55%, #092b15 100%);
    padding: 120px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Padrão de pontos de fundo */
.cftv-cta-final::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 1px 1px, rgba(255, 255, 255, 0.035) 1px, transparent 0);
    background-size: 30px 30px;
    pointer-events: none;
}

.cftv-cta-icon {
    width: 82px;
    height: 82px;
    background: linear-gradient(135deg, var(--primary-blue), var(--intelbras-green));
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 28px;
    box-shadow: 0 12px 36px rgba(0, 163, 53, 0.32);
    position: relative;
    z-index: 1;
}

.cftv-cta-eyebrow {
    color: rgba(255, 255, 255, 0.45);
    font-size: 1.05rem;
    font-weight: 500;
    margin-bottom: 8px;
    position: relative;
    z-index: 1;
    font-style: italic;
}

.cftv-cta-final h2 {
    color: #fff;
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 900;
    letter-spacing: -0.035em;
    line-height: 1.1;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.cftv-cta-sub {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.98rem;
    line-height: 1.72;
    margin-bottom: 44px;
    position: relative;
    z-index: 1;
}

.cftv-cta-trust {
    display: flex;
    justify-content: center;
    gap: 36px;
    margin-top: 28px;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.cftv-cta-trust span {
    display: flex;
    align-items: center;
    gap: 7px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.86rem;
    font-weight: 500;
}

.cftv-cta-trust span i {
    color: var(--intelbras-green);
}

/* ==========================================================================
   RESPONSIVE
========================================================================== */

/* Tablet */
@media (max-width: 1024px) {
    .cftv-ideal-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .cftv-included-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .cftv-steps {
        flex-wrap: wrap;
        justify-content: center;
        gap: 0;
    }

    .cftv-step {
        min-width: 220px;
    }

    .cftv-step-arrow:nth-child(4) {
        display: none;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .cftv-hero-text h1 {
        font-size: 2.5rem;
    }

    .cftv-hero-stats {
        gap: 20px;
        padding: 16px 22px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .cftv-problem-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .cftv-steps {
        flex-direction: column;
        align-items: center;
        gap: 4px;
    }

    .cftv-step {
        max-width: 340px;
        width: 100%;
    }

    .cftv-step-arrow {
        transform: rotate(90deg);
        padding: 0;
        width: 100%;
        justify-content: center;
        height: 24px;
    }

    .cftv-included-grid {
        grid-template-columns: 1fr;
    }

    .cftv-benefits-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .cftv-ideal-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .cftv-cta-trust {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }
}

/* Mobile pequeno */
@media (max-width: 480px) {
    .cftv-failures-grid {
        grid-template-columns: 1fr;
    }

    .cftv-ideal-grid {
        grid-template-columns: 1fr;
    }

    .cftv-hero-ctas {
        flex-direction: column;
    }

    .cftv-btn {
        width: 100%;
        justify-content: center;
    }

    .cftv-hero-stats .cftv-stat-sep {
        display: none;
    }
}
