/* 
   =============================================================================
   1. VARIÃVEIS GLOBAIS (DESIGN SYSTEM)
   Definem a paleta de cores, gradientes e configuraÃ§Ãµes base.
   =============================================================================
*/
:root {
    /* Cores Institucionais */
    --color-primary: #E63946;
    /* Vermelho Principal */
    --color-primary-dark: #C92A35;
    /* Vermelho Escuro (Hover) */
    --color-secondary: #E63946;
    /* SecundÃ¡ria (Linkada Ã  primÃ¡ria) */

    /* Gradientes Modernos */
    --gradient-primary: linear-gradient(135deg, #E63946 0%, #B31E2D 100%);
    --gradient-clean: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);

    /* Destaques e AÃ§Ãµes */
    --color-highlight: #FFB703;
    /* Amarelo para Ã­cones e hovers */
    --color-whatsapp: #25D366;
    /* Verde oficial do WhatsApp */

    /* Layout e EspaÃ§amento */
    --top-bar-height: 40px;
    /* Altura da barra de contatos */

    /* Sistema de Cores Neutras */
    --color-text: #2B2D42;
    /* Texto Principal (Quase preto) */
    --color-text-light: #5d6379;
    /* Texto de apoio (Cinza azulado) */
    --color-bg: #F8F9FA;
    /* Fundo geral da pÃ¡gina */
    --color-surface: #FFFFFF;
    /* Fundo de cards e seÃ§Ãµes */

    /* Efeitos Visuais */
    --border-radius: 12px;
    /* Arredondamento padrÃ£o de cards */
    --shadow-soft: 0 10px 30px -5px rgba(0, 0, 0, 0.08);
    /* Sombra padrÃ£o */
    --shadow-hover: 0 20px 40px -5px rgba(230, 57, 70, 0.25);
    /* Sombra ao passar mouse */
}

/* 
   =============================================================================
   2. RESET E CONFIGURAÃ‡Ã•ES GLOBAIS
   NormalizaÃ§Ã£o de estilos para garantir consistÃªncia entre navegadores.
   =============================================================================
*/
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    /* Garante que padding nÃ£o aumente a largura */
}

html {
    scroll-behavior: smooth;
    /* Rolagem suave ao clicar em links Ã¢ncora */
}

body {
    font-family: 'Roboto', -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
    line-height: 1.6;
    color: var(--color-text);
    background-color: var(--color-bg);
    transition: padding-top 0.3s ease;
    /* Adiciona espaÃ§o quando a top-bar fixa aparece */
}

/* Adiciona padding quando a top-bar aparece */
body.show-top-bar {
    padding-top: var(--top-bar-height);
}

/* Links e Listas Globais */
a {
    text-decoration: none;
    color: var(--color-primary);
}

ul {
    list-style: none;
}


/* 
   =============================================================================
   3. COMPONENTES E BOTÃ•ES
   Estilos reutilizÃ¡veis em todo o site.
   =============================================================================
*/
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

h1,
h2,
h3 {
    line-height: 1.2;
    margin-bottom: 1rem;
    font-weight: 700;
}

h2 {
    font-size: 2.0rem;
    color: var(--color-primary-dark);
    text-align: center;
    margin-top: 3rem;
    margin-bottom: 2rem;
}

/* BotÃ£o PadrÃ£o (Nav e Links Pequenos) */
.cta-button {
    display: inline-block;
    background: var(--color-primary);
    color: #fff;
    padding: 0.6rem 1.2rem;
    border-radius: 5px;
    font-weight: bold;
    text-decoration: none;
    transition: background 0.3s ease;
    border: none;
    cursor: pointer;
}

.cta-button:hover {
    background: var(--color-primary-dark);
}

/* BotÃ£o de Destaque (Planos) */
.cta-button-plan {
    display: block;
    width: 100%;
    text-align: center;
    background: var(--color-secondary);
    color: #fff;
    padding: 0.85rem 1rem;
    border-radius: 5px;
    font-weight: bold;
    transition: background 0.3s ease;
    margin-top: 1.5rem;
}

.cta-button-plan:hover {
    background: var(--color-secondary-dark);
    /* VariÃ¡vel implÃ­cita ou calculada */
}

.cta-button-new {
    display: block;
    width: 100%;
    background: #007bff;
    /* Azul padrÃ£o fallback */
    color: #fff;
    padding: 1rem;
    border-radius: 8px;
    font-weight: bold;
    text-decoration: none;
    transition: background 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1.2rem;
    text-align: center;
}

.cta-button-new:hover {
    background: #0056b3;
}

/* 
   =============================================================================
   4. LAYOUT - BARRA SUPERIOR (TOP BAR)
   Barra escura acima do menu com contatos.
   =============================================================================
*/
/* --- Barra Superior --- */
.top-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--top-bar-height);
    background-color: var(--color-bg);
    color: var(--color-text-light);
    padding: 0 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 0.9rem;
    z-index: 1001;
    transform: translateY(-100%);
    transition: transform 0.3s ease;
}

body.show-top-bar .top-bar {
    transform: translateY(0);
}

.top-bar .container {
    padding: 0;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    width: 100%;
}

.contact-info {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.contact-info a {
    color: var(--color-text-light);
    display: flex;
    align-items: center;
    gap: 0.3rem;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: var(--color-primary);
}

.contact-info i {
    font-size: 1.1rem;
}

/* 
   =============================================================================
   5. LAYOUT - HEADER (CABEÃ‡ALHO)
   Menu de navegaÃ§Ã£o principal, logo e botÃ£o de cobertura.
   =============================================================================
*/
/* --- CabeÃ§alho Principal --- */
header {
    background: var(--color-primary-dark);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0.2rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    transition: top 0.3s ease;
}

body.show-top-bar header {
    top: var(--top-bar-height);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    padding: 0;
    height: 70px;
    /* Altura fixa para a barra nÃ£o crescer */
    overflow: hidden;
    /* Corta o excesso de altura (margens transparentes) */
}

.logo img {
    height: 180px;
    /* Altura exagerada para preencher tudo */
    width: auto;
    object-fit: contain;
}

a.logo {
    text-decoration: none;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.nav-links {
    display: flex;
    gap: 1.2rem;
}

.nav-links a {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    padding: 0.4rem;
    transition: color 0.3s ease;
    white-space: nowrap;
    font-size: 0.95rem;
}

.nav-links a:hover {
    color: var(--color-highlight);
}

.nav-links li a.active {
    color: var(--color-highlight);
    font-weight: 700;
}

/* --- SeÃ§Ã£o Hero com Swiper (Home) --- */
.hero-swiper {
    width: 100%;
    height: 60vh;
    min-height: 350px;
    background-color: #eee;
}

.swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
}

.swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-pagination {
    bottom: 20px !important;
}

.swiper-pagination-bullet {
    background: rgba(255, 255, 255, 0.7) !important;
    width: 10px !important;
    height: 10px !important;
    opacity: 1 !important;
}

.swiper-pagination-bullet-active {
    background: var(--color-highlight) !important;
}

/* --- Banner de Imagem para PÃ¡ginas Internas --- */
/* --- Banner de Imagem para PÃ¡ginas Internas --- */
.image-banner {
    position: relative;
    height: 500px;
    /* Aumentado para 500px para mostrar mais da cena */
    background-size: cover;
    background-position: center center;
    /* PadrÃ£o centralizado */
    background-repeat: no-repeat;
    background-color: #eee;
    transition: height 0.3s ease;
}

/* Overlay suave para melhorar contraste do menu se necessÃ¡rio */
.image-banner::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 40%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.4), transparent);
    z-index: 1;
}

/* --- Imagens EspecÃ­ficas e Ajustes de Foco --- */
.banner-fibra {
    background-image: url('images/banner-fibra.png');
    background-position: center 60%;
    /* Foca mais na sala/meio */
}

.banner-fixo {
    background-image: url('images/banner-fixo.png');
    background-position: center center;
}

.banner-empresarial {
    background-image: url('images/banner-empresarial.png');
    background-position: center 40%;
    /* Desce um pouco o foco */
}

.banner-movel {
    background-image: url('images/banner-movel.png');
    background-position: center 35%;
    /* Ajuste fino para o rosto da pessoa */
}

.banner-beneficios {
    background-image: url('images/banner-beneficios.jpg');
}

/* Fallback removido para evitar conflito com imagens especÃ­ficas */
/* .image-banner { background-image: ... } */

/* 
   =============================================================================
   7. SEÃ‡ÃƒO DE PLANOS (MODERNA)
   Novo layout de grid para exibir os cards de preÃ§os.
   =============================================================================
*/
/* --- NOVA SEÃ‡ÃƒO DE PLANOS (IMAGEM/CARROSSEL) --- */
.new-plans-section {
    padding: 1.5rem 0 3rem 0;
    background-color: var(--color-bg-light);
}

.new-plans-title {
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 2.5rem;
    font-weight: 900;
    background: linear-gradient(45deg, var(--color-primary), var(--color-primary-dark));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.1);
    line-height: 1.3;
}

.new-plan-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.new-plan-card.image-card {
    padding: 0;
    border: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    border-radius: 12px;
}

.new-plan-card.image-card a {
    display: block;
    line-height: 0;
}

.new-plan-card.image-card img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.new-plan-card.image-card:hover img {
    transform: scale(1.03);
}

.new-plan-card.image-card .new-plan-header,
.new-plan-card.image-card .subtitle,
.new-plan-card.image-card .descriptions,
.new-plan-card.image-card .services-title,
.new-plan-card.image-card .services-icons,
.new-plan-card.image-card .price-area,
.new-plan-card.image-card .promo-text,
.new-plan-card.image-card .small-text,
.new-plan-card.image-card .cta-button-new,
.new-plan-card.image-card .details-link {
    display: none;
}

