/*GLOBAL */

:root {
    --nova-orange: #00a520;
    --nova-blue: #003399;
    --nova-yellow: #FBCA15;
    --nova-blue-detail: #003399;
    --text-dark: #333333;
    --text-light: #666666;
     --text-red: #b70000;
}


/* SCROLL */

/* --- Botão Scroll Progress V3 Refinado --- */
.progress-wrap-v3 {
    
    position: fixed;
    right: 30px;
    bottom: 30px;
    height: 48px; /* Aumentado levemente para acomodar a borda grossa */
    width: 48px;
    cursor: pointer;
    display: block;
    border-radius: 50px;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
    
    /* Efeito Glassmorphism */
    background: rgba(255, 255, 255, 0.4); 
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px 0 rgba(0, 51, 153, 0.15);
}

.progress-wrap-v3.active-progress {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.progress-wrap-v3 i {
    position: absolute;
    text-align: center;
    line-height: 48px;
    font-size: 18px;
    color: var(--nova-blue);
    left: 0;
    top: 0;
    height: 48px;
    width: 48px;
    cursor: pointer;
    display: block;
    z-index: 1;
    font-weight: 900; 

}

.progress-wrap-v3 svg path { 
    fill: none; 
    stroke: var(--nova-orange); 
    stroke-width: 6; /* ALTERADO: Barra mais grossa */
    stroke-linecap: round; /* ADICIONADO: Pontas arredondadas */
    box-sizing: border-box; 
    transition: stroke-dashoffset 10ms linear; 
}

/* Círculo de fundo (o trilho por onde o progresso passa) */
.progress-wrap-v3 svg.progress-circle path.rail-v3 {
    stroke: rgba(0, 0, 0, 0.05); /* Cor bem clarinha do trilho */
    stroke-width: 6;
}

.progress-wrap-v3 .progress-circle svg.svg-content {
    width: 100%;
    height: 100%;
}




/* remove underline de todos os links do site por padrão */
a {
    text-decoration: none !important;
}

/* garante que o underline não apareça em nenhum estado (hover, active, etc) */
a:hover, 
a:focus, 
a:active {
    text-decoration: none !important;
}


/* Classe exclusiva para os seus links do tema */
.link-custom {
    color: var(--nova-orange);      /* Usa o azul do seu root */
    font-weight: 600;            /* Deixa o link mais "robusto" que o texto comum */
    transition: color 0.3s ease;  /* Transição elegante */
    cursor: pointer;
}

.link-custom:hover {
    color: var(--nova-orange);    /* Muda para a cor de destaque do tema no hover */
    text-decoration: none !important;
}

/* Efeito opcional: uma leve redução de opacidade ao clicar */
.link-custom:active {
    opacity: 0.7;
}



/* ==================================== */ 



* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif; /* nome correto para a montserrat */
    -webkit-font-smoothing: antialiased;
    letter-spacing: -0.02em; /* ajuste para a fonte não ficar "espalhada" */
}

/* ajuste nos links para ficarem mais próximos do print */
.nav-corporate a, 
.nav-services a, 
.btn-orange-text {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600; /* montserrat fica melhor com peso 600 em menus */
    text-transform: none; /* se quiser manter a primeira letra maiúscula como no print */
}

.top-accessibility a,
.location span {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
}

body {
    background-color: #fff;
}

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

/* topo laranja de acessibilidade */
.top-accessibility {
    background-color: var(--nova-blue);
    color: #ffffff;
    font-size: 13px;
    font-weight: 500;
    padding: 15px 0;
}

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

.access-links {
    display: flex;
    align-items: center;
    gap: 12px;
}

.access-links a {
    color: #fff;
    text-decoration: none;
}

.font-resizer {
    display: flex;
    background: rgba(0,0,0,0.15);
    border-radius: 2px;
    margin-left: 10px;
}

.font-resizer button {
    background: none;
    border: none;
    color: #fff;
    padding: 2px 6px;
    cursor: pointer;
    font-size: 10px;
}

/* linha 1: logo e corporativo */
.main-nav-top {
    padding: 15px 0;
    border-bottom: 1px solid #f0f0f0;
}

.flex-align {
    display: flex;
    align-items: center;
}

.nav-corporate {
    margin-left: 40px;
    flex: 1;
}

.nav-corporate a {
    color: var(--text-light);
    text-decoration: none;
    margin-right: 25px;
    font-size: 14px;
    font-weight: 500;
    padding: 18px 0;
    position: relative;
}

.nav-corporate a.active {
    color: var(--text-dark);
}

/* linha azul */
.nav-corporate a.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: var(--nova-blue-detail);
}

.btn-orange-text {
    color: var(--nova-orange);
    font-weight: 600;
    font-size: 16px;
    margin-left: 20px;
    text-decoration: none;
}



.btn-blue-text {
    color: var(--nova-blue);
    font-weight: 600;
    font-size: 16px;
    margin-left: 20px;
    text-decoration: none;
}

/* opcional: um efeito de hover para o azul */
.btn-blue-text:hover {
    color: var(--nova-blue-detail);
    opacity: 0.8;
}




/*Menu Drop - Assine Já / Area do Cliente */


/* container pai */
.dropdown-container {
    position: relative;
    display: inline-block;
}

/* a box (escondida por padrão) */
.dropdown-box {
    position: absolute;
    top: calc(100% + 20px); /* isso cria o espaço de 15px entre o menu e a box */
    right: 0;
    width: 500px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    padding: 25px;
    z-index: 100;
    
    /* efeito de suavidade */
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease-in-out;
}

/* mostrar ao passar o mouse */
.dropdown-container:hover .dropdown-box {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* a setinha branca no topo da box */
.dropdown-arrow {
    position: absolute;
    top: -8px;
    right: 50px;
    width: 15px;
    height: 15px;
    background: #fff;
    transform: rotate(45deg);
}

/* estilização interna da box */
.dropdown-box h3 {
    font-size: 18px;
    color: #333;
    margin-bottom: 20px;
    font-weight: 700;
}

.dropdown-content {
    display: flex;
    gap: 30px;
}

.column {
    flex: 1;
}

.column-title {
    display: block;
    font-size: 12px;
    font-weight: 700;
    color:  #797979;
    text-transform: uppercase;
    margin-bottom: 15px;
    border-bottom: 1px solid #eee;
    padding-bottom: 5px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 15px;
}

.contact-item i {
    font-size: 20px;
    color: #666;
}

.contact-item strong {
    display: block;
    font-size: 14px;
    color: #444;
}

.contact-item span {
    font-size: 14px;
    color: var(--nova-blue);
    font-weight: 600;
}

.email-small {
    font-size: 12px !important;
}

.link-action {
    display: inline-block;
    margin-top: 10px;
    font-size: 14px;
    color: #666;
    font-weight: 500;
}


/* o título (ex: whatsapp) fica cinza escuro */
.contact-item strong {
    font-size: 12px;
    font-weight: 700;
    color: #797979;
    display: block;
    text-transform: uppercase;
}

/* o número ou e-mail abaixo fica laranja */
.contact-item span {
    font-size: 14px;
    font-weight: 500;
    color: var(--nova-orange); 
}



/* box de contatos lado a lado */
.box-contato {
    width: 620px; /* largura ideal para as duas colunas respirarem */
    padding: 25px 30px;
}

.box-title {
    font-size: 17px;
    font-weight: 700;
    color: #333;
    margin-bottom: 25px;
}

.dropdown-content-main {
    display: flex;
    justify-content: space-between;
    align-items: stretch; /* faz o divisor ocupar a altura total */
}

.contact-column {
    flex: 1;
}

/* cabeçalho da coluna igual ao card clean */
.column-header-clean {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 700;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding-bottom: 10px;
    margin-bottom: 20px;
    border-bottom: 1px solid #f0f0f0;
}

/* linhas de contato individuais */
.contact-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
}

.contact-row i {
    font-size: 18px;
    color: #ccc; /* cor suave nos ícones */
}

.contact-row small {
    display: block;
    font-size: 10px;
    color: #888;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 2px;
}

.contact-row strong {
    font-size: 15px;
    color: var(--nova-orange);
    font-weight: 700;
}

.link-orange {
    color: var(--nova-orange);
    font-weight: 700;
    font-size: 14px;
    text-decoration: underline;
}

.email-text {
    font-size: 12px;
    color: #666;
    font-weight: 500;
    word-break: break-all;
}

/* divisor vertical entre as colunas */
.vertical-divider {
    width: 1px;
    background-color: #f0f0f0;
    margin: 0 25px;
}

/*==================== */




/*MENU DROP AREA DO CLIENTE */


/* largura específica para a box do cliente ser maior se necessário */
.box-cliente {
    width: 650px;
    padding: 30px;
}

.dropdown-content-main {
    display: flex;
    justify-content: space-between;
    margin-bottom: 25px;
}

.client-column {
    flex: 1;
    padding: 0 15px;
}

.column-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.column-header i {
    font-size: 24px;
    color: #444;
}

.column-header h3 {
    margin-bottom: 0 !important;
    font-size: 16px !important;
}

.client-column p {
    font-size: 13px;
    color: #666;
    line-height: 1.5;
    margin-bottom: 15px;
    height: 40px; /* alinha os textos */
}

.label-access {
    display: block;
    font-size: 11px;
    font-weight: 700;
    color: #333;
    text-transform: uppercase;
    margin-bottom: 10px;
}

/* botão com borda */
.btn-outline-orange {
    display: block;
    text-align: center;
    border: 1.5px solid var(--nova-orange);
    color: var(--nova-orange);
    padding: 10px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 14px;
    transition: all 0.3s ease;
}

.btn-outline-orange:hover {
    background-color: var(--nova-orange);
    color: #fff;
}

.vertical-divider {
    width: 1px;
    background-color: #eee;
}

/* footer da box */
.dropdown-footer {
    display: flex;
    border-top: 1px solid #eee;
    padding-top: 20px;
    gap: 40px;
}

.footer-col strong {
    display: block;
    font-size: 10px;
    text-transform: uppercase;
    color: #999;
    margin-bottom: 8px;
}

.footer-col a {
    font-size: 13px;
    color: #666;
    font-weight: 500;
}

.footer-col a:hover {
    color: var(--nova-orange);
}




/*MENU DROP AREA DO CLIENTE */




/* linha 2: serviços */
.main-nav-bottom {
    padding: 30px 0;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    position: relative;
    z-index: 90;
}

/* trava para o menu não quebrar ao abrir a busca */
.main-nav-bottom .flex-space {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: nowrap;
}

.nav-services {
    flex: 1;
    display: flex;
    align-items: center;
    white-space: nowrap;
}

.nav-services a {
    color: var(--text-light);
    text-decoration: none;
    margin-right: 28px;
    font-size: 17px;
    font-weight: 500;
    /* transição mais suave apenas na cor */
    transition: color 0.4s cubic-bezier(0.4, 0, 0.2, 1); 
    display: inline-block;
}

/* efeito hover refinado: apenas cor, sem deslocamento para não tremer o layout */
.nav-services a:hover {
    color: var(--nova-blue) !important;
}

.search-icon, .cart-icon {
    color: #999;
    font-size: 20px;
}

/* barra de search (busca) */
.search-container {
    display: flex;
    align-items: center;
    margin-left: 15px;
    flex-shrink: 0;
}

.search-box {
    display: flex;
    align-items: center;
    background: #f5f5f5;
    border-radius: 50px;
    padding: 5px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    width: 40px;
    overflow: hidden;
    border: 1px solid transparent;
}

/* classe ativa com largura controlada para evitar quebra */
.search-box.active {
    width: 220px; 
    background: #fff;
    border-color: #eee;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.search-input {
    width: 0;
    border: none;
    outline: none;
    background: none;
    font-size: 14px;
    font-weight: 600; 
    padding: 0;
    transition: all 0.4s ease;
    color: var(--text-dark);
}

.search-box.active .search-input {
    width: 100%;
    padding: 0 15px;
}

.search-btn {
    background: none;
    border: none;
    cursor: pointer;
    color: #999;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.3s;
}

.search-box.active .search-btn {
    color: var(--nova-orange);
}






/* ==========================================================================
   VERSÃO MOBILE (Abaixo de 992px) - AJUSTES DE ALINHAMENTO
   ========================================================================== */

/* 0. RESET DE SEGURANÇA PARA DESKTOP (Esconde os novos elementos no PC) */
@media (min-width: 993px) {
    .mobile-menu-btn,
    .menu-mobile-header,
    .menu-quick-actions,
    .menu-search-item {
        display: none !important;
    }
}