/* Estilos para o Carrossel de Planos */
.slider-container {
    position: relative;
    margin: 0 -1rem;
}

.slider-arrow {
    display: none;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.9);
    color: var(--color-text);
    border: 1px solid var(--border-color);
    font-size: 1rem;
    width: 40px;
    height: 40px;
    padding: 0;
    cursor: pointer;
    z-index: 10;
    border-radius: 50%;
    justify-content: center;
    align-items: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s ease, color 0.3s ease;
}

.slider-arrow.prev {
    left: 10px;
}

.slider-arrow.next {
    right: 10px;
}

.slider-arrow:hover {
    background-color: white;
    color: var(--color-primary);
}

/* --- SeÃ§Ã£o de Categorias (Home) --- */
.categories-section {
    background: var(--color-bg-light);
    padding: 3rem 0;
}

.category-card {
    background: #fff;
    border-radius: 12px;
    /* Aumentado para 12px para consistÃªncia */
    box-shadow: var(--shadow-soft);
    text-align: center;
    padding: 2rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    /* Efeito Spring */
    color: var(--color-text);
    text-decoration: none;
    display: flex;
    /* Flexbox para alinhar conteÃºdo */
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    /* Garante altura igual se estiver em grid com stretch */
    border: 1px solid transparent;
    /* Prepara para hover */
    position: relative;
    overflow: hidden;
}

.category-card:hover {
    transform: translateY(-8px);
    /* Lift mais agressivo */
    box-shadow: 0 15px 30px rgba(230, 57, 70, 0.15);
    /* Sombra colorida suave */
    border-color: rgba(230, 57, 70, 0.1);
}

.category-card .card-content {
    margin-bottom: 1.5rem;
}

.category-card .category-icon {
    font-size: 2.5rem;
    color: var(--color-primary);
    margin-bottom: 1.2rem;
    display: inline-block;
    transition: transform 0.3s ease;
}

.category-card:hover .category-icon {
    transform: scale(1.1);
}

.category-card h3 {
    color: var(--color-primary-dark);
    font-size: 1.4rem;
    margin-top: 0;
    margin-bottom: 0.8rem;
    font-weight: 700;
}

.category-card p {
    color: var(--color-text-light);
    font-size: 1rem;
    line-height: 1.5;
}

/* Novo Elemento de AÃ§Ã£o */
.card-action {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: var(--color-primary);
    font-weight: 700;
    font-size: 0.95rem;
    margin-top: auto;
    /* Empurra para o final */
    padding-top: 1rem;
    border-top: 1px solid #f0f0f0;
    width: 100%;
    transition: color 0.3s ease;
}

.card-action i {
    font-size: 0.9rem;
    transition: transform 0.3s ease;
}

.category-card:hover .card-action {
    color: var(--color-primary-dark);
}

.category-card:hover .card-action i {
    transform: translateX(5px);
    /* Seta move para direita */
}

/* --- SeÃ§Ã£o de Planos (Geral - PÃ¡ginas Internas) --- */
.plans-section {
    padding: 3rem 0;
}

.plan-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.plan-grid.simple {
    grid-template-columns: 1fr;
    justify-content: center;
}

.plan-card {
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 2rem;
    text-align: center;
    background: var(--color-bg);
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.plan-card-content {
    flex-grow: 1;
}

.plan-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.plan-card .badge {
    position: absolute;
    top: 15px;
    right: -30px;
    background: var(--color-primary);
    color: white;
    padding: 5px 30px;
    font-size: 0.8rem;
    font-weight: bold;
    transform: rotate(45deg);
    text-transform: uppercase;
}

.plan-card.popular .badge {
    background: var(--color-highlight);
    color: #333;
}

.plan-card.ultra .badge {
    background: var(--color-primary);
}

.plan-card h3 {
    font-size: 1.6rem;
    color: var(--color-primary-dark);
}

.plan-card .price {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--color-primary);
    margin: 1rem 0;
}

.plan-card .details {
    font-size: 0.9rem;
    color: var(--color-text-light);
    margin-top: -0.5rem;
    margin-bottom: 1rem;
}

/* --- Planos MÃ³veis (PÃ¡gina MÃ³vel) --- */
.mobile-plans-section {
    padding: 3rem 0;
}

.mobile-plans-section .plan-card {
    background: var(--color-bg-light);
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: var(--color-text-light);
    margin-top: -1.5rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* --- PÃ¡gina de BenefÃ­cios --- */
.benefits-page-section {
    padding: 3rem 0;
}

.grid-2-col {
    grid-template-columns: 1fr;
}

.benefit-card {
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    box-shadow: var(--shadow);
    text-align: left;
    padding: 2rem;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s;
    z-index: 1;
}

/* Content needs to stay above backgrounds */
.benefit-card i,
.benefit-card h3,
.benefit-card p,
.benefit-card .details-text {
    position: relative;
    z-index: 2;
    transition: color 0.4s ease;
}

/* Base typography colors */
.benefit-card i {
    font-size: 2.5rem;
    color: var(--color-primary);
    margin-bottom: 1.5rem;
    display: block;
}

.benefit-card h3 {
    color: var(--color-text);
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
}

.benefit-card p {
    color: var(--color-text-light);
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.benefit-card .details-text {
    font-size: 0.9rem;
    color: var(--color-text);
    margin-bottom: 1.5rem;
}

/* Background Image Layer */
.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    z-index: 0;
    transition: opacity 0.5s ease, transform 0.5s ease;
    transform: scale(1.1);
    /* Zoom effect on hover */
}

/* Gradient Overlay Layer */
.benefit-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(16, 18, 27, 0.95) 0%, rgba(230, 57, 70, 0.8) 100%);
    opacity: 0;
    z-index: 1;
    transition: opacity 0.5s ease;
}

/* Card Specific Images */
.benefit-card.card-instalacao::before {
    background-image: url('images/bg_instalacao_rapida.png');
}

.benefit-card.card-suporte::before {
    background-image: url('images/bg_suporte_24h.png');
}

.benefit-card.card-fibra::before {
    background-image: url('images/bg_fibra_optica.png');
}

.benefit-card.card-velocidade::before {
    background-image: url('images/bg_velocidade_garantida.png');
}

/* --- Hover Effects --- */
.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(230, 57, 70, 0.2);
    border-color: transparent;
}

.benefit-card:hover::before {
    opacity: 1;
    transform: scale(1);
}

.benefit-card:hover::after {
    opacity: 1;
}

/* Turn text white on hover */
.benefit-card:hover i,
.benefit-card:hover h3,
.benefit-card:hover p {
    color: #fff !important;
}

.benefit-card:hover .details-text {
    color: rgba(255, 255, 255, 0.85) !important;
}

/* --- SeÃ§Ã£o de Testemunhos --- */
.testimonials-section {
    padding: 3rem 0;
    background: var(--color-bg-light);
}

.testimonial-card {
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    box-shadow: var(--shadow);
    padding: 2rem;
    text-align: left;
}

.testimonial-card .stars {
    color: var(--color-highlight);
    margin-bottom: 1rem;
}

.testimonial-card .quote {
    font-style: italic;
    font-size: 1.1rem;
    color: var(--color-text-light);
    line-height: 1.5;
    margin-bottom: 1rem;
    position: relative;
    padding-left: 2.5rem;
}

.testimonial-card .quote::before {
    content: '\f10d';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    font-style: normal;
    color: var(--color-primary);
    font-size: 2rem;
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0.8;
}

.testimonial-card .client-name {
    font-weight: bold;
    font-size: 1.1rem;
    color: var(--color-text);
    margin-top: 1rem;
}

.testimonial-card .client-title {
    font-size: 0.9rem;
    color: var(--color-text-light);
}

/* --- SeÃ§Ã£o de Clientes (Logos) --- */
.clients-section {
    padding: 3rem 0;
    background: var(--color-bg);
}

.clients-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.5rem;
    align-items: center;
}