@media (max-width: 992px) {
    
    /* 1. Topo de Acessibilidade */
    .top-accessibility {
        padding: 13px 0;
        font-size: 13px;
    }
    .top-accessibility .access-links span.divider,
    .top-accessibility .access-links a:last-child {
        display: none; 
    }

    /* 2. Estrutura do Header Principal */
    .main-nav-top {
        padding: 12px 0;
        position: relative;
        background: #fff;
        z-index: 100;
    }

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

    /* Esconde elementos de desktop */
    .nav-corporate, 
    .user-actions, 
    .search-container {
        display: none !important;
    }

    .logo img {
        width: 120px !important;
    }

    /* 4. Menu Fullscreen */
    .main-nav-bottom {
        position: fixed;
        top: 0;
        left: -100%; 
        width: 100%;
        height: 100vh;
        background: #fff;
        z-index: 9999;
        transition: 0.4s ease-in-out;
        padding: 0;
        display: block !important;
        overflow-y: auto;
    }

    .main-nav-bottom.active {
        left: 0;
    }

    /* 5. Cabeçalho do Menu (Tema Azul Nova) */
    .menu-mobile-header {
        background-color: var(--nova-blue);
        color: #fff;
        padding: 20px;
        display: flex !important; /* Força a exibição quando ativo */
        justify-content: space-between;
        align-items: center;
    }

    .menu-title {
        font-size: 20px;
        font-weight: 700;
    }

    .close-menu {
        background: none;
        border: none;
        color: #fff;
        width: auto;
        height: auto;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        font-size: 30px;
    }
    
    /* 6. Ações Rápidas (Assine / Área do Cliente) */
    .menu-quick-actions {
        display: flex !important; /* Força a exibição no mobile */
        background-color: #f8f8f8;
        border-bottom: 1px solid #eee;
    }

    .menu-quick-actions a {
        flex: 1;
        padding: 18px 10px;
        text-align: center;
        font-size: 14px;
        font-weight: 700;
        color: var(--nova-orange);
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
    }

    .menu-quick-actions a:first-child {
        border-right: 1px solid #eee;
    }

    /* 7. Busca Interna */
    .menu-search-item {
        margin: 20px;
        display: flex !important; /* Força a exibição no mobile */
        background: #f5f5f5;
        border: 1px solid #eee;
        border-radius: 8px;
        padding: 5px 15px;
        align-items: center;
    }

    .menu-search-item input {
        flex: 1;
        border: none;
        background: none;
        padding: 12px 0;
        outline: none;
        font-size: 15px;
    }

    .search-btn-inside {
        background: none;
        border: none;
        color: #999;
        font-size: 18px;
    }

    /* 8. Lista de Links (CORREÇÃO DE ALINHAMENTO) */
    .nav-services {
        display: flex !important;
        flex-direction: column !important; /* Garante que fique em lista no mobile */
        width: 100%;
        padding: 0 20px;
    }

    .nav-services a {
        font-size: 16px;
        font-weight: 600;
        padding: 18px 0;
        border-bottom: 1px solid #f0f0f0;
        width: 100%;
        color: var(--nova-blue) !important;
        display: flex;
        align-items: center;
    }

    .nav-services a i:first-child {
        width: 25px; 
        margin-right: 15px;
        text-align: center;
        color: var(--nova-orange);
        font-size: 20px;
    }

    .nav-services a i:last-child:not(:first-child) {
        margin-left: auto;
        color: #ccc;
        font-size: 14px;
        display: inline-block !important;
    }

    /* 9. Botão Hamburguer no Topo */
    .mobile-menu-btn {
        display: block !important; /* Garante que apareça no celular */
        font-size: 28px;
        color: var(--nova-orange);
        background: none;
        border: none;
        cursor: pointer;
        order: 3;
    }
}



/* =============================== banner slider ================================ */

.hero-slider {
    position: relative;
    width: 100%;
    height: 500px; /* altura desktop */
    overflow: hidden;
    background-color: #000;
}

.slider-container {
    width: 100%;
    height: 100%;
    position: relative;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    display: flex;
    align-items: flex-end; /* joga os botões para baixo */
    z-index: 1;
}

.slide.active {
    opacity: 1;
    z-index: 2; /* slide ativo fica acima dos outros */
}

/* imagem sempre na base do slide */
.slide img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; 
    object-position: center;
    z-index: 1; 
}

/* container dos botões */
.slide-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px 80px 15px; 
    width: 100%;
    position: relative;
    z-index: 10; /* acima da imagem */
}

.slide-content h2 {
    display: none !important; /* texto escondido (usando a arte da imagem) */
}

.slide-btns {
    display: flex;
    gap: 15px;
}

.btn-primary, .btn-secondary, .btn-yellow {
    padding: 14px 35px;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 14px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-primary {
    background-color: var(--nova-orange);
    color: #fff !important;
}

.btn-yellow {
    background-color: var(--nova-yellow);
    color: #fff !important;
}


.btn-secondary {
    background-color: transparent;
    border: 2px solid #fff;
    color: #fff !important;
}

/* =============================== navegação (setas e dots) ================================ */

.prev-slide, .next-slide {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(4px);
    border: none;
    color: #fff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 50; /* na frente de tudo */
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

/* centraliza o ícone do tabler */
.prev-slide i, .next-slide i {
    font-size: 24px;
    line-height: 1;
    display: block;
}

.prev-slide:hover, .next-slide:hover {
    background: var(--nova-blue);
    color: #fff;
}

.prev-slide { left: 20px; }
.next-slide { right: 20px; }

.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 50; /* na frente de tudo */
}

.dot {
    width: 40px;
    height: 6px;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: #fff;
    width: 60px;
}

/* =============================== versão mobile (abaixo de 992px) ================================ */

@media (max-width: 992px) {
    .hero-slider {
        height: 600px !important; /* altura para imagem quadrada */
    }

    .slide-content {
        padding-bottom: 60px;
    }

    .slide-btns {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

    .btn-primary, .btn-secondary {
        width: 100%;
        max-width: 280px;
        text-align: center;
    }

    /* esconde setas no mobile para não poluir a arte */
    .prev-slide, .next-slide {
        display: none !important;
    }

    .slider-dots {
        bottom: 20px;
    }

    .dot {
        width: 25px;
    }
    
    .dot.active {
        width: 40px;
    }
}

.hero-slider {
    touch-action: pan-y; /* Permite rolar a página para cima/baixo, mas controla o movimento horizontal pelo JS */
}

/*================ BARRA DE ALERTA E AVISOS ======================== */



.alert-bar {
    background-color: #f9f9f9;
    padding: 25px 0; 
    border-bottom: 1px solid #eee;
}

.alert-content {
    display: flex;
    align-items: center; 
    gap: 3px;
    color: #555;
    font-size: 13px; 
}

.alert-content i {
    color: var(--nova-orange); /* cor padrão */
    font-size: 22px;
    flex-shrink: 0;
    display: flex; 
    align-items: center;
}

.alert-content p {
    margin: 0;
    line-height: 1; 
    display: flex;
    align-items: center;
}

.alert-content strong {
    color: #333;
    text-transform: uppercase;
    font-weight: 700;
    margin-right: 5px; 
}


/* =============================== cores dos alertas ================================ */

/* se a section tiver a classe 'success', o ícone fica verde */
.alert-bar.success .alert-content i {
    color: #28a745 !important;
}

/* se a section tiver a classe 'danger', o ícone fica vermelho */
.alert-bar.danger .alert-content i {
    color: #dc3545 !important;
}



/*======================== PLANOS  ================================*/


/* =============================== AREA DE PLANOS V2 ================================ */

.plans-area {
    padding: 80px 0 0 0; 
    background-color: #fff;
}

.plans-header-main {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 40px;
}

.plans-header-main h2 {
    color: var(--nova-blue);
    font-size: 32px;
    font-weight: 800;
}

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

.location-box small {
    display: block;
    font-size: 11px;
    color: #999;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 5px;
}

.location-box span {
    font-size: 16px;
    font-weight: 700;
    text-decoration: underline;
    cursor: pointer;
}

/* abas */
.plans-tabs {
    display: flex;
    gap: 40px;
    border-bottom: 1px solid #eee;
    margin-bottom: 50px;
}

.tab-item {
    padding: 15px 0;
    font-size: 15px;
    font-weight: 600;
    color: #999;
    position: relative;
}

.tab-item.active {
    color: var(--nova-blue);
}

.tab-item.active::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--nova-blue);
}

/* grid */
.plans-grid-refined {
    display: grid;
    grid-template-columns: repeat(3, 1fr); 
    gap: 25px;
    align-items: start; 
    min-height: auto; /* Altere de 500px para auto */
    margin-bottom: 0; /* Adicione isso para garantir */
}

/* cards */
.plan-card-v2 {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 16px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
    position: relative;
}

.plan-card-v2:hover {
    box-shadow: 0 15px 30px rgba(0,0,0,0.05);
    transform: translateY(-5px);
}

/* card destaque */
.plan-card-v2.featured {
    border: 1px solid var(--nova-blue);
    transform: scale(1.03);
    z-index: 2;
}

.best-offer-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--nova-blue);
    color: #fff;
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
}

/* typography inside cards */
.category {
    font-size: 10px;
    font-weight: 700;
    color: #bbb;
    text-transform: uppercase;
    display: block;
    margin-bottom: 15px;
}

.speed {
    color: var(--nova-orange);
    margin-bottom: 10px;
}

.free-badge-orange {
    background-color: var(--nova-orange);
    color: #fff; /* Cor do texto em branco para contraste */
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    display: inline-block;
}

.speed strong {
    font-size: 48px;
    font-weight: 800;
    line-height: 1;
}

.speed span {
    font-size: 18px;
    font-weight: 600;
}

.brand-chip {
    font-size: 18px;
    font-weight: 700;
    color: #444;
}

.orange-text {
    color: var(--nova-orange);
}

.plan-desc {
    font-size: 13px;
    color: #888;
    margin: 5px 0 25px 0;
}

/* features */
.features-list {
    list-style: none;
    margin-bottom: 30px;
}

.features-list li {
    font-size: 13px;
    color: #666;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px; /* reduzido conforme solicitado */
}

.features-list li i {
    color: #ccc;
    font-size: 18px;
}

.included-section label {
    display: block;
    font-size: 10px;
    font-weight: 700;
    color: #aaa;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.apps-row {
    display: flex;
    gap: 15px;
    font-size: 24px;
    color: #444;
}

/* buttons */
.btn-plan-outline {
    display: block;
    text-align: center;
    padding: 14px;
    border: 2px solid var(--nova-orange);
    color: var(--nova-orange);
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 13px;
    margin-top: 20px;
}

.btn-plan-solid {
    display: block;
    text-align: center;
    padding: 14px;
    background: var(--nova-orange);
    color: #fff;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 13px;
    margin-top: 20px;
}

@media (max-width: 992px) {
    .plans-grid-refined {
        grid-template-columns: 1fr;
    }
    .plan-card-v2.featured {
        transform: scale(1);
    }
}



.plans-grid-refined {
    display: grid;
    /* aqui travamos 3 colunas fixas de 1fr. se houver apenas 1 item, ele ocupa 1 coluna e as outras ficam vazias */
    grid-template-columns: repeat(3, 1fr); 
    gap: 25px;
    align-items: start; /* evita que os cards estiquem verticalmente se um for maior que o outro */
    min-height: 500px; /* reserva o espaço para evitar que o rodapé da página "pule" */
}

.plan-card-v2 {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 16px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    transition: opacity 0.3s ease, transform 0.3s ease;
    width: 100%; /* ocupa os 1fr da coluna */
    max-width: 380px; /* garante que ele não cresça demais em telas ultra-wide */
    margin: 0 auto; /* centraliza o card dentro da sua coluna do grid */
}

/* ajuste para mobile: volta para 1 coluna */
@media (max-width: 992px) {
    .plans-grid-refined {
        grid-template-columns: 1fr;
    }
    .plan-card-v2 {
        max-width: 100%;
    }
}



/* =============================== BANNER ADS CHIP ================================ */

.banner-ads-chip {
    padding: 20px 0;
}

.banner-chip-wrapper {
    background: linear-gradient(135deg, var(--nova-blue) 0%, #001f5c 100%);
    border-radius: 24px;
    padding: 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #fff;
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(255,255,255,0.1);
}

.banner-chip-content {
    max-width: 600px;
    position: relative;
    z-index: 2;
}

.chip-badge {
    background: var(--nova-orange);
    color: #fff;
    padding: 6px 15px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 20px;
}

.banner-chip-content h2 {
    font-size: 36px;
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 20px;
}

.banner-chip-content h2 strong {
    font-weight: 800;
    color: #fff;
}

.banner-chip-content p {
    font-size: 16px;
    opacity: 0.9;
    margin-bottom: 30px;
    line-height: 1.6;
}

/* Lista de benefícios */
.chip-benefits {
    list-style: none;
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
    padding: 0;
}

.chip-benefits li {
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
}

.chip-benefits li i {
    color: var(--nova-orange);
    font-size: 18px;
}

/* Ações e Preço */
.banner-action {
    display: flex;
    align-items: center;
    gap: 25px;
}

.btn-chip-primary {
    background: #fff;
    color: var(--nova-blue);
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 800;
    text-transform: uppercase;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-chip-primary:hover {
    background: var(--nova-orange);
    color: #fff;
    transform: translateY(-3px);
}

.price-tag {
    font-size: 14px;
    opacity: 0.8;
}

.price-tag strong {
    font-size: 20px;
    color: #fff;
    display: block;
}

/* Visual do Chip (Direita) */
.banner-chip-image {
    position: relative;
    z-index: 1;
}

.chip-visual {
    font-size: 180px;
    color: rgba(255,255,255,0.1);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.chip-visual i {
    color: #fff;
    filter: drop-shadow(0 0 20px rgba(255,255,255,0.3));
}

.glow-effect {
    position: absolute;
    width: 200px;
    height: 200px;
    background: var(--nova-orange);
    filter: blur(80px);
    opacity: 0.3;
    z-index: -1;
}

/* Responsivo */
@media (max-width: 992px) {
    .banner-chip-wrapper {
        flex-direction: column;
        text-align: center;
        padding: 40px 20px;
    }
    
    .chip-benefits {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
    
    .banner-action {
        flex-direction: column;
        gap: 20px;
    }
    
    .banner-chip-image {
        margin-top: 40px;
    }
    
    .chip-visual {
        font-size: 120px;
    }
}

/* Container da imagem à direita */
.banner-chip-image {
    position: relative;
    z-index: 1;
    flex: 0 0 480px; /* Largura fixa para o container da imagem */ [cite: 2026-03-04]
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Estilo da imagem propriamente dita */
.chip-img-fluid {
    max-width: 100%;
    height: auto;
    z-index: 2;
    /* Filtro leve para a imagem "brilhar" no fundo escuro */
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.3)); 
    /* Animação suave para a imagem flutuar (opcional) */
}

/* Efeito de brilho atrás da imagem */
.glow-effect {
    position: absolute;
    width: 250px;
    height: 250px;
    background: var(--nova-orange);
    filter: blur(80px);
    opacity: 0.25;
    z-index: 1;
}

/* Animação de flutuação para dar um ar moderno */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}

/* Ajuste Responsivo para Celular */
@media (max-width: 992px) {
    .banner-chip-image {
        flex: 1;
        width: 100%;
        margin-top: 30px;
    }
    
    .chip-img-fluid {
        max-width: 250px; /* Reduz o tamanho no celular */ 
    }
}




/* =============================== TV STREAMING SLIDER ================================ */


/* Container Principal */
.tv-streaming-wide { 
    padding: 60px 0; 
    background-color: #f9f9f9; 
    overflow: hidden; 
}

.tv-slider-outer { 
    position: relative; 
    width: 100%; 
}

/* 1. MASK / FADER (Sombras laterais para não cortar seco) */
.tv-slider-outer::before,
.tv-slider-outer::after {
    content: '';
    position: absolute;
    top: 0;
    width: 100px; /* largura do efeito de fade */
    height: 100%;
    z-index: 10;
    pointer-events: none;
}

.tv-slider-outer::before {
    left: 0;
    background: linear-gradient(to right, #f9f9f9 0%, transparent 100%);
}

.tv-slider-outer::after {
    right: 0;
    background: linear-gradient(to left, #f9f9f9 0%, transparent 100%);
}

/* Wrapper e Track */
.tv-wide-wrapper { 
    display: flex; 
    overflow: hidden; 
    width: 100%; 
}

.tv-wide-track {
    display: flex;
    gap: 15px;
    will-change: transform;
    padding: 10px 0;
}

/* 2. CARD E SOMBRINHA INTERNA (Para a fonte ficar branca legível) */
.tv-wide-card {
    position: relative;
    width: 300px;
    height: 170px;
    border-radius: 12px;
    overflow: hidden;
    flex-shrink: 0;
    text-decoration: none;
    display: block;
    transition: transform 0.3s ease;
}

.tv-wide-card:hover { transform: scale(1.03); }

.tv-wide-card img { width: 100%; height: 100%; object-fit: cover; }

/* Sombrinha preta vindo de baixo (Gradiente para o texto) */
.tv-wide-card::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; width: 100%; height: 75%;
    /* Gradiente mais forte embaixo para a fonte aparecer */
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.4) 50%, transparent 100%);
    z-index: 1;
}

.tv-info { position: absolute; bottom: 15px; left: 15px; z-index: 2; color: #fff; }
.tv-logo-name { font-size: 11px; font-weight: 800; text-transform: uppercase; display: block; margin-bottom: 2px; }
.tv-title { font-size: 14px; margin: 0; font-weight: 500; }

/* 3. BOTÕES DE NEXT E PREV */
.nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    z-index: 20; /* Fica acima da mask */
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transition: all 0.2s;
}

.tv-wide-track {
    display: flex;
    gap: 15px;
    will-change: transform;
    /* Adicione esta linha abaixo */
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.nav-btn:hover { background: #fff; transform: translateY(-50%) scale(1.1); color: #ff6b00; }
.nav-btn.prev { left: 10px; }
.nav-btn.next { right: 10px; }


/* --- BOTÃO VER CANAIS (DENTRO DO CARD) --- */
.btn-view-channels-v3 {
    background: rgba(0, 51, 153, 0.05); /* Usando --nova-blue suave */
    border: 1px solid rgba(0, 51, 153, 0.2);
    color: var(--nova-blue);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    margin: 10px 0;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s ease;
    text-transform: lowercase;
}

.btn-view-channels-v3 i {
    font-size: 0.9rem;
}

.btn-view-channels-v3:hover {
    background: var(--nova-blue);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 51, 153, 0.3);
}

/* --- MODAL OVERLAY (FUNDO) --- */
.modal-tv-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 20, 60, 0.7); /* Tom escuro baseado no azul */
    backdrop-filter: blur(8px);
    z-index: 99999;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal-tv-overlay.active {
    display: flex;
    opacity: 1;
    align-items: center;
    justify-content: center;
}

/* --- CONTAINER DO MODAL --- */
.modal-tv-container {
    background: #ffffff;
    width: 95%;
    max-width: 650px;
    max-height: 85vh;
    border-radius: 24px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 20px 60px rgba(0, 51, 153, 0.15);
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.modal-tv-overlay.active .modal-tv-container {
    transform: scale(1);
}

/* --- CABEÇALHO DO MODAL --- */
.modal-tv-header {
    padding: 25px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #f0f0f0;
}

.modal-tv-header h3 {
    margin: 0;
    font-size: 1.4rem;
    color: var(--text-dark);
}

.modal-tv-header p {
    margin: 4px 0 0;
    font-size: 0.9rem;
    color: var(--text-light);
}

.close-modal-v3 {
    background: #f5f5f5;
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    transition: 0.2s;
}

.close-modal-v3:hover {
    background: var(--nova-blue);
    color: #fff;
}

/* --- CORPO E GRID DE CANAIS --- */
.modal-tv-body {
    padding: 30px;
    overflow-y: auto;
    flex-grow: 1;
}

.channels-grid-v3 {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    gap: 16px;
}

.channel-item-v3 {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 16px;
    padding: 12px;
    text-align: center;
    transition: all 0.2s ease;
}

.channel-item-v3:hover {
    border-color: var(--nova-blue);
    transform: translateY(-4px);
    box-shadow: 0 6px 15px rgba(0, 51, 153, 0.1);
}

.channel-item-v3 .img-wrapper {
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
}

.channel-item-v3 img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.channel-item-v3 span {
    display: block;
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--text-dark);
    text-transform: uppercase;
    /* Adicione as linhas abaixo */
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* --- RODAPÉ --- */
.modal-tv-footer {
    padding: 20px 30px;
    border-top: 1px solid #f0f0f0;
    text-align: center;
}

.btn-modal-close-v3 {
    background: var(--nova-blue);
    color: #fff;
    border: none;
    padding: 10px 30px;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

.btn-modal-close-v3:hover {
    background: var(--nova-orange);
    box-shadow: 0 4px 12px rgba(0, 165, 32, 0.3);
}

.no-channels {
    grid-column: 1 / -1;
    text-align: center;
    padding: 40px;
    color: var(--text-light);
}

/* Responsividade do modal */
@media (max-width: 480px) {
    .modal-tv-container { height: 95vh; }
    .channels-grid-v3 { grid-template-columns: repeat(3, 1fr); gap: 10px; }
    .modal-tv-body { padding: 15px; }
}

.channel-item-v3 .img-wrapper {
    min-height: 50px; /* Garante que o espaço exista mesmo sem imagem */
    display: flex;
    align-items: center;
    justify-content: center;
}

.channel-item-v3 img[style*="display: none"] + span {
    margin-top: 10px; /* Ajuste caso a imagem suma */
}







/* --- BARRA DE FILTROS DO MODAL --- */


/* --- BARRA DE FILTROS DO MODAL --- */
.modal-tv-filters {
    padding: 15px 20px; 
    background: #f9f9f9;
    border-bottom: 1px solid #eee;
    
    /* Configuração de Layout */
    display: flex;
    flex-wrap: nowrap; /* Impede que os botões quebrem linha */
    gap: 12px;
    align-items: center;
    
    /* Habilita o scroll lateral */
    overflow-x: auto; 
    overflow-y: hidden; /* Garante que não haja scroll vertical */
    
    /* Melhora o deslize no Mobile */
    -webkit-overflow-scrolling: touch; 
    
    /* Permite o scroll lateral mas mantém o scroll vertical da página se necessário */
    touch-action: pan-x; 
    overscroll-behavior-x: contain;
    
    /* Largura total */
    width: 100%;
    box-sizing: border-box;

    /* Esconde a barra no Firefox e IE */
    scrollbar-width: none; 
    -ms-overflow-style: none;
}

/* Esconde a barra no Chrome/Safari */
.modal-tv-filters::-webkit-scrollbar {
    display: none;
}

/* --- BOTÕES DE FILTRO --- */
/* --- BARRA DE FILTROS DO MODAL --- */
.modal-tv-filters {
    /* Padding generoso para manter a altura harmonizada como na sua imagem 2 */
    padding: 16px 20px; 
    background: #f9f9f9;
    border-bottom: 1px solid #eee;
    
    /* Configuração de Layout */
    display: flex;
    flex-wrap: nowrap; 
    gap: 12px;
    align-items: center; /* Mantém os botões centralizados verticalmente */
    
    /* Habilita o scroll lateral */
    overflow-x: auto; 
    overflow-y: hidden; 
    
    /* Melhora o deslize no Mobile */
    -webkit-overflow-scrolling: touch; 
    
    /* Essencial para que o deslize não trave no mobile */
    touch-action: pan-x; 
    overscroll-behavior-x: contain;
    
    /* Garante que o container ocupe o espaço correto */
    width: 100%;
    min-height: 65px; /* Altura mínima de segurança para não "espremer" */
    box-sizing: border-box;

    /* Esconde a barra visualmente, mas mantém a função de scroll */
    scrollbar-width: none; 
    -ms-overflow-style: none;
}

/* Esconde a barra no Chrome/Safari */
.modal-tv-filters::-webkit-scrollbar {
    display: none;
}

/* --- BOTÕES DE FILTRO --- */


.filter-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: #fff;
    border: 1px solid #ddd; /* Borda sempre presente para manter o tamanho */
    
    /* Padding fixo para garantir que o botão inativo tenha o mesmo corpo do ativo */
    padding: 10px 20px; 
    border-radius: 25px; /* Curvatura mais harmônica */
    
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    color: #555;
    transition: all 0.2s ease;
    
    /* Impede o botão de encolher e mantém o texto em uma linha */
    flex: 0 0 auto;  
    white-space: nowrap;
    
    /* Melhora a experiência de toque */
    user-select: none;
    -webkit-tap-highlight-color: transparent;
}

/* Estilo para o botão quando estiver Ativo (Active) */
.filter-btn.active {
    background: #003399 !important; /* Cor azul de destaque */
    color: #fff !important;
    border-color: #003399 !important;
}

.filter-btn i {
    font-size: 1.1rem;
    line-height: 1;
    display: flex;
    align-items: center;
    pointer-events: none; 
}





/* =============================== FOOTER CORPORATIVO NOVA (ESTILO IMPONENTE) ================================ */

.footer-corporate-nova {
    background-color: var(--nova-blue); /* seu azul escuro institucional */
    color: #ffffff;
    padding: 80px 0 20px 0;
    font-family: 'Montserrat', sans-serif;
    border-top: 4px solid var(--nova-orange); /* linha de destaque tecnológica verde/laranja */
}

/* 1. menu técnico */
.footer-tech-nav {
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.nav-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.nav-tech-col h4 {
    color: #ffffff;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 25px;
    letter-spacing: 1.5px;
    display: flex;
    align-items: center;
    gap: 10px;
    opacity: 0.8;
}

.nav-tech-col h4 i {
    color: var(--nova-orange); /* ícones técnicos com sua cor de destaque */
    font-size: 18px;
}

.nav-tech-col a {
    display: block;
    color: rgba(255,255,255,0.7);
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 12px;
    transition: all 0.3s ease;
    text-decoration: none !important;
}

.nav-tech-col a:hover {
    color: #ffffff;
    padding-left: 5px; /* efeito de deslize */
}

/* 2. dados e compliance */
.footer-data-compliance {
    padding: 50px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

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

.data-text p {
    font-size: 13px;
    margin: 0;
    line-height: 1.6;
    font-weight: 500;
    color: rgba(255,255,255,0.8);
}

.seals {
    display: flex;
    gap: 20px;
    align-items: center;
}

.anatel-seal {
    height: 35px; /* tamanho do selo anatel */
    width: auto;
    filter: brightness(0) invert(1); /* deixa o selo branco para dar contraste no fundo escuro */
    opacity: 0.3;
}

/* 3. base legal e social */
.footer-base-legal {
    padding-top: 30px;
}

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

.legal-flex p {
    font-size: 12px;
    font-weight: 500;
    color: rgba(255,255,255,0.4);
    margin: 0;
}

.social-circles {
    display: flex;
    gap: 12px;
}

.social-circles a {
    width: 38px;
    height: 38px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
    transition: 0.3s;
}

.social-circles a:hover {
    background-color: var(--nova-orange);
    border-color: var(--nova-orange);
    color: #fff;
    transform: translateY(-5px);
}

/* responsivo */
@media (max-width: 992px) {
    .nav-grid { grid-template-columns: repeat(2, 1fr); gap: 40px; }
}

@media (max-width: 768px) {
    .nav-grid { grid-template-columns: 1fr; gap: 30px; }
    .nav-tech-col { text-align: center; }
    .nav-tech-col h4 { justify-content: center; }
    .compliance-flex { flex-direction: column; text-align: center; gap: 30px; }
    .seals { justify-content: center; }
    .legal-flex { flex-direction: column; gap: 20px; text-align: center; }
}




/* PAGINA DE INTERNET */




/* Nova seção para a imagem de fundo, usando suas fontes e cores */
.hero-internet-modern {
    background: linear-gradient(to right, rgba(0, 51, 153, 0.9), rgba(0, 0, 0, 0.3)), 
                url('../img/internet/header.jpg'); /* Use o caminho da sua imagem */
    background-size: cover;
    background-position: center;
    padding: 120px 0 160px 0; /* Espaço para o texto e para os cards encaixarem */
    color: #fff;
}

.hero-text-content h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 45px;
    font-weight: 800;
}

.hero-text-content h1 strong {
    color: var(--nova-orange); /* Usando sua variável de cor verde/orange */
}

.tag-speed {
    background: var(--nova-orange);
    color: #fff;
    padding: 6px 15px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 20px;
}

/* FAQ Section - Estilo Lista Integrada */
.faq-section {
    padding: 80px 0;
    background-color: #fcfcfc;
}

/* Container que segura todos os itens juntos */
.faq-wrapper {
    max-width: 100%;
    border: 1px solid #eee;
    border-radius: 8px;
    overflow: hidden;
    background-color: #fff; /* Fundo branco para o bloco todo */
}

.faq-item {
    border-bottom: 1px solid #eee;
    margin-bottom: 0; /* Colamos os itens aqui */
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-question {
    width: 100%;
    padding: 20px 25px;
    background-color: #f8f9fa; /* Fundo cinza padrão */
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: background 0.3s ease;
}

.faq-question span {
    font-weight: 700;
    color: var(--nova-blue);
    font-size: 16px;
}

.faq-question i {
    color: var(--nova-orange);
    transition: 0.3s;
}

/* Quando o item está aberto */
.faq-item.active .faq-question {
    background-color: #fff; /* Muda para branco para separar da resposta */
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

/* A RESPOSTA - Aqui estava o erro */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    background-color: #fff;
    transition: max-height 0.4s cubic-bezier(0, 1, 0, 1);
}

.faq-item.active .faq-answer {
    max-height: 1000px; /* Aumentado para textos longos */
    transition: max-height 0.4s ease-in-out;
}

/* Conteúdo interno da resposta com o estilo preservado */
.answer-content {
    padding: 20px 25px 30px 25px; /* Padding generoso para não ficar colado */
    color: var(--text-light);
    line-height: 1.6;
    font-size: 15px;
    border-top: 1px solid #f1f1f1; /* Linha sutil separando a pergunta da resposta */
}



.answer-content p {
    margin-bottom: 15px;
}

.answer-content p:last-child {
    margin-bottom: 0;
}
/* ESPAÇAMENTO SECTIONS */


/* 1. Espaçador Simples (Invisível) */
.section-spacer {
    display: block;
    width: 100%;
    height: 100px; /* Altura padrão */
    clear: both;
}

/* 2. Espaçador (Apenas o bloco de respiro, sem a linha) */
.section-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 60px 0; /* Mantém o seu padding original */
}

/* O ::after foi removido daqui para eliminar a linha */

/* 3. Variações de Tamanho */
.spacer-sm { height: 50px; }
.spacer-md { height: 100px; }
.spacer-lg { height: 150px; }


/* SECTION GOOGLE RATING */
.google-review-section {
    padding: 60px 0;
    text-align: center;
}

.rating-wrapper-nova {
    background: #ffffff;
    border: 1px solid #eee;
    border-radius: 16px;
    padding: 40px;
    display: inline-block;
    min-width: 320px;
    box-shadow: 0 10px 30px rgba(0, 51, 153, 0.05); /* Sombra leve no seu azul */
    transition: transform 0.3s ease;
}

.rating-wrapper-nova:hover {
    transform: translateY(-5px);
}

.google-icon {
    margin-bottom: 15px;
}

.rating-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    color: var(--nova-blue);
    margin-bottom: 15px;
}

.rating-text strong {
    font-weight: 800;
    color: var(--nova-orange);
}

.stars-outer {
    position: relative;
    display: inline-block;
    font-size: 35px;
    color: #e0e0e0;
    letter-spacing: 2px;
}

.stars-inner {
    position: absolute;
    top: 0;
    left: 0;
    white-space: nowrap;
    overflow: hidden;
    width: 0; /* Começa em 0 */
    color: #fbbc04;
}

/* Corrigido: O seletor deve ser o mesmo que o script adiciona (.rating-wrapper-nova) */
.rating-wrapper-nova.visible .stars-inner {
    animation: fillStarsNova 2s ease-in-out forwards;
}

.btn-google {
    display: inline-block;
    margin-top: 25px;
    font-size: 14px;
    color: var(--nova-blue);
    text-decoration: none;
    font-weight: 700;
    border-bottom: 2px solid var(--nova-orange);
    padding-bottom: 2px;
    transition: 0.3s;
}

.btn-google:hover {
    color: var(--nova-orange);
    border-color: var(--nova-blue);
}

@keyframes fillStarsNova {
    from { width: 0; }
    to { width: 100%; }
}

/* Responsivo */
@media (max-width: 768px) {
    .rating-wrapper-nova {
        width: 90%;
        padding: 30px 20px;
    }
}




/* PAGINA CELULAR 5G */

/* Nova seção para a imagem de fundo, usando suas fontes e cores */
.hero-internet-modern-5g {
    background: linear-gradient(to right, rgba(10, 10, 221, 0.85), rgba(0, 0, 0, 0.3)), 
                url('../img/celular/header.jpg'); /* Use o caminho da sua imagem */
    background-size: cover;
    background-position: center;
    padding: 120px 0 160px 0; /* Espaço para o texto e para os cards encaixarem */
    color: #fff;
}

.hero-text-content h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 45px;
    font-weight: 800;
}

.hero-text-content h1 strong {
    color: var(--nova-orange); /* Usando sua variável de cor verde/orange */
}



/* SECTION HERO CELULAR 5G - VERSÃO SUAVE */
.hero-celular-modern {
    background-color: #FCFCFC;
    padding: 100px 0; /* Aumentei um pouco o respiro */
    overflow: hidden;
}

.hero-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

/* Estilo do Título com Revelação Suave */
.soft-reveal {
    font-family: 'Montserrat', sans-serif;
    font-size: 48px; /* Tamanho ajustado para 2 linhas */
    font-weight: 800;
    color: var(--nova-blue);
    line-height: 1.1;
    margin-bottom: 25px;
    
    /* Animação Suave */
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUpSmooth 1.2s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.soft-reveal span {
    color: var(--nova-orange); /* Destaque na segunda linha */
}

.hero-subtitle {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 35px;
    opacity: 0;
    transform: translateY(20px);
    /* Inicia a animação logo após o título começar */
    animation: fadeInUpSmooth 1s cubic-bezier(0.22, 1, 0.36, 1) forwards 0.4s;
}

/* Ajuste do Botão para acompanhar a suavidade */
.hero-left .btn-plan-solid {
    opacity: 0;
    animation: fadeInUpSmooth 1s cubic-bezier(0.22, 1, 0.36, 1) forwards 0.6s;
}

/* Imagem Flutuante (Mantida, pois é sutil) */
.img-hero-floating {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.08));
   
}