.client-logo-placeholder {
    border: 1px dashed var(--border-color);
    padding: 2rem 1rem;
    text-align: center;
    color: var(--color-text-light);
    font-weight: bold;
    font-size: 0.9rem;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.client-logo-placeholder:hover {
    filter: grayscale(0%);
    opacity: 1;
    border-color: var(--color-highlight);
    box-shadow: 0 0 20px rgba(255, 183, 3, 0.2);
    transform: scale(1.05);
    color: var(--color-primary-dark);
}

/* --- MARQUEE CAROUSEL FOR CARDS --- */
.marquee-wrapper {
    overflow: hidden;
    position: relative;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    padding: 2rem 0;
}

/* Gradient Masks to fade edges */
.marquee-wrapper::before,
.marquee-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    width: 10%;
    min-width: 50px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.marquee-wrapper::before {
    left: 0;
}

.marquee-wrapper::after {
    right: 0;
}

.testimonials-section .marquee-wrapper::before {
    background: linear-gradient(to right, var(--color-bg-light) 0%, transparent 100%);
}

.testimonials-section .marquee-wrapper::after {
    background: linear-gradient(to left, var(--color-bg-light) 0%, transparent 100%);
}

.clients-section .marquee-wrapper::before {
    background: linear-gradient(to right, var(--color-bg) 0%, transparent 100%);
}

.clients-section .marquee-wrapper::after {
    background: linear-gradient(to left, var(--color-bg) 0%, transparent 100%);
}

.marquee-track {
    display: flex;
    width: max-content;
    gap: 2rem;
    animation: marquee-cards 30s linear infinite;
    padding: 1rem 0;
}

.marquee-track:hover {
    animation-play-state: paused;
}

.marquee-track .testimonial-card {
    width: 380px;
    flex-shrink: 0;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.marquee-track .testimonial-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 35px rgba(230, 57, 70, 0.15);
    border-color: var(--color-primary);
}

.marquee-track .client-logo-placeholder {
    width: 250px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

@keyframes marquee-cards {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* --- CTA de Cobertura (Fundo) --- */
.coverage-cta {
    position: relative;
    background-image: url('https://source.unsplash.com/1600x600/?city,night,network');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: #fff;
    text-align: center;
    padding: 4rem 1rem;
}

.coverage-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(180, 40, 50, 0.8);
    z-index: 1;
}

.coverage-cta .container {
    position: relative;
    z-index: 2;
}

.coverage-cta h2 {
    color: #fff;
    font-size: 2.0rem;
}

.coverage-cta p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.coverage-form {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1rem;
}

.coverage-form input {
    padding: 1rem;
    border: none;
    border-radius: 5px;
    width: 100%;
    font-size: 1rem;
}

.coverage-form button {
    background: var(--color-highlight);
    color: #333;
    font-size: 1rem;
    width: 100%;
}

.coverage-form button:hover {
    background: #e0a800;
}

/* --- RodapÃ© (CLEAN) --- */
footer {
    background: #333;
    color: #ccc;
    padding: 3rem 0 0;
    text-align: center;
}

.footer-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
    align-items: center;
}

.footer-column h4 {
    margin-bottom: 1rem;
    color: #fff;
    font-size: 1.1rem;
}

.footer-column .logo {
    color: #fff;
    margin-bottom: 1rem;
    font-size: 2.0rem;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.social-icons a {
    color: #ccc;
    font-size: 1.8rem;
    transition: color 0.3s ease, transform 0.3s ease;
}

.social-icons a:hover {
    color: var(--color-highlight);
    transform: scale(1.1);
}

.footer-bottom {
    text-align: center;
    padding: 2rem 0;
    margin-top: 2rem;
    font-size: 0.9rem;
}

/* --- BotÃ£o Flutuante WhatsApp --- */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 30px;
    right: 30px;
    background-color: var(--color-whatsapp);
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.25);
    z-index: 100;
    transition: transform 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

/* --- Mobile Nav Toggle (HambÃºrguer) --- */
.mobile-nav-toggle {
    display: block;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001;
    padding: 0.5rem;
}

.hamburger-line {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--color-primary);
    margin: 5px 0;
    transition: all 0.3s ease-in-out;
}

.mobile-nav-toggle.is-active .hamburger-line:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.mobile-nav-toggle.is-active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.mobile-nav-toggle.is-active .hamburger-line:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* --- OtimizaÃ§Ã£o Focada no Mobile (AtÃ© 800px) --- */
@media (max-width: 800px) {
    .container {
        padding: 0 1rem;
    }

    /* --- Estilos Melhorados para Menu Mobile --- */
    .nav-menu {
        display: none;
        flex-direction: column;
        width: 100%;
        background: #fff;
        position: absolute;
        top: 60px;
        left: 0;
        padding-bottom: 1rem;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-links {
        flex-direction: column;
        width: 100%;
        gap: 0;
    }

    .nav-links a {
        display: block;
        text-align: center;
        padding: 1.25rem 1rem;
        border-bottom: 1px solid #eee;
        width: 100%;
        font-size: 1.1rem;
        font-weight: 500;
        color: var(--color-text);
        transition: background-color 0.2s ease, color 0.2s ease;
    }

    .nav-links a:hover,
    .nav-links a:active {
        background-color: var(--color-bg-light);
        color: var(--color-primary);
    }

    .nav-links li:last-child a {
        border-bottom: none;
    }

    .nav-cta {
        margin: 1.5rem auto 1rem;
        width: 90%;
        text-align: center;
    }

    /* --- MODAL DE DISPONIBILIDADE --- */
    .modal-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.7);
        backdrop-filter: blur(5px);
        z-index: 2000;
        display: flex;
        justify-content: center;
        align-items: center;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }

    .modal-overlay.active {
        opacity: 1;
        visibility: visible;
    }

    .modal-content {
        background: #fff;
        width: 90%;
        max-width: 500px;
        padding: 2.5rem;
        border-radius: 20px;
        text-align: center;
        position: relative;
        transform: scale(0.8);
        transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    }

    .modal-overlay.active .modal-content {
        transform: scale(1);
    }

    .modal-close {
        position: absolute;
        top: 15px;
        right: 15px;
        background: none;
        border: none;
        font-size: 1.5rem;
        color: var(--color-text-light);
        cursor: pointer;
        transition: color 0.3s ease;
    }

    .modal-close:hover {
        color: var(--color-primary);
    }

    .modal-body {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .modal-body.hidden {
        display: none;
    }

    .modal-icon {
        font-size: 4rem;
        margin-bottom: 1rem;
    }

    #modal-success h3 {
        color: var(--color-primary-dark);
        font-size: 1.8rem;
        margin: 0;
    }

    #modal-fail h3 {
        color: var(--color-text);
        font-size: 1.5rem;
        margin: 0;
    }

    /* Confetti Effect (Simple CSS Implementation) */
    .confetti {
        position: absolute;
        width: 10px;
        height: 10px;
        background-color: #f00;
        animation: confetti-fall 3s linear infinite;
        top: -10%;
        z-index: 10;
    }

    @keyframes confetti-fall {
        0% {
            transform: translateY(0) rotate(0deg);
            opacity: 1;
        }

        100% {
            transform: translateY(500px) rotate(720deg);
            opacity: 0;
        }
    }

    /* Banner Interno Mobile */
    .image-banner {
        height: 250px;
        /* Altura ajustada para mobile (era 200px) */
    }

    /* Altura menor no mobile */

    /* Carrossel Mobile */
    .slider-container {
        margin: 0 -1rem;
        padding: 0 0.5rem;
    }

    .slider-track {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scroll-padding: 0 5%;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 1rem;
        margin-bottom: -1rem;
        gap: 1rem;
        padding-left: 5%;
        padding-right: 5%;
    }

    .slider-track::-webkit-scrollbar {
        display: none;
    }

    .slider-track {
        -ms-overflow-style: none;
        scrollbar-width: none;
    }

    .slider-item {
        flex: 0 0 90%;
        scroll-snap-align: center;
        margin-right: 0;
    }

    .slider-arrow {
        display: flex;
    }

    .coverage-cta {
        background-attachment: scroll;
    }

    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 24px;
        bottom: 20px;
        right: 20px;
    }

    /* Esconde setas Swiper no mobile */
    .swiper-button-next,
    .swiper-button-prev {
        display: none !important;
    }
}

/* Telas Maiores (Desktop) */
@media (min-width: 801px) {
    .container {
        padding: 0 2rem;
    }

    /* Top Bar Desktop */
    .top-bar .container {
        justify-content: flex-end;
    }

    /* Menu Desktop */
    .mobile-nav-toggle {
        display: none;
    }

    .nav-menu {
        display: flex !important;
        flex-direction: row;
        align-items: center;
        gap: 1.5rem;
    }

    .nav-links {
        flex-direction: row;
        border: none;
    }

    .nav-links a {
        border: none;
        padding: 0.5rem;
    }

    .nav-cta {
        width: auto;
        margin: 0;
    }

    /* Hero Swiper Desktop */
    .hero-swiper {
        height: 70vh;
        min-height: 450px;
    }

    /* Grids Desktop */
    .plan-grid,
    .new-plan-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }

    .slider-container {
        margin: 0;
    }

    .plan-grid.simple {
        grid-template-columns: repeat(auto-fit, minmax(280px, 350px));
        justify-content: center;
    }

    .grid-2-col {
        grid-template-columns: repeat(2, 1fr);
    }

    /* FormulÃ¡rio Desktop */
    .coverage-form {
        flex-direction: row;
    }

    .coverage-form input {
        width: 400px;
    }

    .coverage-form button {
        width: auto;
    }

    /* RodapÃ© Desktop */
    footer {
        text-align: left;
    }

    .footer-container {
        grid-template-columns: 1fr auto;
        text-align: left;
    }

    .footer-column .logo {
        font-size: 1.8rem;
    }

    .social-icons {
        justify-content: flex-end;
    }
}

/* Esconde setas Swiper em telas muito pequenas (opcional, refinado) */
@media (max-width: 500px) {

    .swiper-button-next,
    .swiper-button-prev {
        display: none !important;
    }
}

/* --- MODERN HERO SECTION (Static) --- */
.hero-static {
    padding: 6rem 0 4rem;
    background: var(--color-bg);
    position: relative;
    overflow: hidden;
}

.hero-static .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.hero-content {
    z-index: 2;
}

.hero-tag {
    display: inline-block;
    background: rgba(230, 57, 70, 0.1);
    color: var(--color-primary);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-title {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--color-text);
}

.hero-title span {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

.hero-title span.typewriter-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

.typewriter-cursor {
    color: var(--color-primary);
    font-weight: 300;
    animation: blink 1s step-end infinite;
    display: inline-block;
}

@keyframes blink {

    from,
    to {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }
}

.hero-description {
    font-size: 1.2rem;
    color: var(--color-text-light);
    margin-bottom: 2.5rem;
    max-width: 90%;
}

.hero-cta-group {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: center;
}

/* Coverage Form inside Hero */
.hero-coverage-form {
    display: flex;
    background: #fff;
    padding: 0.5rem;
    border-radius: 50px;
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--border-color);
    width: 100%;
    max-width: 480px;
}

.hero-coverage-form input {
    border: none;
    padding: 0 1.5rem;
    flex-grow: 1;
    border-radius: 50px;
    font-size: 1rem;
    outline: none;
}

.hero-coverage-form button {
    border-radius: 50px;
    padding: 0.8rem 2rem;
    font-size: 1rem;
    white-space: nowrap;
}