/* KEYFRAMES SUAVES */
@keyframes fadeInUpSmooth {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes floatPhone {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

/* Responsivo */
@media (max-width: 992px) {
    .hero-celular-modern { padding: 60px 0; }
    .hero-wrapper { flex-direction: column; text-align: center; }
    .soft-reveal { font-size: 32px; }
    .hero-right { order: 1; margin-bottom: 30px; }
    .hero-left { order: 2; }
}


/* SECTION STATS (BARRA DE NÚMEROS) */
.stats-bar {
    background-color: #fff;
    padding: 40px 0;
    border-top: 1px solid #f0f0f0; /* Linha sutil para separar do hero */
}

.stats-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

/* Título à esquerda */
.stats-title h2 {
    font-family: 'Montserrat', sans-serif;
    color: var(--nova-blue);
    font-size: 28px;
    font-weight: 800;
    line-height: 1.2;
    margin: 0;
}

/* Grid de números à direita */
.stats-grid {
    display: flex;
    align-items: center;
    gap: 30px;
    flex-grow: 1;
    max-width: 700px;
}

.stat-item {
    flex: 1;
}

/* Estilo dos Números */
.stat-number {
    font-family: 'Montserrat', sans-serif;
    font-size: 42px;
    font-weight: 800;
    color: var(--nova-orange);
    line-height: 1;
}

.stat-number span {
    font-size: 24px;
    margin-left: 2px;
}

/* Rótulo (Clientes/Cidades) */
.stat-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--nova-orange);
    margin-bottom: 5px;
}

/* Descrição pequena */
.stat-description {
    font-size: 13px;
    color: #666; /* Cor cinza para a descrição */
    line-height: 1.4;
    margin: 0;
}

/* Divisória Vertical Cinza */
.stat-divider {
    width: 1px;
    height: 80px;
    background-color: #ddd;
}

/* Responsivo para Celular */
@media (max-width: 992px) {
    .stats-wrapper {
        flex-direction: column;
        text-align: center;
    }
    
    .stats-grid {
        flex-direction: column;
        gap: 40px;
    }
    
    .stat-divider {
        width: 50px;
        height: 1px;
        margin: 0 auto;
    }
}


/* SECTION ESIM STEPS */
.esim-steps {
    padding: 80px 0;
    background-color: #fff;
    font-family: 'Montserrat', sans-serif;
}

.esim-title {
    color: var(--nova-blue); /* Cor azul marinho */
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 50px;
    line-height: 1.2;
}

.esim-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.esim-card {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 40px 30px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.esim-icon {
    font-size: 40px;
    color: var(--nova-orange);
    margin-bottom: 20px;
}

.esim-card h3 {
    color: var(--nova-blue);
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
}

.divider-orange {
    width: 40px;
    height: 2px;
    background-color: var(--nova-orange);
    margin: 0 auto 20px;
}

.esim-card p {
    color: #666;
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 25px;
    min-height: 72px; /* Mantém os cards com a mesma altura de texto */
}

.esim-link {
    color: var(--nova-orange);
    text-decoration: none;
    font-weight: 700;
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: opacity 0.2s;
}

.esim-link:hover {
    opacity: 0.8;
}

/* Responsivo */
@media (max-width: 992px) {
    .esim-grid {
        grid-template-columns: 1fr;
    }
    .esim-title {
        text-align: center;
        font-size: 28px;
    }
}





/* PÁGINA TELEFONE */ 


/* Nova seção para a imagem de fundo, usando suas fontes e cores */
.hero-internet-modern-telefone {
    background: linear-gradient(to right, rgba(10, 10, 221, 0.85), rgba(0, 0, 0, 0.3)), 
                url('../img/telefone/header.jpg'); /* Use o caminho da sua imagem */
    background-size: cover;
    background-position: center;
    padding: 120px 0 160px 0; /* Espaço para o texto e para os cards encaixarem */
    color: #fff;
}

.hero-text-content h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 45px;
    font-weight: 800;
}

.hero-text-content h1 strong {
    color: var(--nova-orange); /* Usando sua variável de cor verde/orange */
}






/* PAGINA TV */



/* Nova seção para a imagem de fundo, usando suas fontes e cores */
.hero-internet-modern-tv {
    background: linear-gradient(to right, rgba(10, 10, 221, 0.85), rgba(0, 0, 0, 0.3)), 
                url('../img/tv/header.jpg'); /* Use o caminho da sua imagem */
    background-size: cover;
    background-position: center;
    padding: 120px 0 160px 0; /* Espaço para o texto e para os cards encaixarem */
    color: #fff;
}

.hero-text-content h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 45px;
    font-weight: 800;
}

.hero-text-content h1 strong {
    color: var(--nova-orange); /* Usando sua variável de cor verde/orange */
}



/* --- Seção de Planos V3 --- */
.plans-area-v3 {
    padding: 80px 0;
    background-color: #fff;
}

.plans-header-main-v3 {
    margin-bottom: 40px;
}

.plans-header-main-v3 h2 {
    color: var(--nova-blue);
    font-size: 32px;
    font-weight: 800;
}

.plans-tabs-v3 {
    display: flex;
    gap: 40px;
    border-bottom: 1px solid #eee;
    margin-bottom: 50px;
}

.tab-item-v3 {
    padding: 15px 0;
    font-size: 15px;
    font-weight: 600;
    color: #999;
    position: relative;
    text-transform: uppercase;
}

.tab-item-v3.active {
    color: var(--nova-blue);
}

.tab-item-v3.active::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--nova-blue);
}

/* Grid e Container de Scroll */
.plans-container-relative-v3 {
    position: relative;
    padding: 0 40px; /* Espaço para as setas */
}

.plans-grid-refined-v3 {
    display: flex !important;
    flex-wrap: nowrap !important;
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 20px 5px;
    align-items: stretch; 
    scrollbar-width: none;
}


.plans-grid-refined-v3::-webkit-scrollbar {
    display: none; /* Chrome/Safari */
}