/* Hero Image/Visual */
.hero-visual {
    position: relative;
    height: 500px;
    background: var(--gradient-clean);
    border-radius: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.hero-visual img {
    max-width: 100%;
    height: auto;
    object-fit: cover;
    /* filter: drop-shadow(0 20px 40px rgba(0,0,0,0.1)); Remove generic shadow if image has bg */
}

/* --- SCROLLING MARQUEE (HAZARD TAPE BORDERS) --- */
.scrolling-marquee {
    background-color: #2B2D42;
    /* Fundo clean sÃ³lido para facilitar leitura */
    color: #fff;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    z-index: 10;
}

.marquee-content {
    display: inline-block;
    animation: marquee 60s linear infinite;
    padding: 16px 0;
    position: relative;
}

/* Barras zebradas anexadas ao conteÃºdo (movem junto com as letras) */
.marquee-content::before,
.marquee-content::after {
    content: '';
    position: absolute;
    left: 0;
    width: 100%;
    height: 6px;
    background-image: repeating-linear-gradient(-45deg,
            #111,
            #111 20px,
            var(--color-highlight) 20px,
            var(--color-highlight) 40px);
}

.marquee-content::before {
    top: 0;
}

.marquee-content::after {
    bottom: 0;
}

.marquee-content span {
    margin: 0 1.5rem;
    font-size: 1.1rem;
}

.marquee-content span.bullet {
    color: var(--color-highlight);
    margin: 0;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* --- MODERN PLAN CARDS --- */
.plans-modern-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 2rem 0;
}

/* --- HIDDEN PLANS SECTION --- */
.hidden-plans-container {
    display: none;
    animation: fadeIn 0.4s ease-in-out forwards;
}

.hidden-plans-container.active {
    display: block;
}

/* --- FINAL CTA SECTION --- */
.final-cta-section {
    position: relative;
    padding: 6rem 0;
    background-image: url('images/call-center-bg.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    /* Parallax effect for premium feel */
    text-align: center;
    color: #fff;
    margin: 0 !important;
    /* Fixed: Removed white gap */
}

.final-cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /* Fundo escuro misturado com a cor primÃ¡ria */
    background: linear-gradient(135deg, rgba(16, 18, 27, 0.95) 0%, rgba(230, 57, 70, 0.6) 100%);
    z-index: 1;
}

.final-cta-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.final-cta-content h2 {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
    color: #fff;
    text-transform: uppercase;
    text-shadow: 2px 4px 10px rgba(0, 0, 0, 0.5);
}

.final-cta-content p {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
}

@media (max-width: 768px) {
    .final-cta-content h2 {
        font-size: 2.2rem;
    }

    .final-cta-section {
        padding: 4rem 1rem;
        background-attachment: scroll;
        /* Disable parallax on mobile for performance */
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.toggle-plans-btn-wrapper {
    text-align: center;
    margin-top: 2rem;
    padding-bottom: 2rem;
}

.btn-toggle-plans {
    background: transparent;
    color: var(--color-primary);
    border: 2px solid var(--color-primary);
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-toggle-plans:hover {
    background: var(--color-primary);
    color: #fff;
}

.btn-toggle-plans i {
    transition: transform 0.3s ease;
}

.btn-toggle-plans.active i {
    transform: rotate(180deg);
}

.plan-card-modern {
    background: var(--color-surface);
    border-radius: 20px;
    padding: 2.5rem;
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: var(--shadow-soft);
    display: flex;
    flex-direction: column;
}

.plan-card-modern:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(230, 57, 70, 0.1);
}

.plan-card-modern.featured {
    border: 2px solid var(--color-primary);
    background: linear-gradient(to bottom right, #fff, #fff5f5);
}

.plan-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--color-highlight);
    color: #000;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 800;
    text-transform: uppercase;
    box-shadow: 0 5px 15px rgba(255, 183, 3, 0.3);
}

.plan-header {
    text-align: center;
    margin-bottom: 2rem;
}

.plan-name {
    font-size: 1.1rem;
    /* Slightly smaller */
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-text-light);
}

.plan-speed {
    margin: 1rem 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2px;
    /* Small gap instead of negative margin */
}

.plan-speed .speed-value {
    font-size: 3.2rem;
    font-weight: 900;
    color: var(--color-primary);
    line-height: 1;
    letter-spacing: -2px;
}

.plan-speed span:not(.speed-value) {
    font-size: 1rem;
    font-weight: 800;
    color: var(--color-text-light);
    text-transform: uppercase;
    line-height: 1;
}

.plan-price {
    font-size: 1.8rem;
    /* Reduced price size */
    font-weight: 700;
    color: var(--color-text);
}

.plan-price span {
    font-size: 0.9rem;
    font-weight: 400;
}

.plan-features {
    list-style: none;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.plan-features li {
    padding: 0.5rem 0;
    font-size: 0.88rem;
    color: var(--color-text-light);
    display: flex;
    align-items: flex-start;
    /* Changed from center to flex-start for long lines */
    gap: 12px;
    text-align: left;
    /* Ensure text is left aligned */
}

.plan-features li i {
    color: #2ecc71;
    font-size: 0.9rem;
    margin-top: 3px;
    /* Align icon with the first line of text */
    flex-shrink: 0;
    /* Prevent icon from shrinking */
}

.btn-modern {
    display: block;
    background: var(--color-primary);
    color: #fff;
    text-align: center;
    padding: 0.8rem;
    /* Reduced button size */
    border-radius: 30px;
    font-weight: 700;
    text-decoration: none;
    transition: background 0.3s ease, transform 0.2s;
}

.btn-modern:hover {
    background: #c1121f;
    transform: translateY(-2px);
}

.plan-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--color-primary);
    color: #fff;
    padding: 4px 15px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    z-index: 5;
}

.plans-swiper {
    padding: 2rem 1rem 3rem !important;
}

/* Fix for featured card height in carousel */
.swiper-slide {
    height: auto !important;
    display: flex;
    justify-content: center;
    padding: 1rem 0;
    background: transparent !important;
    /* Ensure no square leakage */
}

/* Standard Buttons (Bootstrap-like) */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    line-height: 1.5;
}

.btn-light {
    background-color: #fff;
    color: var(--color-primary);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.btn-light:hover {
    background-color: #f8f9fa;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.2rem;
    border-radius: 50px;
}

@media (max-width: 900px) {
    .hero-static .container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-coverage-form {
        margin: 0 auto 2rem;
    }

    .hero-cta-group {
        justify-content: center;
    }

    .hero-title {
        font-size: 2.5rem;
    }
}

/* --- PÃ¡gina Central do Assinante --- */
.central-hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    padding: 4rem 1rem;
    min-height: 80vh;
}

.central-content h1 {
    font-size: 3rem;
    color: var(--color-primary-dark);
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.central-content p {
    font-size: 1.2rem;
    color: var(--color-text-light);
    margin-bottom: 2.5rem;
    max-width: 500px;
}

.app-buttons-container {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.app-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 24px;
    border-radius: 12px;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    color: white;
    min-width: 180px;
}

.app-btn i {
    font-size: 2rem;
}

.app-btn .btn-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.app-btn .btn-text small {
    font-size: 0.75rem;
    opacity: 0.9;
}

.app-btn .btn-text span {
    font-size: 1.2rem;
    font-weight: 700;
}

.app-btn.apple {
    background: #000;
}

.app-btn.google {
    background: #000;
}

.app-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.web-access p {
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.web-link {
    color: var(--color-primary);
    font-weight: bold;
    font-size: 1rem;
    text-decoration: underline;
}

.web-link:hover {
    color: var(--color-primary-dark);
}

.central-image img {
    width: 100%;
    max-height: 600px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: var(--shadow-hover);
    transform: rotate(-2deg);
    transition: transform 0.5s ease;
}

.central-image:hover img {
    transform: rotate(0deg) scale(1.02);
}

@media (max-width: 900px) {
    .central-hero .container {
        grid-template-columns: 1fr;
        text-align: center;
        padding-top: 6rem;
        gap: 2rem;
    }

    .central-content h1 {
        font-size: 2.2rem;
    }

    .central-content p,
    .web-access {
        margin-left: auto;
        margin-right: auto;
    }

    .app-buttons-container {
        justify-content: center;
    }

    .central-image {
        order: -1;
        margin-top: 2rem;
    }

    .central-image img {
        max-width: 80%;
        transform: rotate(0);
    }
}

/* --- Modern Footer Styles --- */
footer {
    background-color: #212529 !important;
    /* Dark theme for footer */
    color: #f8f9fa;
    padding-top: 4rem;
    padding-bottom: 2rem;
    position: relative;
    z-index: 100;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 3rem;
    padding-bottom: 3rem;
    align-items: start;
    /* Ensures columns don't stretch vertically */
}

.footer-column h4 {
    color: var(--color-highlight);
    font-size: 1.2rem;
    margin-top: 0;
    /* Align with top of container */
    margin-bottom: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-column p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    line-height: 1.6;
}

.footer-logo img {
    height: 200px;
    width: auto;
    margin-bottom: 1rem;
    /* filter: brightness(0) invert(1); Removed to keep original colors */
}

.footer-column ul {
    list-style: none;
    padding: 0;
}

.footer-column ul li {
    margin-bottom: 0.8rem;
}

.footer-column ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
    display: block;
}

.footer-column ul li a:hover {
    color: var(--color-highlight);
    padding-left: 5px;
    /* Subtle hover animation */
}

/* Contact Icons */
.contact-col i {
    color: var(--color-highlight);
    margin-right: 10px;
    width: 20px;
    text-align: center;
}

.footer-address-link {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.3s ease;
}

.footer-address-link:hover {
    color: var(--color-highlight);
}

.footer-address-link i {
    margin-right: 0;
    /* Reset margin as we use gap */
    margin-top: 5px;
    /* Visual alignment with text top line */
    flex-shrink: 0;
}

/* Social Icons in Footer */
.social-col {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    /* Alinhar à direita no desktop */
}

.social-icons {
    display: flex;
    gap: 1rem;
    margin-top: 0.5rem;
}

.social-icons a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    color: #fff;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background: var(--color-primary);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
}

/* --- Override styles for Inverted Header --- */
.hamburger-line {
    background-color: #fff !important;
}

header .cta-button.nav-cta {
    background-color: #fff;
    color: var(--color-primary);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

header .cta-button.nav-cta:hover {
    background-color: var(--color-highlight);
    color: var(--color-text);
}

/* 
   =============================================================================
   10. MEDIA QUERIES (RESPONSIVIDADE)
   Ajustes para Tablets e Mobile.
   =============================================================================
*/
/* --- Mobile Specific Overrides --- */
@media (max-width: 768px) {

    /* Header Adjustments */
    header {
        padding: 0.2rem 0;
    }

    .logo {
        height: 50px;
    }

    .logo img {
        height: 120px;
    }

    .mobile-nav-toggle {
        display: block;
        color: #fff;
    }

    /* Mobile Nav Fix */
    /* Mobile Nav Fix */
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        height: auto;
        background-color: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(10px);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding: 1.5rem 0;
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        z-index: 999;
        gap: 1rem;
        overflow-y: hidden;
    }

    .nav-menu.active {
        display: flex !important;
    }

    .nav-links {
        flex-direction: column;
        gap: 1.5rem;
        width: 100%;
    }

    .nav-links li {
        margin: 0;
        text-align: center;
        width: 100%;
    }

    .nav-links li a {
        display: block;
        padding: 0.8rem 0;
        width: 100%;
        font-size: 1.1rem;
        font-weight: 600;
        color: var(--color-text);
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        /* Subtle separator for clean look */
    }

    .nav-links li a:last-child {
        border-bottom: none;
    }

    .nav-cta {
        width: 80%;
        text-align: center;
        margin: 0 auto;
    }

    .hamburger-line {
        background-color: #fff;
    }

    /* Top Bar Restored on Mobile */
    .top-bar {
        font-size: 0.75rem;
        /* Slightly smaller text */
        padding: 5px 0.5rem;
    }

    .top-bar .container {
        justify-content: center;
        flex-wrap: wrap;
        gap: 0.5rem;
    }

    /* body.show-top-bar header - reserved for JS toggling if needed */

    /* Hero Section Mobile Fixes */
    .hero-static .container {
        grid-template-columns: 1fr;
        padding: 2rem 1rem;
        gap: 2rem;
    }

    .hero-content {
        text-align: center;
        margin-top: 1rem;
    }

    .hero-title {
        font-size: 2rem;
        line-height: 1.2;
    }

    .hero-description {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    /* Coverage Form on Mobile */
    .hero-coverage-form {
        flex-direction: column;
        gap: 0.5rem;
        padding: 0.5rem;
        border-radius: 15px;
        width: 100%;
        max-width: 100%;
    }

    .hero-coverage-form input {
        width: 100%;
        text-align: center;
        border-bottom: 1px solid #eee;
        padding: 0.8rem;
    }

    .hero-coverage-form button {
        width: 100%;
        border-radius: 10px;
    }

    /* Adjust features icons group */
    .hero-cta-group {
        justify-content: center;
        flex-direction: column;
        gap: 0.5rem;
    }

    .hero-cta-group p {
        margin-left: 0 !important;
    }

    /* Hero Image */
    .hero-visual {
        height: 250px;
    }

    /* Coverage Form on Mobile */
    .hero-coverage-form {
        flex-direction: column;
        gap: 0.5rem;
        padding: 0.5rem;
        border-radius: 15px;
        width: 100%;
        max-width: 100%;
    }

    .hero-coverage-form input {
        width: 100%;
        text-align: center;
        border-bottom: 1px solid #eee;
        padding: 0.8rem;
    }

    .hero-coverage-form button {
        width: 100%;
        border-radius: 10px;
    }

    /* Footer Mobile Adjustments */
    .footer-container {
        gap: 2rem;
        text-align: center;
    }

    .footer-logo {
        justify-content: center;
        display: flex;
    }

    .social-icons {
        justify-content: center;
    }

    .social-col {
        align-items: center;
    }

    .footer-column h4 {
        margin-top: 1rem;
        /* Add separation between stacked columns */
    }

    .contact-col i {
        margin-right: 5px;
    }

    .footer-address-link {
        flex-direction: column;
        /* Stack icon and text for perfect symmetry */
        align-items: center;
        justify-content: center;
        text-align: center;
        margin-bottom: 1rem;
        /* Add spacing between address blocks */
    }

    .footer-address-link i {
        margin-right: 0;
        margin-bottom: 5px;
        /* Space between icon and text */
        margin-top: 0;
        font-size: 1.2rem;
        /* Make icon slightly larger for mobile touch */
    }
}

/* Hero CTA Button */
.cta-button-hero {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--color-primary);
    color: #fff;
    font-size: 1.2rem;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 800;
    margin-top: 1.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(230, 57, 70, 0.4);
    text-transform: uppercase;
}