/* Card V3 */
.plan-card-v3 {
    min-width: 320px;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 16px;
    padding: 30px;
    display: flex !important;
    flex-direction: column;
    transition: all 0.3s ease;
    position: relative;
}

.plan-card-v3:hover {
    box-shadow: 0 15px 30px rgba(0,0,0,0.05);
    transform: translateY(-5px);
}

/* Selos de Destaque V3 */
.best-offer-badge-v3 {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    color: #fff;
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    white-space: nowrap;
    z-index: 10;
}

.best-offer-badge-v3.tag-verde { background-color: var(--nova-orange); }
.best-offer-badge-v3.tag-azul { background-color: var(--nova-blue); }

/* Elementos Internos do Card */
.card-top-v3 .category {
    font-size: 10px;
    font-weight: 700;
    color: #bbb;
    text-transform: uppercase;
    display: block;
    margin-bottom: 15px;
}

.card-top-v3 .speed {
    color: var(--nova-blue);
    margin-bottom: 10px;
}

.card-top-v3 .speed strong {
    font-size: 48px;
    font-weight: 800;
    line-height: 1;
}

.card-middle-v3 {
    flex-grow: 1;
    margin-top: 20px;
    /* Adicione estas linhas abaixo: */
    display: flex;
    flex-direction: column;
}

.features-list-v3 {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
    flex-grow: 1; /* Faz a lista ocupar o espaço disponível antes do preço */
}

.features-list-v3 li {
    font-size: 13px;
    color: #666;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
}

.price-tag-v3 .final-price {
    display: flex;
    align-items: baseline;
    gap: 4px;
}

.card-bottom-v3 {
    margin-top: 25px;
}

/* Setas de Navegação */
.nav-arrow-v3 {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #fff;
    border: 1px solid #eee;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-arrow-v3.prev { left: 0; }
.nav-arrow-v3.next { right: 0; }
.nav-arrow-v3:hover { background: var(--nova-blue); color: #fff; }



/* como assistir */ 


/* --- Seção Como Assistir V3 --- */
.how-to-watch-v3 {
    padding: 80px 0;
    background-color: #FCFCFC; /* Um cinza bem leve para diferenciar da seção de planos */
}

.watch-header-v3 {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 40px;
}

.watch-title-v3 h2 {
    color: var(--nova-blue);
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 10px;
}

.watch-title-v3 p {
    color: #666;
    font-size: 16px;
}

/* Botão Assistir PC */
.btn-watch-pc-v3 {
    background-color: var(--nova-orange);
    color: #fff !important;
    padding: 12px 25px;
    border-radius: 8px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    transition: transform 0.2s;
}

.btn-watch-pc-v3:hover {
    transform: scale(1.05);
}

/* Grid de Dispositivos */
.device-grid-v3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.device-card-v3 {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    transition: all 0.3s ease;
    display: block;
}

.device-card-v3:hover {
    border-color: var(--nova-orange);
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

.device-icon-wrapper-v3 {
    background-color: #fafafa;
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.device-icon-v3 {
    width: 180px;
    height: 180px;
}

.device-info-v3 .device-platforms {
    font-size: 12px;
    color: #999;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 5px;
}

.device-info-v3 h4 {
    color: var(--text-dark);
    font-size: 18px;
    font-weight: 600;
}

/* Responsivo */
@media (max-width: 768px) {
    .watch-header-v3 {
        flex-direction: column;
        align-items: flex-start;
    }
}


/* Modal */ 

/* --- Estrutura de Modais Premium V3 --- */
.currencyMenu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 1;
    visibility: visible;

}

.currencyMenu.is-hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.currencyMenu__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.8); /* Azul marinho escuro profundo */
    backdrop-filter: blur(8px); /* Desfoque mais elegante */
}

.currencyMenu__content {
    position: relative;
    width: 95%;
    max-width: 550px;
    max-height: 80vh;
    background: #ffffff;
    border-radius: 24px; /* Bordas bem arredondadas modernas */
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    transform: scale(1);
    transition: transform 0.3s ease;
}

.currencyMenu.is-hidden .currencyMenu__content {
    transform: scale(0.95);
}

/* Cabeçalho do Modal */
.modal-header-v3 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 25px 30px;
    background: #fff;
    border-bottom: 1px solid #f1f5f9;
    z-index: 10;
}

.modal-header-v3 .text-20 {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--nova-blue);
    letter-spacing: -0.025em;
}

/* Botão Fechar (X) Customizado */
.btn-close-v3 {
    background: #f1f5f9;
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    color: #64748b;
}

.btn-close-v3:hover {
    background: #c3c3cb; /* Vermelho clarinho no hover */
    color: #6a6a6a;
    transform: rotate(90deg);
}

/* Conteúdo com scroll elegante */
.modal-scroll {
    overflow-y: auto;
    padding: 30px;
    scrollbar-width: thin;
    scrollbar-color: #e2e8f0 transparent;
}

.modal-scroll::-webkit-scrollbar {
    width: 5px;
}

.modal-scroll::-webkit-scrollbar-thumb {
    background: #e2e8f0;
    border-radius: 10px;
}

/* Estilização dos itens internos (Logos e Textos) */
.modal-step-item {
    background: #f8fafc;
    border-radius: 16px;
    padding: 20px;
    margin-bottom: 20px;
    border: 1px solid #f1f5f9;
}

.modal-step-item img {
    height: 35px !important; /* Logos menores e elegantes */
    width: auto;
    margin-bottom: 15px;
    display: block;
}

.modal-step-item .text-12 {
    font-weight: 700;
    color: var(--nova-orange);
    text-transform: uppercase;
    font-size: 11px;
    margin-bottom: 8px;
    display: block;
}


.modal-step-item .text-red {
    font-weight: 700;
    color: var(--text-red);
    text-transform: uppercase;
    font-size: 11px;
    margin-bottom: 8px;
    display: block;
}

.modal-step-item p {
    font-size: 14px;
    color: #475569;
    line-height: 1.6;
    margin-bottom: 5px;
}

.modal-step-item b {
    color: var(--nova-blue);
}


/* --- Seção de Canais V3 --- */
.channels-section-v3 {
    position: relative;
    padding: 150px 0;
    background-image: url('../img/tv/header-premiere.jpg'); 
    background-attachment: fixed; /* Efeito Parallax */
    background-size: cover;
    background-position: center;
    color: #fff;
    text-align: center;
}

/* Camada escura sobre a imagem de fundo */
.channels-overlay-v3 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4); /* Ajuste a opacidade conforme necessário */
    z-index: 1;
}

.channels-section-v3 .container {
    position: relative;
    z-index: 2; /* Garante que o conteúdo fique acima do overlay */
}

.channels-header-v3 h2 {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 10px;
    color: #fff;
}

.channels-header-v3 p {
    font-size: 18px;
    opacity: 0.8;
    margin-bottom: 50px;
}




/* Grid de 5 colunas */
/* Substitui o channels-grid-v3 */
.channel-single-wrapper-v3 {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 1000px; /* Mantém a largura máxima para não estourar no desktop */
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.channel-single-wrapper-v3 img {
    max-width: 100%; /* Garante que a imagem se ajuste ao celular */
    height: auto;
    display: block;
    /* Removido: background, border, padding e filtros */
}

/* Responsividade: Celular */
@media (max-width: 768px) {
    .channels-section-v3 {
        padding: 50px 0;
        background-attachment: scroll;
    }
    
    .channel-single-wrapper-v3 {
        padding: 0 20px; /* Margem lateral no mobile */
    }
}



/* ===== PÁGINA 2 VIA DE BOLETO ================== */



/* Nova seção para a imagem de fundo, usando suas fontes e cores */
.hero-internet-modern-2via {
    background: linear-gradient(to right, rgba(10, 10, 221, 0.85), rgba(0, 0, 0, 0.3)), 
                url('../img/2via/header.jpg'); /* Use o caminho da sua imagem */
    background-size: cover;
    background-position: center;
    padding: 120px 0 160px 0; /* Espaço para o texto e para os cards encaixarem */
    color: #fff;
}

.hero-text-content h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 45px;
    font-weight: 800;
}

.hero-text-content h1 strong {
    color: var(--nova-orange); /* Usando sua variável de cor verde/orange */
}




/* --- SEÇÃO 2ª VIA DE FATURA --- */
.invoice-section {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.invoice-header {
    text-align: center;
    margin-bottom: 50px;
}

.invoice-header h2 {
    color: var(--nova-blue);
    font-size: 32px;
    font-weight: 800;
}

.invoice-header h2 strong {
    color: var(--nova-orange);
}

.invoice-header p {
    color: var(--text-light);
    font-size: 16px;
    margin-top: 10px;
}

/* Grid similar ao seu plans-grid-refined */
.invoice-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.invoice-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.invoice-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 51, 153, 0.1);
}

/* Destaque para a opção central, seguindo seu estilo 'featured' */
.invoice-card.featured {
    border: 2px solid var(--nova-blue);
}

.invoice-badge {
    position: absolute;
    top: -12px;
    background: var(--nova-blue);
    color: #fff;
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
}

.invoice-icon {
    font-size: 45px;
    color: var(--nova-orange);
    margin-bottom: 20px;
}

.invoice-card h3 {
    color: var(--text-dark);
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
}

.invoice-card p {
    font-size: 14px;
    color: #888;
    line-height: 1.6;
    margin-bottom: 25px;
    flex-grow: 1;
}


/* --- ESTILO DO MODAL 2ª VIA --- */
.modal-custom {
    display: none; /* Escondido por padrão */
    position: fixed;
    z-index: 99999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    align-items: center;
    justify-content: center;
}

.modal-content-v3 {
    background: #fff;
    width: 90%;
    max-width: 450px;
    border-radius: 16px;
    position: relative;
    padding: 30px;
    border-top: 6px solid var(--nova-orange);
    animation: modalFadeIn 0.3s ease-out;
}

@keyframes modalFadeIn {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

.close-modal {
    position: absolute;
    right: 20px;
    top: 15px;
    font-size: 28px;
    color: #999;
    cursor: pointer;
}

.modal-header-v3 {
    text-align: center;
    margin-bottom: 25px;
}

.modal-header-v3 i {
    font-size: 40px;
    color: var(--nova-blue);
    margin-bottom: 10px;
}

.modal-header-v3 h3 {
    color: var(--nova-blue);
    font-weight: 800;
    margin-bottom: 5px;
}

/* Box de Informações */
.invoice-info-box {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 12px;
    margin-bottom: 20px;
}

.info-line {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    font-size: 14px;
}

.info-line .label { color: var(--text-light); }
.info-line .value { font-weight: 700; color: var(--text-dark); }
.info-line.total .value { color: var(--nova-orange); font-size: 16px; }

/* Estilo da Linha Digitável */
.barcode-wrapper {
    background: #fff;
    border: 2px dashed #ddd;
    padding: 15px;
    border-radius: 10px;
    text-align: center;
    margin-bottom: 25px;
}

.barcode-label {
    font-size: 11px;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--nova-blue);
    display: block;
    margin-bottom: 5px;
}

.barcode-code {
    font-family: 'monospace';
    font-size: 15px;
    color: var(--text-dark);
    word-break: break-all;
    line-height: 1.4;
}

/* Botão Copiar */
.btn-copy-v3 {
    width: 100%;
    background: var(--nova-orange);
    color: #fff;
    border: none;
    padding: 15px;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    transition: 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-copy-v3:hover {
    background: var(--nova-blue);
    transform: scale(1.02);
}




.barcode-code {
    /* Fonte monoespaçada para facilitar conferência de números */
    font-family: 'Courier New', Courier, monospace; 
    font-size: 17px;
    font-weight: 700;
    color: var(--nova-blue);
    word-break: break-all;
    letter-spacing: 1px;
    padding: 10px 0;
}



.doc-switch-container {
    display: flex;
    justify-content: center;
    margin-bottom: 15px;
}

.doc-switch {
    position: relative;
    display: flex;
    background: #e2e8f0; /* Fundo cinza claro */
    border-radius: 50px;
    padding: 4px;
    width: 100%;
    max-width: 200px; /* Ajuste o tamanho conforme preferir */
}

.doc-switch input {
    display: none; /* Esconde o rádio padrão */
}

.doc-switch label {
    flex: 1;
    z-index: 2;
    cursor: pointer;
    text-align: center;
    font-size: 12px;
    font-weight: 700;
    color: #64748b;
    padding: 8px 0;
    transition: color 0.3s ease;
}

/* Texto selecionado fica branco */
.doc-switch input:checked + label {
    color: #fff;
}

/* O fundo que desliza (pílula) */
.doc-switch-selection {
    position: absolute;
    z-index: 1;
    top: 4px;
    left: 4px;
    width: calc(50% - 4px);
    height: calc(100% - 8px);
    background: var(--nova-blue, #004691); /* Cor principal da sua marca */
    border-radius: 50px;
    transition: transform 0.3s ease;
}

/* Movimentação da pílula conforme a seleção */
#switch-cnpj:checked ~ .doc-switch-selection {
    transform: translateX(100%);
}


/* Botões baseados no seu .btn-plan-outline e .btn-plan-solid */
.btn-invoice {
    flex: 1; 
    max-width: 160px; /* Limita a largura para não esticar demais */
    height: 55px;    /* Altura fixa igual ao botão Próximo */
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 0 20px !important; /* Reset de padding */
    border-radius: 50px;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    
    /* Estilo Visual */
    background: #f5f5f5 !important;
    color: #00a520 !important; /* Verde da sua marca conforme a imagem */
    border: 2px solid #00a520 !important;
}

.btn-invoice:hover {
    background: #e8f5e9 !important;
    transform: translateY(-2px);
}

.btn-invoice-solid {
    display: block;
    width: 100%;
    padding: 12px;
    background: var(--nova-orange);
    color: #fff;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 13px;
    transition: all 0.3s;
}

.btn-invoice-solid:hover {
    background: var(--nova-blue);
    transform: scale(1.02);
}

/* Responsivo para Mobile */
@media (max-width: 992px) {
    .invoice-grid {
        grid-template-columns: 1fr;
        padding: 0 20px;
    }
}




/* ================= APP NOVA ================= */



.app-nova {
    padding: 100px 0;
    
}

.app-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

/* LEFT */
.app-left {
    flex: 1;
}

.app-left h2 {
    font-size: 42px;
    font-weight: 800;
    color: var(--nova-blue);
    margin-bottom: 40px;
}

.app-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px 50px;
}