.cta-button-hero:hover {
    background: var(--color-primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(230, 57, 70, 0.6);
}

.pulse-animation {
    animation: pulse-red 2s infinite;
}

@keyframes pulse-red {
    0% {
        box-shadow: 0 0 0 0 rgba(230, 57, 70, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(230, 57, 70, 0);
    }


    100% {
        box-shadow: 0 0 0 0 rgba(230, 57, 70, 0);
    }
}

/* 
   =============================================================================
   13. PÃGINA MESH (ESPECÃFICO)
   Estilos exclusivos para a landing page de Wi-Fi Mesh.
   =============================================================================
*/
.price-highlight {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
    border: 2px solid transparent;
}

.price-highlight:hover {
    transform: translateY(-5px);
    border-color: var(--color-primary);
}

.mesh-comparison {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.card-comparison {
    text-align: center;
    transition: all 0.3s ease;
}

.card-comparison:hover {
    transform: translateY(-10px);
}

.icon-box {
    width: 80px;
    height: 80px;
    background: var(--color-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem auto;
    transition: background 0.3s ease;
}

.card-comparison:hover .icon-box {
    background: #fff;
    box-shadow: var(--shadow-soft);
}

/* Mesh Hero Specifics */
.hero-mesh {
    background: linear-gradient(135deg, #292e35 0%, #292e35 100%);
    /* Clean Professional Slate Blue */
    text-align: center;
    color: white;
    padding: 6rem 0 4rem;
    margin: 0 !important;
}

.hero-mesh-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero-mesh-tag {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    display: inline-block;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(10px);
}

.hero-mesh-title {
    color: white;
    font-size: 3rem;
    margin-bottom: 1rem;
    line-height: 1.1;
}

.hero-mesh-description {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}



/* Price Highlight Card */
.price-highlight {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    display: inline-block;
    margin: 2rem 0;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, border-color 0.3s ease;
    border: 2px solid transparent;
    max-width: 500px;
    width: 100%;
}

.price-highlight:hover {
    transform: translateY(-5px);
    border-color: var(--color-primary);
}

.price-mesh-title {
    display: block;
    color: var(--color-text-light);
    font-size: 1rem;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.price-mesh-value {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--color-primary);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.price-mesh-value span {
    font-size: 1.8rem;
    vertical-align: top;
}

.price-mesh-features {
    display: block;
    color: var(--color-whatsapp);
    font-weight: 700;
    font-size: 1.1rem;
}

/* Comparison Section */
.mesh-comparison {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.card-comparison {
    background: #fff;
    padding: 3rem 2rem;
    border-radius: 16px;
    box-shadow: var(--shadow-soft);
    border: 1px solid #eee;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}

.card-comparison.recommended {
    border: 2px solid var(--color-whatsapp);
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.15);
}

.badge-recommended {
    position: absolute;
    top: -15px;
    right: 50%;
    transform: translateX(50%);
    background: var(--color-whatsapp);
    color: white;
    padding: 5px 20px;
    border-radius: 50px;
    font-weight: bold;
    font-size: 0.85rem;
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
}

.card-comparison ul {
    list-style: none;
    margin-top: 1.5rem;
    text-align: left;
}

.card-comparison ul li {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Response adjustments */
@media (max-width: 768px) {
    .hero-mesh-title {
        font-size: 2.2rem;
    }

    .price-mesh-value {
        font-size: 3rem;
    }
}

/* =========================================
   WI-FI EVOLUTION SECTION
   ========================================= */
.wifi-evolution {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    overflow: hidden;
    margin: 0 !important;
}

.evolution-header {
    text-align: center;
    margin-bottom: 3rem;
}

.evolution-header h2 {
    font-size: 2.5rem;
    color: var(--color-primary);
    margin-bottom: 0.5rem;
}

.evolution-header p {
    font-size: 1.2rem;
    color: var(--color-text-light);
}

.visual-comparison {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    margin-bottom: 4rem;
    position: relative;
    flex-wrap: wrap;
}

.scenario-card {
    flex: 1;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    min-width: 300px;
}

.scenario-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.scenario-card.mesh-pro {
    border: 2px solid var(--color-primary);
    position: relative;
}

.scenario-image-wrapper {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.scenario-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.scenario-card:hover .scenario-image-wrapper img {
    transform: scale(1.05);
}

.scenario-overlay {
    position: absolute;
    top: 15px;
    left: 15px;
    z-index: 2;
}

.scenario-badge {
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.badge-legacy {
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
}

.badge-new {
    background: var(--color-primary);
    color: #fff;
    box-shadow: 0 4px 15px rgba(255, 107, 0, 0.4);
}

.scenario-details {
    padding: 2rem;
}

.scenario-points {
    list-style: none;
    padding: 0;
    margin-top: 1rem;
}

.scenario-points li {
    margin-bottom: 0.8rem;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.95rem;
    color: var(--color-text);
}

.scenario-points i {
    margin-top: 3px;
}

.scenario-card.legacy .scenario-points i {
    color: #dc3545;
}

.scenario-card.mesh-pro .scenario-points i {
    color: #28a745;
}

.evolution-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--color-primary);
    animation: slideRight 1.5s infinite ease-in-out;
}

@keyframes slideRight {

    0%,
    100% {
        transform: translateX(0);
        opacity: 0.5;
    }

    50% {
        transform: translateX(10px);
        opacity: 1;
    }
}

/* Pulse Animation for Mesh */
.pulse-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    animation: pulse 2s infinite;
    pointer-events: none;
    z-index: 1;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
    }

    70% {
        box-shadow: 0 0 0 300px rgba(255, 255, 255, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    }
}

.tech-specs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    text-align: center;
}

.spec-item {
    background: #fff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s;
}

.spec-item:hover {
    transform: translateY(-5px);
}

.spec-item i {
    font-size: 2.5rem;
    color: var(--color-primary);
    margin-bottom: 1rem;
}

.spec-item h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

/* Responsive Tweaks */
@media (max-width: 992px) {
    .visual-comparison {
        flex-direction: column;
    }

    .evolution-arrow {
        transform: rotate(90deg);
        margin: 1rem 0;
        animation: slideDown 1.5s infinite ease-in-out;
    }

    @keyframes slideDown {

        0%,
        100% {
            transform: rotate(90deg) translateX(0);
            opacity: 0.5;
        }

        50% {
            transform: rotate(90deg) translateX(10px);
            opacity: 1;
        }
    }
}

/* =========================================
   NEW OFFER SECTION
   ========================================= */
.offer-section {
    padding: 6rem 0;
    margin-top: 5rem;
    background: #1a1a1a;
    /* Dark background for contrast */
    color: #fff;
    position: relative;
    overflow: hidden;
}

.offer-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

.offer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    align-items: flex-start;
    /* Prevent stretching if heights differ, or stretch if desired */
}

.offer-header {
    margin-bottom: 3rem;
    text-align: center;
}

.offer-tag {
    display: inline-block;
    background: linear-gradient(90deg, #ff9900, #ff6b00);
    color: #fff;
    padding: 8px 16px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    margin-bottom: 1rem;
    box-shadow: 0 4px 15px rgba(255, 107, 0, 0.4);
}

.offer-header h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: #fff;
}

.offer-header p {
    font-size: 1.2rem;
    color: #ccc;
}

.offer-card {
    background: #fff;
    color: var(--color-text);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    border: 4px solid var(--color-primary);
    transform: scale(1);
    transition: transform 0.3s;
}

.offer-card:hover {
    transform: scale(1.02);
}

.offer-body {
    padding: 3rem;
}

.plan-name {
    font-size: 1.8rem;
    color: var(--color-primary);
    margin-bottom: 0.5rem;
}

/* plan-speed styles are inherited from main section, tweaks here if needed */
.plan-speed small {
    font-size: 0.6em;
    font-weight: 400;
    color: #666;
    display: block;
    /* Ensure it wraps */
    margin-top: 0.5rem;
}

.plan-price {
    display: flex;
    justify-content: center;
    align-items: baseline;
    margin-bottom: 2rem;
    color: var(--color-primary);
}

.plan-price .currency {
    font-size: 1.5rem;
    font-weight: 600;
    margin-right: 5px;
}

.plan-price .amount {
    font-size: 3rem;
    /* Reduced from 5rem */
    font-weight: 800;
    line-height: 1;
}

.plan-price .cents {
    font-size: 2rem;
    font-weight: 700;
    align-self: flex-start;
    margin-top: 10px;
}

.plan-price .period {
    font-size: 1rem;
    color: #999;
    margin-left: 5px;
    font-weight: 400;
}

.plan-benefits {
    list-style: none;
    padding: 0;
    margin-bottom: 2.5rem;
    text-align: left;
    display: inline-block;
}

.plan-benefits li {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.plan-benefits i {
    color: #28a745;
    margin-right: 10px;
    width: 20px;
    text-align: center;
}

.btn-success {
    background: #28a745;
    color: #fff;
    width: 100%;
    padding: 1.2rem;
    font-size: 1.2rem;
    font-weight: 700;
    border-radius: 50px;
    text-transform: uppercase;
    box-shadow: 0 5px 15px rgba(40, 167, 69, 0.4);
    display: block;
    margin-bottom: 1rem;
    transition: all 0.3s;
}

.btn-success:hover {
    background: #218838;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(40, 167, 69, 0.5);
}

.pulse-hover:hover {
    animation: pulse 1s infinite;
}

.scarcity-text {
    font-size: 0.9rem;
    color: #dc3545;
    font-weight: 600;
    margin-top: 1rem;
}

/* =========================================
   GAMER SECTION STYLES
   ========================================= */
.gamer-section {
    background: #0f0f13;
    /* Very dark background */
    color: #fff;
    padding: 8rem 0;
    margin: 0 !important;
    /* Fixed: Removed white gap */
    position: relative;
    border-top: none;
    /* Removed border to blend better */
}

.gamer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.gamer-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(90deg, #fff, #aaa);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.gamer-content .subtitle {
    font-size: 1.2rem;
    color: #ccc;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.gamer-benefits {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.gamer-benefits li {
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
    display: flex;
    align-items: center;
}

.gamer-benefits li i {
    color: var(--color-highlight);
    /* Use yellow/gold for exciting tech feel, or primary */
    font-size: 1.2rem;
    margin-right: 15px;
    width: 25px;
    text-align: center;
    text-shadow: 0 0 10px rgba(255, 193, 7, 0.4);
}

.gamer-note {
    background: rgba(255, 255, 255, 0.05);
    padding: 1rem;
    border-radius: 8px;
    font-size: 0.95rem;
    color: #aaa;
    border-left: 3px solid var(--color-primary);
    display: flex;
    align-items: center;
    gap: 10px;
}

.gamer-visual {
    position: relative;
}

.gamer-img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    border: 1px solid #333;
}

.ping-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: #000;
    border: 2px solid #00ff88;
    color: #00ff88;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.2);
    animation: pulse-green 2s infinite;
}

.ping-value {
    display: block;
    font-size: 2.5rem;
    font-weight: 900;
    line-height: 1;
}

.ping-label {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1px;
}

@keyframes pulse-green {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 255, 136, 0.4);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(0, 255, 136, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(0, 255, 136, 0);
    }
}

@media (max-width: 768px) {
    .gamer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .ping-badge {
        right: 0;
        bottom: -10px;
    }
}

/* --- MODAL DE DISPONIBILIDADE (V7 IMPLEMENTATION) --- */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    z-index: 2000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: #fff;
    width: 90%;
    max-width: 500px;
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    position: relative;
    transform: scale(0.8);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.modal-overlay.active .modal-content {
    transform: scale(1);
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--color-text-light);
    cursor: pointer;
    transition: color 0.3s ease;
}

.modal-close:hover {
    color: var(--color-primary);
}

.modal-body {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.modal-body.hidden {
    display: none;
}

.modal-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

#modal-success h3 {
    color: var(--color-primary-dark);
    font-size: 1.8rem;
    margin: 0;
}

#modal-fail h3 {
    color: var(--color-text);
    font-size: 1.5rem;
    margin: 0;
}

.pulse-animation i {
    animation: pulse-gold 2s infinite;
}

@keyframes pulse-gold {
    0% {
        transform: scale(1);
        text-shadow: 0 0 0 rgba(255, 183, 3, 0.4);
    }

    50% {
        transform: scale(1.1);
        text-shadow: 0 0 20px rgba(255, 183, 3, 0.7);
    }

    100% {
        transform: scale(1);
        text-shadow: 0 0 0 rgba(255, 183, 3, 0.4);
    }
}

/* Confetti Effect */
.confetti {
    position: absolute;
    width: 10px;
    height: 10px;
    background-color: #f00;
    animation: confetti-fall 3s linear infinite;
    top: -10%;
    z-index: 10;
}

@keyframes confetti-fall {
    0% {
        transform: translateY(0) rotate(0deg);
        opacity: 1;
    }

    100% {
        transform: translateY(500px) rotate(720deg);
        opacity: 0;
    }
}

/* --- FORM HELPER TEXT --- */
.form-helper-text {
    color: rgba(255, 255, 255, 0.9);
    margin-top: 0.8rem;
    font-size: 0.85rem;
    font-weight: 500;
    text-align: center;
    width: 100%;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

/* --- Updates for Benefits Page --- */
.banner-beneficios {
    background-image: url('images/cta-benefits.png') !important;
    background-position: center 30% !important;
    /* Adjust focus to faces */
}

/* ========================================================================
   SEÇÃO DE PLANOS MESH (PREMIUM)
   ======================================================================== */
.mesh-plans-section {
    padding: 5rem 0;
    background: #fdfdfd;
}

.mesh-section-title {
    text-align: center;
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--color-text);
    margin-bottom: 3.5rem;
}

.mesh-plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.mesh-card {
    background: #fff;
    border-radius: 20px;
    padding: 3rem 2rem;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 3px solid transparent;
    display: flex;
    flex-direction: column;
}

.mesh-card:hover {
    transform: translateY(-10px);
}

/* Themes */
.mesh-card.theme-red {
    border-color: #E63946;
}

.mesh-card.theme-gold {
    border-color: #FFB703;
}

.mesh-card.theme-gold:hover {
    box-shadow: 0 20px 50px rgba(255, 183, 3, 0.2);
}

.mesh-card.theme-red:hover {
    box-shadow: 0 20px 50px rgba(230, 57, 70, 0.2);
}

/* Badge */
.mesh-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #FFB703;
    color: #000;
    padding: 6px 20px;
    font-weight: 800;
    font-size: 0.8rem;
    border-radius: 50px;
    box-shadow: 0 5px 15px rgba(255, 183, 3, 0.3);
    z-index: 10;
}

/* Header */
.mesh-card-header {
    text-align: center;
    margin-bottom: 2rem;
}

.mesh-plan-name {
    font-size: 1.6rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.theme-red .mesh-plan-name {
    color: #E63946;
}

.theme-gold .mesh-plan-name {
    color: #FFB703;
}

.mesh-speed {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 0.5rem;
}

.mesh-speed .speed-value {
    font-size: 4.5rem;
    font-weight: 900;
    line-height: 1;
    color: #333;
}

.mesh-speed .speed-unit {
    font-size: 1.1rem;
    font-weight: 800;
    color: #444;
    margin-top: -5px;
}

.mesh-extra {
    font-size: 0.85rem;
    color: #666;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.mesh-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 5px;
}

.mesh-price .currency {
    font-size: 1.6rem;
    font-weight: 700;
}

.theme-red .mesh-price .currency {
    color: #E63946;
}

.theme-gold .mesh-price .currency {
    color: #FFB703;
}

.mesh-price .price-value {
    font-size: 4rem;
    font-weight: 900;
    color: #333;
}

.mesh-price .period {
    font-size: 1rem;
    color: #777;
}

/* Features */
.mesh-features {
    list-style: none;
    margin-bottom: 3rem;
    flex-grow: 1;
}

.mesh-features li {
    text-align: left;
    font-size: 0.95rem;
    font-weight: 600;
    color: #333;
    padding: 10px 0;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    line-height: 1.4;
}

.mesh-features li i.fa-check {
    color: #2ecc71;
    margin-top: 4px;
}

.mesh-features li i.fa-star {
    color: #FFB703;
    margin-top: 4px;
}

/* Footer & Buttons */
.mesh-footer {
    text-align: center;
}

.btn-mesh-whatsapp {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 1.2rem;
    border-radius: 50px;
    color: #fff;
    font-weight: 800;
    font-size: 1.1rem;
    text-decoration: none;
    transition: transform 0.2s;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    margin-bottom: 1.5rem;
}

.btn-mesh-whatsapp.red {
    background: #28a745;
}

/* WhatsApp Green based on mockup red card actually had green button */
.btn-mesh-whatsapp.gold {
    background: #FFB703;
    color: #000;
}

.btn-mesh-whatsapp:hover {
    transform: scale(1.03);
}

.mesh-timer {
    font-size: 0.85rem;
    font-weight: 700;
    color: #D62828;
}

@media (max-width: 768px) {
    .mesh-plans-grid {
        grid-template-columns: 1fr;
        padding: 0 15px;
    }
}


.mesh-swiper {
    padding: 2rem 1rem 3.5rem !important;
    max-width: 1000px;
    margin: 0 auto;
}

.mesh-swiper .swiper-slide {
    height: auto !important;
    display: flex;
    justify-content: center;
    padding: 1rem 0;
}

/* ==========================================================================
   HERO SLIDER (PREMIUM DESIGN)
   ========================================================================== */
.hero-slider {
    width: 100%;
    height: 75vh;
    min-height: 550px;
    position: relative;
    background: #000;
}

.hero-slider .swiper-slide {
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.slide-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.slide-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.3) 50%, rgba(230, 57, 70, 0.2) 100%);
    z-index: 2;
}

.slide-content {
    position: relative;
    z-index: 10;
    padding: 2rem 1rem;
}

.glass-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    padding: 2.5rem;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    max-width: 650px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    animation: slideUpFade 0.8s ease-out forwards;
}