.feature-item h4 {
    font-size: 16px;
    font-weight: 700;
    color: #333;
    position: relative;
    margin-bottom: 8px;
}

/* barrinha laranja */
.feature-item h4::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--nova-orange);
    margin-top: 6px;
}

.feature-item p {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
}

/* RIGHT */
.app-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

/* IMAGEM */
.app-illustration {
    max-width: 800px;
    position: relative;
    margin-bottom: 25px;
}


.app-illustration img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;

    /* animação */
}

/* animação leve */
@keyframes floatAvatar {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-12px); }
    100% { transform: translateY(0px); }
}

/* BOTÕES */
.app-buttons {
    display: flex;
    gap: 15px;
}

.store-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    border: 1px solid #ccc;
    border-radius: 10px;
    padding: 10px 16px;
    font-size: 12px;
    color: #000;
    background: #fff;
    transition: 0.3s;
}

.store-btn i {
    font-size: 20px;
}

.store-btn strong {
    font-size: 13px;
}

.store-btn:hover {
    border-color: var(--nova-blue);
    transform: translateY(-2px);
}

/* RESPONSIVO */


@media (max-width: 992px) {

    .app-nova {
        padding: 60px 0;
    }

    .app-wrapper {
        flex-direction: column;
        gap: 40px;
    }

    /* TEXTO alinhado à esquerda (melhor UX) */
    .app-left {
        width: 100%;
        text-align: left;
    }

    .app-left h2 {
        font-size: 28px;
        line-height: 1.3;
        margin-bottom: 25px;
    }

    /* features mais compactas */
    .app-features {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .feature-item h4 {
        font-size: 15px;
    }

    .feature-item p {
        font-size: 13px;
    }

    /* barrinha menor no mobile */
    .feature-item h4::after {
        width: 40px;
    }

    /* IMAGEM centralizada (fica mais bonito) */
    .app-right {
        width: 100%;
        align-items: center;
    }

    .app-illustration {
        max-width: 280px;
        margin: 20px auto;
    }

    /* BOTÃO com mais presença */
    .app-cta {
        margin-top: 25px;
        display: flex;
    }

    .btn-app {
        width: 100%;
        text-align: center;
        padding: 16px;
        font-size: 15px;
        border-radius: 10px;
    }
}


    
    /* CTA */
.app-cta {
    margin-top: 30px;
}

.btn-app {
    display: inline-block;
    background: var(--nova-blue);
    color: #fff;
    padding: 14px 28px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
}

/* hover elegante */
.btn-app:hover {
    background: #0d2a5c; /* um pouco mais escuro */
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}



/* ===== PÁGINA AJUDA ================== */



/* Nova seção para a imagem de fundo, usando suas fontes e cores */
.hero-internet-modern-ajuda {
    background: linear-gradient(to right, rgba(10, 10, 221, 0.85), rgba(0, 0, 0, 0.3)), 
                url('../img/ajuda/header.jpg'); /* Use o caminho da sua imagem */
    background-size: cover;
    background-position: center;
    padding: 120px 0 160px 0; /* Espaço para o texto e para os cards encaixarem */
    color: #fff;
}

.hero-text-content h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 45px;
    font-weight: 800;
}

.hero-text-content h1 strong {
    color: var(--nova-orange); /* Usando sua variável de cor verde/orange */
}





/* ================= HELP CARDS ================= */

.help-cards {
    padding: 80px 0;
    background: #fff;
}

.help-header {
    margin-bottom: 40px;
}

.help-header h2 {
    font-size: 32px;
    font-weight: 800;
    color: var(--nova-blue);
    margin-bottom: 10px;
}

.help-header p {
    color: #666;
    font-size: 15px;
}

/* GRID */
.help-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

/* CARD */
.help-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 14px;
    padding: 25px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.help-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    border-color: var(--nova-orange);
}

/* IMAGEM */
.help-card img {
    width: 150px;
    height: 150px;
    object-fit: contain;
    margin-bottom: 15px;
}

/* TITULO */
.help-card h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--nova-blue);
}

/* RESPONSIVO */
@media (max-width: 992px) {
    .help-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

    .help-card {
        padding: 20px;
    }
}



.wifi-grid {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.wifi-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    cursor: pointer;
    overflow: hidden;
    transition: 0.3s;
}

.wifi-card:hover {
    border-color: var(--nova-blue);
}

/* HEADER */
.wifi-card-header {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px;
}

.wifi-card-header span {
    font-size: 20px;
}

.wifi-card-header h4 {
    font-size: 14px;
    font-weight: 700;
    color: var(--nova-blue);
}

/* CONTEÚDO (escondido) */
.wifi-card-content {
    max-height: 0;
    overflow: hidden;
    padding: 0 15px;
    font-size: 13px;
    color: #555;
    transition: all 0.3s ease;
}

/* ABERTO */
.wifi-card.active .wifi-card-content {
    max-height: 9999px;
    padding: 0 15px 15px;
}


.wifi-list {
    padding-left: 18px;
    margin-top: 8px;
}

.wifi-list li {
    margin-bottom: 6px;
    line-height: 1.4;
}

/* CARD NOTA */
.wifi-note {
    background: #f1f5f9;
   
    padding: 15px;
    border-radius: 10px;
    margin-top: 15px;
    font-size: 13px;
    color: #444;
}

/* BOLINHAS */
.dot1 {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin: 0 4px;
}

/* CORES */
.dot-green {
    background: #22c55e;
}

.dot-red {
    background: #ef4444;
}

.dot-orange {
    background: orange;
}

.dot-blue {
    background: #2691fc;
}



/* PISCANDO */
.blink {
    animation: blink 1s infinite;
}

@keyframes blink {
    0% { opacity: 1; }
    50% { opacity: 0.2; }
    100% { opacity: 1; }
}



.wifi-note-danger {
    background: #fef2f2;
    border-left: 4px solid #ef4444;
    color: #7f1d1d;
}

.wifi-card-header span {
    color: var(--nova-blue);
}



/*PAGINA MEUS PEDIDOS */


/* Nova seção para a imagem de fundo, usando suas fontes e cores */
.hero-internet-modern-meuspedidos {
    background: linear-gradient(to right, rgba(10, 10, 221, 0.85), rgba(0, 0, 0, 0.3)), 
                url('../img/meuspedidos/header.jpg'); /* Use o caminho da sua imagem */
    background-size: cover;
    background-position: center;
    padding: 120px 0 160px 0; /* Espaço para o texto e para os cards encaixarem */
    color: #fff;
}

.hero-text-content h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 45px;
    font-weight: 800;
}

.hero-text-content h1 strong {
    color: var(--nova-orange); /* Usando sua variável de cor verde/orange */
}


/* --- Seção de Consulta Estilo Dashboard --- */
.help-cards {
    padding: 60px 20px;
    background-color: #f8fafd;
    display: flex;
    justify-content: center;
    font-family: 'Montserrat', sans-serif;
}

.dashboard-wrapper {
    display: flex;
    max-width: 1200px;
    width: 100%;
    gap: 30px;
    align-items: flex-start;
}

/* --- Coluna Esquerda: Formulário --- */
.help-form-side {
    flex: 0 0 380px;
    background: #ffffff;
    padding: 40px;
    border-radius: 28px;
    box-shadow: 0 15px 35px rgba(0, 51, 153, 0.06);
    border: 1px solid #edf2f7;
}

.help-form-side h3 {
    color: var(--nova-blue);
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 25px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
}

.form-group label {
    font-size: 11px;
    font-weight: 700;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-left: 5px;
}

.input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.input-wrapper i {
    position: absolute;
    left: 18px;
    font-size: 18px;
    color: #cbd5e0;
    transition: all 0.3s ease;
    pointer-events: none;
    z-index: 1;
}


/* Estado desabilitado para o wrapper */
.input-wrapper.disabled {
    background-color: #f4f4fd; /* Fundo cinza claro */
    cursor: not-allowed;       /* Cursor de bloqueio */
    border-radius: 16px;       /* Mantendo o padrão do seu tema */
    opacity: 0.7;              /* Leve transparência */
}

/* Garante que o input dentro do wrapper desabilitado também mude */
.input-wrapper.disabled input {
    background-color: transparent !important;
    cursor: not-allowed;
    color: #999;               /* Texto cinza */
    pointer-events: none;      /* Impede cliques no input */
}

/* Opcional: deixar o ícone cinza também */
.input-wrapper.disabled i {
    color: #ccc !important;
}












.help-form-side input {
    width: 100%;
    padding: 16px 20px 16px 52px;
    border: 2px solid #edf2f7;
    border-radius: 16px;
    font-size: 15px;
    color: var(--text-dark);
    background-color: #fcfdfe;
    transition: all 0.3s ease;
    outline: none;
}

.help-form-side input:focus {
    border-color: var(--nova-blue);
    background-color: #fff;
    box-shadow: 0 0 0 5px rgba(0, 51, 153, 0.08);
}

/* O ícone brilha quando o input ganha foco */
.help-form-side input:focus ~ i {
    color: var(--nova-blue);
}

.btn-form-primary {
    width: 100%;
    background-color: var(--nova-orange);
    color: #fff;
    border: none;
    padding: 18px;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(255, 102, 0, 0.2);
}

.btn-form-primary:hover {
    transform: translateY(-2px);
    filter: brightness(1.1);
    box-shadow: 0 8px 25px rgba(255, 102, 0, 0.3);
}

/* --- Coluna Direita: Dados da Consulta --- */
.help-result-side {
    flex: 1;
    background: #ffffff;
    padding: 40px;
    border-radius: 28px;
    box-shadow: 0 15px 35px rgba(0, 51, 153, 0.06);
    border: 1px solid #edf2f7;
    display: none; /* Ativado via JS */
}

.result-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    border-bottom: 2px solid #f1f5f9;
    padding-bottom: 20px;
    margin-bottom: 30px;
}

.protocol-badge {
    color: var(--nova-blue);
    font-weight: 800;
    font-size: 18px;
    display: block;
}

.update-date {
    font-size: 12px;
    color: #94a3b8;
    text-align: right;
}

.info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.info-box h4 {
    font-size: 11px;
    text-transform: uppercase;
    color: #94a3b8;
    margin: 0 0 8px 0;
}

.info-box p {
    font-size: 15px;
    font-weight: 700;
    color: #2d3748;
    margin: 0;
}

.info-box span {
    font-size: 13px;
    color: #64748b;
}

/* Stepper (Ilustração de Passos) */
.stepper-container {
    margin: 40px 0;
    display: flex;
    justify-content: space-between;
    position: relative;
}

.stepper-container::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: #e2e8f0;
    z-index: 0;
}

.step {
    position: relative;
    z-index: 1;
    background: #fff;
    padding: 0 10px;
    text-align: center;
    width: 100px;
}

.step-circle {
    width: 40px;
    height: 40px;
    background: #e2e8f0;
    border-radius: 50%;
    margin: 0 auto 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #94a3b8;
    font-weight: 800;
    border: 4px solid #fff;
    transition: 0.3s;
}

.step.active .step-circle {
    background: var(--nova-orange);
    color: #fff;
}

.step.active p {
    color: var(--nova-orange);
    font-weight: 700;
}

.step p {
    font-size: 12px;
    margin: 0;
    color: #94a3b8;
}

/* Legenda */
.status-legend {
    background: #f8fafc;
    padding: 20px;
    border-radius: 16px;
    border: 1px dashed #cbd5e0;
}

.legend-item { font-size: 13px; margin-bottom: 5px; color: #475569; }
.legend-item b { color: var(--nova-blue); }

/* Responsividade */
/* --- Ajuste Global para mobile --- */
@media (max-width: 768px) {
    .help-cards {
        padding: 20px 10px; /* Reduz margem externa */
    }

    .help-form-side, .help-result-side {
        padding: 25px 15px; /* Reduz respiro interno para caber mais conteúdo */
        width: 100%;
        max-width: 100%;
    }

    /* Mantém o grid em 2 colunas como na sua Imagem 2 */
    .info-grid {
        display: grid;
        grid-template-columns: 1fr 1fr; /* Força 2 colunas */
        gap: 15px;
        text-align: left;
    }

    /* Ajuste do Header do Pedido para não empilhar feio */
    .result-header {
        display: flex;
        flex-direction: row; /* Mantém lado a lado */
        justify-content: space-between;
        align-items: flex-start;
        margin-bottom: 20px;
    }

    .update-date {
        font-size: 11px;
        text-align: right;
        min-width: 100px;
    }

    .protocol-badge {
        font-size: 16px;
    }

    /* Ajuste do Stepper para telas pequenas */
    .stepper-container {
        margin: 30px 0;
    }
    
    .step p {
        font-size: 10px; /* Texto menor para não quebrar linha */
    }

    .step-circle {
        width: 35px;
        height: 35px;
    }

    /* Ajuste da Legenda */
    .status-legend {
        padding: 15px;
    }
}

/* Garante que o container pai não tenha overflow */
.dashboard-wrapper {
    width: 100%;
    overflow-x: hidden;
    display: flex;
    flex-wrap: wrap; /* Permite que o card de resultado desça se necessário */
    gap: 20px;
}




/* Estado Padrão (Cinza) */
.step-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #e2e8f0;
    color: #64748b;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 8px;
    font-weight: bold;
    transition: all 0.3s ease;
}