@keyframes slideUpFade {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.glass-card .hero-tag {
    background: var(--color-primary);
    color: white;
    margin-bottom: 1.5rem;
}

.glass-card .hero-title {
    color: #fff;
    font-size: 3.2rem;
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.glass-card .hero-title span {
    background: linear-gradient(135deg, #ff4d5a 0%, #e63946 100%);
    /* Brighter red gradient */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
    /* Remove dark shadow from the colored text for clarity */
    filter: drop-shadow(0 0 5px rgba(230, 57, 70, 0.4));
    /* Subtle red glow instead */
}

.glass-card .hero-description {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.hero-features-mini {
    display: flex;
    gap: 1.5rem;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-features-mini span {
    color: #fff;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
}

.hero-features-mini i {
    color: var(--color-primary);
}

/* Pagination & Navigation Customization */
.hero-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: #fff;
    opacity: 0.5;
}

.hero-pagination .swiper-pagination-bullet-active {
    background: var(--color-primary);
    opacity: 1;
    width: 30px;
    border-radius: 5px;
}

.hero-nav-next,
.hero-nav-prev {
    color: #fff !important;
    background: rgba(0, 0, 0, 0.3);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    backdrop-filter: blur(5px);
}

.hero-nav-next:after,

.btn-mesh-whatsapp.red {
    background: #28a745;
}

/* WhatsApp Green based on mockup red card actually had green button */
.btn-mesh-whatsapp.gold {
    background: #FFB703;
    color: #000;
}

.btn-mesh-whatsapp:hover {
    transform: scale(1.03);
}

.mesh-timer {
    font-size: 0.85rem;
    font-weight: 700;
    color: #D62828;
}

@media (max-width: 768px) {
    .mesh-plans-grid {
        grid-template-columns: 1fr;
        padding: 0 15px;
    }
}


.mesh-swiper {
    padding: 2rem 1rem 3.5rem !important;
    max-width: 1000px;
    margin: 0 auto;
}

.mesh-swiper .swiper-slide {
    height: auto !important;
    display: flex;
    justify-content: center;
    padding: 1rem 0;
}

/* ==========================================================================
   HERO SLIDER (PREMIUM DESIGN)
   ========================================================================== */
.hero-slider {
    width: 100%;
    height: 75vh;
    min-height: 550px;
    position: relative;
    background: #000;
}

.hero-slider .swiper-slide {
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.slide-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.slide-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.3) 50%, rgba(230, 57, 70, 0.2) 100%);
    z-index: 2;
}

.slide-content {
    position: relative;
    z-index: 10;
    padding: 2rem 1rem;
}

.glass-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    padding: 2.5rem;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    max-width: 650px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    animation: slideUpFade 0.8s ease-out forwards;
}

@keyframes slideUpFade {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.glass-card .hero-tag {
    background: var(--color-primary);
    color: white;
    margin-bottom: 1.5rem;
}

.glass-card .hero-title {
    color: #fff;
    font-size: 3.2rem;
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.glass-card .hero-title span {
    background: linear-gradient(135deg, #ff4d5a 0%, #e63946 100%);
    /* Brighter red gradient */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
    /* Remove dark shadow from the colored text for clarity */
    filter: drop-shadow(0 0 5px rgba(230, 57, 70, 0.4));
    /* Subtle red glow instead */
}

.glass-card .hero-description {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.hero-features-mini {
    display: flex;
    gap: 1.5rem;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-features-mini span {
    color: #fff;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
}

.hero-features-mini i {
    color: var(--color-primary);
}

/* Pagination & Navigation Customization */
.hero-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: #fff;
    opacity: 0.5;
}

.hero-pagination .swiper-pagination-bullet-active {
    background: var(--color-primary);
    opacity: 1;
    width: 30px;
    border-radius: 5px;
}

.hero-nav-next,
.hero-nav-prev {
    color: #fff !important;
    background: rgba(0, 0, 0, 0.3);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    backdrop-filter: blur(5px);
}

.hero-nav-next:after,
.hero-nav-prev:after {
    font-size: 20px !important;
}

/* Responsividade Slider */
@media (max-width: 768px) {
    .hero-slider {
        height: 60vh;
        min-height: 450px;
    }

    .glass-card {
        padding: 1rem;
        max-width: 95%;
        margin: 0 auto;
        text-align: center;
        border-radius: 20px;
        background: rgba(0, 0, 0, 0.45);
        /* Lighter, cleaner background */
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
    }

    .glass-card .hero-tag {
        font-size: 0.7rem;
        padding: 0.25rem 0.7rem;
        margin-bottom: 0.6rem;
    }

    .glass-card .hero-title {
        font-size: 1.55rem;
        margin-bottom: 0.6rem;
        line-height: 1.25;
    }

    .glass-card .hero-description {
        font-size: 0.88rem;
        margin-bottom: 1rem;
        line-height: 1.35;
    }

    .hero-features-mini {
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.6rem;
        margin-top: 1rem;
        padding-top: 1rem;
    }

    .hero-features-mini span {
        font-size: 0.75rem;
    }

    .hero-nav-next,
    .hero-nav-prev {
        display: none;
        /* Hide navigation arrows on mobile for cleaner look */
    }
}

/* --- Mesh Intro (Educational) --- */
.mesh-intro {
    text-align: center;
    max-width: 850px;
    margin: 0 auto;
    padding: 0 1rem;
}

.mesh-intro-text {
    font-size: 1.15rem;
    color: var(--color-text-light);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.mesh-intro-text strong {
    color: var(--color-primary);
}

.btn-mesh-about {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #fff;
    color: var(--color-primary);
    padding: 0.8rem 2.2rem;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    font-size: 1.05rem;
    overflow: hidden;
    border: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    z-index: 1;
}

/* Rotating Neon Border Layer */
.btn-mesh-about::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(
        transparent, 
        transparent, 
        transparent, 
        var(--color-primary)
    );
    animation: rotate-neon 3s linear infinite;
    z-index: -2;
}

/* Inner Background Mask */
.btn-mesh-about::after {
    content: '';
    position: absolute;
    inset: 2px;
    background: #fff;
    border-radius: 50px;
    z-index: -1;
    transition: all 0.3s ease;
}

@keyframes rotate-neon {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.btn-mesh-about:hover {
    color: #fff;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 30px rgba(230, 57, 70, 0.3);
}

.btn-mesh-about:hover::after {
    background: var(--color-primary);
}

.btn-mesh-about:hover i {
    transform: rotate(360deg);
}

.btn-mesh-about i {
    transition: transform 0.6s ease;
}

@media (max-width: 768px) {
    .mesh-section-title {
        margin-bottom: 2rem;
    }

    .mesh-intro-text {
        font-size: 1.05rem;
        margin-bottom: 1.5rem;
    }

    .btn-mesh-about {
        width: 100%;
        justify-content: center;
        padding: 1rem;
    }
}


/* --- Plan Card Compacting (Mobile) --- */
@media (max-width: 768px) {

    /* Regular Plans */
    .plan-card-modern {
        padding: 1.25rem 1rem;
    }

    .plan-header {
        margin-bottom: 1rem;
    }

    .plan-name {
        font-size: 0.95rem;
        margin-bottom: 0.2rem;
    }

    .plan-speed .speed-value {
        font-size: 2.8rem;
    }

    .plan-price {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }

    .plan-features {
        margin-bottom: 1rem;
    }

    .plan-features li {
        padding: 0.35rem 0;
        font-size: 0.85rem;
        gap: 8px;
    }

    /* Mesh Plans */
    /* Mesh Plans Premium Overhaul */
    .mesh-card {
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.3);
        border-radius: 24px;
        padding: 2.5rem 2rem;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
        transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        overflow: hidden;
        /* Fix square corners leakage */
        background-clip: padding-box;
        position: relative;
    }

    .mesh-card:hover {
        transform: translateY(-12px) scale(1.02);
    }

    .mesh-card.theme-red {
        border-bottom: 6px solid #e63946;
        box-shadow: 0 15px 45px rgba(230, 57, 70, 0.15);
    }

    .mesh-card.theme-gold {
        border-bottom: 6px solid #ffb703;
        box-shadow: 0 15px 45px rgba(255, 183, 3, 0.15);
    }

    .mesh-plan-name {
        font-weight: 900;
        letter-spacing: -0.5px;
        line-height: 1.1;
    }

    .mesh-speed .speed-value {
        color: #1a1a1a;
        background: linear-gradient(135deg, #1a1a1a 0%, #444 100%);
        -webkit-background-clip: text;
        background-clip: text;
        -webkit-text-fill-color: transparent;
    }

    .mesh-price .price-value {
        font-weight: 900;
        color: #1a1a1a;
    }

    .btn-mesh-whatsapp {
        border-radius: 12px;
        font-weight: 900;
        text-transform: uppercase;
        letter-spacing: 1px;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 12px;
        text-decoration: none;
        color: #fff;
    }

    .btn-mesh-whatsapp.red {
        background: linear-gradient(135deg, #e63946 0%, #b91d2c 100%);
    }

    .btn-mesh-whatsapp.gold {
        background: linear-gradient(135deg, #ffb703 0%, #fb8500 100%);
        color: #000;
    }

    .btn-mesh-whatsapp:hover {
        transform: scale(1.05);
        box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
    }
}


@media (max-width: 768px) {

    .plans-swiper,
    .mesh-swiper {
        padding: 1rem 0.5rem 2.5rem !important;
    }

    .swiper-pagination {
        margin-top: 0.5rem !important;
    }
}


@media (max-width: 768px) {
    .new-plans-title {
        margin-bottom: 2rem !important;
    }
}

/* --- Final Hero Slider Refinement (Extra Compact) --- */
@media (max-width: 768px) {
    .slide-content {
        padding: 0.5rem 0.5rem;
        /* Reduced from 2rem */
    }

    .cta-button-hero {
        font-size: 1rem;
        padding: 0.75rem 1.8rem;
        margin-top: 1rem;
    }

    .glass-card .hero-tag {
        margin-bottom: 0.5rem;
    }

    .glass-card .hero-description {
        margin-bottom: 0.75rem;
        line-height: 1.25;
    }

    .hero-features-mini {
        padding-top: 0.5rem;
        margin-top: 0.5rem;
        gap: 0.5rem;
    }
}


/* --- Mesh Plans Compacting (Aggressive - Mobile) --- */
@media (max-width: 768px) {
    .mesh-plans-section {
        padding: 2.5rem 0;
    }

    .mesh-section-title {
        font-size: 1.8rem;
        margin-bottom: 1rem !important;
    }

    .mesh-intro-text {
        font-size: 0.95rem;
        margin-bottom: 1rem;
    }

    .btn-mesh-about {
        padding: 0.6rem 1.5rem;
        font-size: 0.9rem;
    }

    .mesh-card {
        padding: 1.25rem 1rem !important;
        border-radius: 24px !important;
        /* Force consistency */
        overflow: hidden !important;
        background-clip: padding-box !important;
    }

    .mesh-card-header {
        margin-bottom: 0.75rem !important;
    }

    .mesh-plan-name {
        font-size: 1.2rem !important;
        margin-bottom: 0.5rem !important;
    }

    .mesh-speed .speed-value {
        font-size: 2.8rem !important;
    }

    .mesh-speed .speed-unit {
        font-size: 0.8rem !important;
    }

    .mesh-extra {
        margin-bottom: 0.75rem !important;
        font-size: 0.75rem !important;
    }

    .mesh-price {
        font-size: 1.2rem;
    }

    .mesh-price .price-value {
        font-size: 2rem !important;
    }

    .mesh-features {
        margin-bottom: 1.25rem !important;
        padding-top: 0.75rem;
        border-top: 1px solid rgba(0, 0, 0, 0.05);
    }

    .mesh-features li {
        padding: 0.25rem 0 !important;
        font-size: 0.8rem !important;
    }

    .btn-mesh-whatsapp {
        padding: 0.7rem !important;
        font-size: 0.85rem !important;
    }

    .mesh-badge {
        top: -12px;
        font-size: 0.7rem;
        padding: 4px 15px;
    }
}

/* Hide Pagination */

/* Hide Pagination */
.plans-swiper-container .swiper-pagination,
.mesh-swiper-container .swiper-pagination {
    display: none !important;
}


/* Mesh Header Tag Premium */

/* Mesh Header Tag Premium */
.offer-tag {
    background: rgba(230, 57, 70, 0.2);
    color: #ff4d5a;
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 900;
    letter-spacing: 1px;
    display: inline-block;
    margin-bottom: 1rem;
    border: 1px solid rgba(230, 57, 70, 0.3);
}

/* 
   =============================================================================
   14. WI-FI MESH PAGE REFINEMENTS (COMPACTING)
   OtimizaÃ§Ãµes para tornar a pÃ¡gina de Mesh mais densa e clean.
   =============================================================================
*/

/* Redução global de padding em seções de Mesh + Tema Midnight */
.hero-mesh {
    padding: 3.5rem 0 !important;
}

.offer-section {
    background: radial-gradient(circle at center, #2B2D42 0%, #16181B 100%) !important;
    position: relative;
    overflow: hidden;
    margin: 0 !important;
    /* Fixed: Removed white gap */
}

.offer-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('images/noise.png');
    /* Opcional: add a subtle noise png if exists, otherwise this will skip */
    opacity: 0.05;
    pointer-events: none;
}

.offer-header h2 {
    color: #fff !important;
}

.offer-header p {
    color: rgba(255, 255, 255, 0.7) !important;
}

.section-padding {
    padding: 3.5rem 0 !important;
}

/* Force-glue all sections by removing any top/bottom margins and borders */
.hero-mesh,
.wifi-evolution,
.mesh-problem-solution,
.gamer-section,
.offer-section,
.final-cta-section {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    border-top: none !important;
    border-bottom: none !important;
}

@media (max-width: 768px) {

    .hero-mesh,
    .section-padding {
        padding: 2rem 1rem !important;
    }

    .hero-mesh-title {
        font-size: 1.8rem !important;
        line-height: 1.2 !important;
    }

    .hero-mesh-description {
        font-size: 0.95rem !important;
        margin-bottom: 1.5rem !important;
    }
}

/* Visual Comparison Compact (Legacy vs Mesh Pro) */
.visual-comparison {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

@media (min-width: 1024px) {
    .visual-comparison {
        flex-direction: row;
        align-items: stretch;
    }

    .evolution-arrow {
        display: flex;
        align-items: center;
        font-size: 2rem;
        color: var(--color-primary);
    }
}

.scenario-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    flex: 1;
    display: flex;
    flex-direction: column;
}

.scenario-image-wrapper {
    height: 180px;
    overflow: hidden;
    position: relative;
}

.scenario-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.scenario-details {
    padding: 1.25rem;
}

.scenario-details h3 {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
}

.scenario-points li {
    font-size: 0.85rem;
    margin-bottom: 0.4rem;
    display: flex;
    gap: 8px;
    align-items: center;
}

/* Problem vs Solution Comparison Compact */
.mesh-comparison {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    max-width: 900px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .mesh-comparison {
        grid-template-columns: 1fr 1fr;
    }
}

.card-comparison {
    background: #fff;
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.card-comparison.recommended {
    border: 2px solid var(--color-primary);
    background: linear-gradient(135deg, #fff, #fff9f9);
}

.card-comparison h3 {
    font-size: 1.15rem;
    margin-bottom: 1rem;
}

.card-comparison ul li {
    font-size: 0.88rem;
    margin-bottom: 0.6rem;
}

/* Gamer Section Compact */
.gamer-section {
    background-color: #1a1c23;
    color: #fff;
    margin: 0 !important;
    /* Fixed: Removed white gap */
}

.gamer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .gamer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.gamer-content h2 {
    color: #fff;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.gamer-benefits li {
    font-size: 0.9rem;
    margin-bottom: 0.8rem;
    display: flex;
    gap: 10px;
}

.gamer-benefits i {
    color: var(--color-primary);
}

.gamer-visual {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
}

.gamer-img {
    width: 100%;
    height: auto;
    display: block;
}

@media (max-width: 768px) {
    .gamer-content h2 {
        font-size: 1.6rem;
    }

    .gamer-benefits li {
        font-size: 0.85rem;
    }

    .ping-badge {
        font-size: 0.7rem !important;
        padding: 5px 10px !important;
    }
}