/* Bolinha Verde (Sucesso/Concluído) */
.step.active .step-circle {
    background-color: #22c55e !important;
    color: white !important;
}

/* Bolinha Amarela (Aguardando/Processando) */
.step.status-waiting .step-circle {
    background-color: #eab308 !important;
    color: white !important;
}

/* Bolinhas Vermelhas (Cancelado/Sem Viabilidade) */
.step.status-cancelled .step-circle {
    background-color: #ef4444 !important;
    color: white !important;
}

/* Estilo do container para alinhar horizontalmente */
.stepper-container {
    display: flex;
    justify-content: space-between;
    margin: 30px 0;
    position: relative;
}






/*PAGINA SPEEDTEST */



/* Nova seção para a imagem de fundo, usando suas fontes e cores */
.hero-internet-modern-speedtest {
    background: linear-gradient(to right, rgba(10, 10, 221, 0.85), rgba(0, 0, 0, 0.3)), 
                url('../img/speedtest/header.jpg'); /* Use o caminho da sua imagem */
    background-size: cover;
    background-position: center;
    padding: 120px 0 160px 0; /* Espaço para o texto e para os cards encaixarem */
    color: #fff;
}

.hero-text-content h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 45px;
    font-weight: 800;
}

.hero-text-content h1 strong {
    color: var(--nova-orange); /* Usando sua variável de cor verde/orange */
}


.speedtest-container {
    max-width: 800px;
    margin: 0 auto;
    background: #fff;
    padding: 20px;
    border-radius: 24px; /* Seguindo o padrão arredondado do seu formulário */
    box-shadow: 0 10px 40px rgba(0, 51, 153, 0.1);
    overflow: hidden;
    height: 500px;
}

.speedtest-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}


.nota-speed {
    background: #f1f5f9;
   
    padding: 15px;
    border-radius: 10px;
    margin-top: 15px;
    font-size: 13px;
    color: #444;
}



/*PAGINA INDIQUE PARA UM AMIGO */


.hero-internet-modern-indique {
    background: linear-gradient(to right, rgba(10, 10, 221, 0.85), rgba(0, 0, 0, 0.3)), 
                url('../img/indique/header.jpg'); /* Use o caminho da sua imagem */
    background-size: cover;
    background-position: center;
    padding: 120px 0 160px 0; /* Espaço para o texto e para os cards encaixarem */
    color: #fff;
}

.hero-text-content h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 45px;
    font-weight: 800;
}

.hero-text-content h1 strong {
    color: var(--nova-orange); /* Usando sua variável de cor verde/orange */
}








/*PAGINA STATUS */


.hero-internet-modern-status {
    background: linear-gradient(to right, rgba(10, 10, 221, 0.85), rgba(0, 0, 0, 0.3)), 
                url('../img/status/header.jpg'); /* Use o caminho da sua imagem */
    background-size: cover;
    background-position: center;
    padding: 120px 0 160px 0; /* Espaço para o texto e para os cards encaixarem */
    color: #fff;
}

.hero-text-content h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 45px;
    font-weight: 800;
}

.hero-text-content h1 strong {
    color: var(--nova-orange); /* Usando sua variável de cor verde/orange */
}



.nova-status-container {
    max-width: 850px;
    margin: 60px auto;
    font-family: 'Montserrat', sans-serif; /* Usando a fonte do seu Hero */
}

/* Card Principal com o degradê do seu Hero */
.nova-status-card-main {
    background: linear-gradient(135deg, var(--nova-blue) 0%, #001a4d 100%);
    padding: 50px 30px;
    border-radius: 24px;
    text-align: center;
    color: #fff;
    box-shadow: 0 20px 40px rgba(0, 51, 153, 0.2);
    margin-bottom: -40px; /* Sobreposição elegante */
    position: relative;
    z-index: 2;
}

.nova-status-card-main h1 {
    font-size: 32px;
    margin: 15px 0 5px 0;
    letter-spacing: -1px;
}

/* Animação de Pulse usando seu Verde (--nova-orange) */
.nova-pulse-container {
    position: relative;
    width: 60px;
    height: 60px;
    margin: 0 auto;
}

.nova-pulse-ring {
    border: 3px solid var(--nova-orange);
    border-radius: 50%;
    height: 100%;
    width: 100%;
    position: absolute;
    animation: nova-pulsate 2s ease-out infinite;
    opacity: 0;
}

.nova-pulse-dot {
    width: 16px;
    height: 16px;
    background: var(--nova-orange);
    border-radius: 50%;
    position: absolute;
    top: 22px;
    left: 22px;
    box-shadow: 0 0 15px var(--nova-orange);
}

@keyframes nova-pulsate {
    0% { transform: scale(0.1, 0.1); opacity: 0.0; }
    50% { opacity: 1.0; }
    100% { transform: scale(1.2, 1.2); opacity: 0.0; }
}

/* Grid de Serviços Estilo Glassmorphism */
.nova-services-grid {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 60px 30px 30px 30px;
    border-radius: 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.nova-service-item {
    background: #fff;
    padding: 15px 20px;
    border-radius: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 1px solid #eee;
    transition: all 0.3s ease;
}

.nova-service-item:hover {
    border-color: var(--nova-orange);
    transform: scale(1.02);
}

.service-info {
    display: flex;
    align-items: center;
    gap: 10px;
}

.dot-status {
    width: 8px;
    height: 8px;
    background: var(--nova-orange);
    border-radius: 50%;
}

.service-label {
    font-weight: 600;
    color: var(--nova-blue);
    font-size: 14px;
}

.status-text {
    font-size: 12px;
    font-weight: 700;
    color: var(--nova-orange);
    text-transform: uppercase;
}

.nova-status-footer {
    text-align: center;
    margin-top: 20px;
    font-size: 15px;
    color: #888;
}

/* Responsividade */
/* Responsividade Ajustada */
@media (max-width: 600px) {
    /* Ajuste do container para não colar nas bordas do celular */
    .nova-status-container {
        margin: 30px auto;
        padding: 0 15px;
    }

    /* Card Principal mais compacto no mobile */
    .nova-status-card-main {
        padding: 30px 20px; /* Reduzido de 50px */
        border-radius: 20px;
        margin-bottom: -30px; /* Ajuste na sobreposição */
    }

    .nova-status-card-main h1 {
        font-size: 24px; /* Reduzido de 32px */
    }

    .nova-status-card-main p {
        font-size: 14px;
    }

    /* Reduz o tamanho do ícone de pulso */
    .nova-pulse-container {
        width: 45px;
        height: 45px;
    }
    
    .nova-pulse-dot {
        top: 15px;
        left: 15px;
    }

    /* Grid em uma coluna e com menos respiro interno */
    .nova-services-grid {
        grid-template-columns: 1fr;
        padding: 50px 20px 20px 20px; /* Reduzido o padding superior */
    }

    .nova-service-item {
        padding: 12px 15px;
    }
    
    .service-label {
        font-size: 13px;
    }
}

/* Degradê Amarelo/Laranja para o Card Principal */
.status-warning {
    background: linear-gradient(135deg, #FFB300 0%, #FF6D00 100%) !important;
    box-shadow: 0 20px 40px rgba(255, 109, 0, 0.2) !important;
}

/* Ajustes no Pulse para Amarelo */
.warning-ring { border-color: #fff !important; }
.warning-dot { background: #fff !important; box-shadow: 0 0 15px #fff !important; }



.dot-status.alert {
    background: #FF6D00;
    box-shadow: 0 0 8px #FF6D00;
}

.status-text.warning {
    color: #FF6D00 !important;
}

/* Textos auxiliares */
.service-subtext {
    display: block;
    font-size: 10px;
    color: #888;
    margin-top: 2px;
    max-width: 250px;
}

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

.cep-label {
    display: block;
    font-size: 9px;
    font-family: monospace;
    background: #fdf2e9;
    padding: 2px 5px;
    border-radius: 4px;
    margin-top: 4px;
    color: #FF6D00;
}



/* PÁGINA - ASSINE (CHECKOUT) */





.hero-internet-modern-assine {
    background: linear-gradient(to right, rgba(10, 10, 221, 0.85), rgba(0, 0, 0, 0.3)), 
                url('../img/assine/header.jpg'); /* Use o caminho da sua imagem */
    background-size: cover;
    background-position: center;
    padding: 120px 0 160px 0; /* Espaço para o texto e para os cards encaixarem */
    color: #fff;
}

.rotate {
    animation: rotation 2s infinite linear;
    display: inline-block;
}

@keyframes rotation {
    from { transform: rotate(0deg); }
    to { transform: rotate(359deg); }
}



.checkout-section {
    padding: 80px 0;
    background-color: #f8fafd;
}

.checkout-wrapper {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

/* --- COLUNA ESQUERDA: FORMULÁRIO --- */
.checkout-form-side {
    flex: 1;
    background: #fff;
    padding: 50px;
    border-radius: 24px;
    box-shadow: 0 15px 35px rgba(0, 51, 153, 0.05);
    border: 1px solid #edf2f7;
}

.checkout-step-header {
    margin-bottom: 40px;
}

.step-badge {
    background: rgba(0, 51, 153, 0.08);
    color: var(--nova-blue);
    padding: 5px 12px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 15px;
}

.checkout-step-header h2 {
    color: var(--nova-blue);
    font-size: 32px;
    font-weight: 400;
}

.checkout-step-header h2 strong {
    font-weight: 800;
    color: var(--nova-orange);
}

.checkout-step-header p {
    color: var(--text-light);
    font-size: 15px;
    margin-top: 10px;
}

/* Estrutura de Linhas e Grupos */
.nova-form-checkout .form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.nova-form-checkout .form-group {
    flex: 1;
}

.flex-2 { flex: 2 !important; }

.nova-form-checkout .form-group label {
    display: block;
    font-size: 11px;
    font-weight: 700;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
    margin-left: 5px;
}

/* Divisor de Endereço */
.form-divider {
    margin: 40px 0 25px 0;
    position: relative;
    text-align: center;
}

.form-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 1px;
    background: #eee;
    z-index: 1;
}

.form-divider span {
    position: relative;
    z-index: 2;
    background: #fff;
    padding: 0 20px;
    font-size: 12px;
    font-weight: 700;
    color: #bbb;
    text-transform: uppercase;
}

/* Inputs e Wrappers */
.nova-form-checkout .input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
}

/* 2. Position the icon and keep it above the input background */
.nova-form-checkout .input-wrapper i {
    position: absolute;
    left: 18px; /* Fixed distance from left */
    font-size: 20px;
    color: #cbd5e0;
    z-index: 5;
    pointer-events: none;
    top: 50%;
    transform: translateY(-50%);
}

/* 3. The CRITICAL fix: Set a high padding-left */
.nova-form-checkout input, 
.nova-form-checkout select {
    width: 100%;
    /* 55px padding-left ensures text starts AFTER the icon at 18px + icon width */
    padding: 16px 20px 16px 55px !important; 
    border: 2px solid #edf2f7;
    border-radius: 16px;
    font-size: 15px;
    color: var(--text-dark);
    background-color: #fcfdfe;
    transition: all 0.3s ease;
    outline: none;
    box-sizing: border-box;
}

/* 4. Style for fields WITHOUT icons (Street, Number, etc.) */
/* This checks if the input is NOT a direct child of an .input-wrapper with an <i> */
.nova-form-checkout .form-group > input:not(.input-wrapper input) {
    padding-left: 20px !important;
}

/* 5. Handle focus states */
.nova-form-checkout input:focus {
    border-color: var(--nova-blue);
    background-color: #fff;
    box-shadow: 0 0 0 5px rgba(0, 51, 153, 0.08);
}

/* 6. Change icon color on focus */
.nova-form-checkout .input-wrapper input:focus + i,
.nova-form-checkout .input-wrapper i:has(+ input:focus) {
    color: var(--nova-blue);
}

/* Navegação e Botões */
.checkout-nav {
    display: flex;
    gap: 15px;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #edf2f7;
    align-items: center; /* Garante alinhamento vertical dos botões */
}
.main-checkout-btn {
    flex: 2; /* Ocupa mais espaço que o de voltar */
    height: 55px; /* Mesma altura do Voltar */
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 0 25px !important;
    background: #00a520 !important; /* Verde sólido */
    color: #fff !important;
    border-radius: 50px;
    border: none;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
}



.main-checkout-btn:hover {
    filter: brightness(1.1);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 165, 32, 0.3);
}

/* Etapa 4: Extras */
.extra-products-grid { margin-bottom: 25px; }

.form-label-sm {
    font-size: 13px;
    font-weight: 700;
    color: var(--nova-blue);
    margin-bottom: 15px;
    display: block;
}

.extra-card-v3 {
    margin-bottom: 12px;
    display: block;
    cursor: pointer;
}

.extra-card-v3 input { display: none; }

.extra-content {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: #fff;
    border: 2px solid #edf2f7;
    border-radius: 12px;
    transition: 0.3s;
}

.extra-content i {
    font-size: 24px;
    color: var(--nova-blue);
    background: #f8fafd;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
}

.extra-txt { flex: 1; }
.extra-txt strong { display: block; font-size: 14px; color: var(--text-dark); }
.extra-txt span { font-size: 12px; color: var(--nova-orange); font-weight: 600; }

.extra-check {
    width: 20px; height: 20px;
    border-radius: 50%;
    border: 2px solid #edf2f7;
    position: relative;
    transition: 0.3s;
}

.extra-card-v3 input:checked + .extra-content {
    border-color: var(--nova-orange);
    background: #fffcf9;
}

.extra-card-v3 input:checked + .extra-content .extra-check {
    background: var(--nova-orange);
    border-color: var(--nova-orange);
    box-shadow: inset 0 0 0 3px #fff;
}

/* Etapa 4: Verificação Humana */
.human-verify-box {
    margin-top: 20px;
    padding: 20px;
    background: #f8fafd;
    border-radius: 12px;
    border: 1px solid #edf2f7;
}

.captcha-mini { display: flex; gap: 15px; align-items: center; }

.captcha-img { 
    background: var(--nova-blue); 
    color: #fff; 
    padding: 8px 15px; 
    border-radius: 6px; 
    font-weight: bold;
    font-family: 'Courier New', Courier, monospace;
}

/* --- COLUNA DIREITA: CARRINHO --- */
.checkout-summary-side {
    width: 400px;
    position: sticky;
    top: 120px;
}

.summary-card {
    background: var(--nova-blue);
    border-radius: 24px;
    padding: 35px;
    color: #fff;
    box-shadow: 0 20px 40px rgba(0, 51, 153, 0.2);
}

.summary-card h3 { font-size: 20px; margin-bottom: 25px; }

.selected-plan-box {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 20px;
    margin-bottom: 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.plan-info-mini .speed strong { font-size: 28px; }
.plan-info-mini .speed span { font-size: 12px; }
.plan-info-mini p { font-size: 12px; opacity: 0.7; margin-top: 5px; }

.plan-price-mini { text-align: right; }
.plan-price-mini .value { font-size: 32px; font-weight: 800; }

.summary-details {
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.summary-line {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    margin-bottom: 12px;
}

.summary-total {
    margin-top: 20px;
    padding-top: 25px;
    border-top: 2px dashed rgba(255, 255, 255, 0.2);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.total-value { font-size: 28px; font-weight: 800; color: var(--nova-orange); }

.cart-help-box {
    margin-top: 25px;
    text-align: center;
}

.cart-help-box p { font-size: 14px; color: var(--text-light); margin-bottom: 5px; }

/* --- RESPONSIVIDADE --- */
@media (max-width: 992px) {
    .checkout-wrapper { flex-direction: column; }
    .checkout-summary-side { width: 100%; position: relative; top: 0; order: 1; }
    .checkout-form-side { order: 2; padding: 30px 20px; }
    .nova-form-checkout .form-row { flex-direction: column; gap: 15px; }
}


/* Animação de entrada suave das etapas */
.form-step {
    animation: fadeInStep 0.4s ease-out forwards;
}

@keyframes fadeInStep {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Animação de erro (balanço) */
.input-error {
    border-color: #ff4d4d !important;
    animation: shakeError 0.4s;
}

@keyframes shakeError {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-8px); }
    50% { transform: translateX(8px); }
    75% { transform: translateX(-8px); }
}

/* Feedback visual sutil no wrapper quando houver erro */
.input-wrapper.wrapper-error {
    border-color: #ff4d4d !important;
    box-shadow: 0 0 0 4px rgba(255, 77, 77, 0.1);
}



/* Animação Pulsante Suave */
@keyframes pulse-highlight {
    0% { box-shadow: 0 0 0 0 rgba(0, 123, 255, 0.4); border-color: #007bff; }
    70% { box-shadow: 0 0 0 10px rgba(0, 123, 255, 0); border-color: #007bff; }
    100% { box-shadow: 0 0 0 0 rgba(0, 123, 255, 0); }
}

.pulse-input {
    animation: pulse-highlight 2s ;
   
}

/* Ajuste para o Ponto de Referência ocupar a linha toda */
.form-row.full-width .form-group {
    flex: 0 0 100%;
    max-width: 100%;
}




/* PÁGINA - CONDIÇÕES E REGULAMENTOS */



.hero-internet-modern-condicoes {
    background: linear-gradient(to right, rgba(10, 10, 221, 0.85), rgba(0, 0, 0, 0.3)), 
                url('../img/condicoes/header.jpg'); /* Use o caminho da sua imagem */
    background-size: cover;
    background-position: center;
    padding: 120px 0 160px 0; /* Espaço para o texto e para os cards encaixarem */
    color: #fff;
}

.rotate {
    animation: rotation 2s infinite linear;
    display: inline-block;
}

@keyframes rotation {
    from { transform: rotate(0deg); }
    to { transform: rotate(359deg); }
}




/* ==========================================
   TABELA RESPONSIVA PARA FAQ (NOVA FIBRA)
   ========================================== */

.table-container {
    width: 100%;
    margin: 15px 0;
    overflow-x: auto;
}

.nova-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
    color: var(--text-dark, #333333);
    text-align: left;
    background-color: #ffffff;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.nova-table thead tr {
    background-color: var(--nova-blue, #003399);
    color: #ffffff;
    font-weight: 600;
}

.nova-table th, 
.nova-table td {
    padding: 12px 15px;
    border-bottom: 1px solid #eeeeee;
    vertical-align: top;
    line-height: 1.5;
}

/* Destaques internos do texto */
.highlight-date {
    font-weight: 600;
    color: var(--nova-blue, #003399);
}

.subtext-detail {
    display: block;
    margin-top: 6px;
    font-size: 13px;
    color: var(--text-light, #666666);
}

/* RESPONSIVIDADE (Telas até 600px) 
   Transforma a tabela em blocos verticais fáceis de ler no celular */
@media screen and (max-width: 600px) {
    .nova-table thead {
        display: none; /* Esconde o cabeçalho original */
    }

    .nova-table, 
    .nova-table tbody, 
    .nova-table tr, 
    .nova-table td {
        display: block;
        width: 100%;
    }

    .nova-table tr {
        margin-bottom: 15px;
        border: 1px solid #e0e0e0;
        border-radius: 6px;
        background: #fafafa;
    }

    .nova-table td {
        text-align: right;
        padding-left: 50%;
        position: relative;
        border-bottom: 1px solid #e0e0e0;
    }

    .nova-table td:last-child {
        border-bottom: none;
    }

    /* Injeta o nome da coluna simulando um cabeçalho lateral */
    .nova-table td::before {
        content: attr(data-label);
        position: absolute;
        left: 15px;
        width: 45%;
        padding-right: 10px;
        white-space: nowrap;
        text-align: left;
        font-weight: bold;
        color: var(--nova-blue, #003399);
    }
    
    /* Ajuste para alinhar o texto corrido à direita no mobile */
    .nova-table td {
        text-align: left;
        padding-left: 15px;
        padding-top: 35px; /* Abre espaço para o título acima do dado */
    }

    .nova-table td::before {
        top: 12px;
        width: 100%;
    }
    
    .subtext-detail {
        margin-top: 8px;
    }
}



/* ==========================================
   BOTÃO DE IMPRIMIR ILUSTRATIVO (NOVA FIBRA)
   ========================================== */

.btn-imprimir {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: var(--nova-blue, #003399);
    color: #ffffff;
    border: none;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 6px rgba(0, 51, 153, 0.2);
    margin: 15px 0;
}

.btn-imprimir i {
    font-size: 18px; /* Tamanho do ícone do Tabler */
}

/* Efeito ao passar o mouse: texto e ícone mudam para o Amarelo Nova */
.btn-imprimir:hover {
    background-color: var(--nova-blue, #002266); /* Escurece o azul sutilmente */
    color: var(--nova-orange);
    box-shadow: 0 4px 12px rgba(0, 51, 153, 0.3);
    transform: translateY(-1px);
}

.btn-imprimir:active {
    transform: translateY(1px);
}

/* REGRA DE IMPRESSÃO: Esconde o botão na folha impressa final */
@media print {
    .btn-imprimir {
        display: none !important;
    }
}




/*SECAO DE BUSCA */


/* Container pai */
.search-container { 
    position: relative; 
    width: 100%;
    max-width: 400px; /* Ajuste conforme seu layout */
}

/* O Dropdown */
.search-results-dropdown {
    position: absolute;
    top: calc(100% + 5px); /* Pequeno respiro abaixo do input */
    left: 0;
    width: 100%;
    background: #ffffff;
    border-radius: 15px; /* Bordas arredondadas modernas */
    box-shadow: 0 10px 25px rgba(0,0,0,0.1); /* Sombra mais suave e profunda */
    z-index: 999;
    display: none;
    max-height: 300px;
    overflow-hidden; /* Garante que os itens respeitem o arredondado */
    border: 1px solid rgba(0,0,0,0.05); /* Borda bem sutil */
    animation: fadeIn 0.2s ease-out; /* Efeito de entrada */
}

/* Item de resultado */
.result-item {
    padding: 15px 20px;
    cursor: pointer;
    color: #444;
    font-family: sans-serif;
    font-size: 14px;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    border-bottom: 1px solid #f0f0f0;
}

/* Remove a borda do último item para não quebrar o arredondado */
.result-item:last-child {
    border-bottom: none;
}

/* Efeito de Hover */
.result-item:hover {
    background-color: #f8f9fa;
    color: #00b894; /* Cor de destaque (ajuste para a cor do seu logo) */
    padding-left: 25px; /* Leve deslocamento para a direita no hover */
}

/* Animação de entrada */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Personalização da barra de rolagem (opcional) */
.search-results-dropdown::-webkit-scrollbar {
    width: 6px;
}
.search-results-dropdown::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 10px;
}


/* Ajustes para telas até 768px (Mobile/Tablets) */
@media (max-width: 768px) {
    .search-container {
        width: 100%;
        padding: 0 10px; /* Evita que cole nas bordas do celular */
    }

    .search-results-dropdown {
        position: fixed; /* No mobile, fixar pode ser melhor para navegação */
        left: 10px;
        right: 10px;
        width: calc(100% - 20px);
        max-height: 60vh; /* Ocupa até 60% da altura da tela do celular */
        border-radius: 12px;
        top: auto; /* Reseta o top padrão */
        margin-top: 5px;
    }

    .result-item {
        padding: 18px 20px; /* Aumenta a área de clique para o dedo */
        font-size: 16px; /* Fonte levemente maior para leitura no celular */
    }

    /* Ajuste para o input não dar "zoom" automático no iPhone ao clicar */
    .search-input {
        font-size: 16px !important; 
    }
}


.search-results-dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #fff;
    z-index: 99999 !important; /* Força ficar na frente do menu */
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    border-radius: 8px;
    max-height: 200px;
    overflow-y: auto;
}

.result-item {
    padding: 15px;
    border-bottom: 1px solid #eee;
    color: #333;
    cursor: pointer;
}

/* Ajuste específico para o campo de busca superior do menu */
.menu-search-item {
    position: relative; /* Essencial para o dropdown flutuar corretamente */
}

.search-results-dropdown-mobile {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #fff;
    z-index: 9999;
    border-radius: 0 0 8px 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    display: none;
    max-height: 200px;
    overflow-y: auto;
}





/* =======================================================
   1. REGRA PARA OCULTAR O ITEM NO DESKTOP (COMPUTADOR)
   Não altera o tema, apenas força o sumiço do item
   ======================================================= */
.nav-services a.somente-celular {
    display: none !important;
}

/* =======================================================
   2. REGRA EXCLUSIVA PARA O MOBILE (CELULAR)
   Mantém as propriedades do seu tema e ativa apenas em telas menores
   ======================================================= */
@media (max-width: 991px) {
    .nav-services a.somente-celular {
        display: flex !important; /* Mostra apenas no mobile */
        align-items: center;
    }
}


/* =======================================================
   SEUS ESTILOS ORIGINAIS (NÃO ALTERADOS)
   ======================================================= */

/* Isso garante que a sua classe aceite itens flutuantes */
.menu-search-item {
    position: relative;
}

/* Estilo da lista de resultados */
.search-results-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #fff;
    z-index: 999;
    display: none;
    border: 1px solid #ddd;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    max-height: 200px;
    overflow-y: auto;
}

.result-item {
    padding: 10px;
    border-bottom: 1px solid #eee;
    cursor: pointer;
    color: #333;
}

.result-item:hover {
    background: #f8f8f8;
}

/* Garante que o container de busca não seja espremido */
.search-container {
    position: relative;
    z-index: 9999 !important;
}

/* Força a caixa de busca a aparecer quando ativa */
.search-box.active {
    display: flex !important;
    width: 100% !important;
}

/* Dropdown de resultados (MUITO IMPORTANTE) */
.search-results-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    z-index: 100000 !important; /* Mais alto que o menu */
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    border-radius: 8px;
    display: none;
}











