/* Reset e Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden  
}

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

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    cursor: pointer;
    transition: all .3s ease;
    text-align: center
}

.btn-primary {
    background: linear-gradient(135deg, #3b82f6, #1e40af);
    color: #fff
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(59, 130, 246, .4)
}

.btn-whatsapp {
    background: #25d366;
    color: #fff
}

.btn-whatsapp:hover {
    background: #1ea952;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(37, 211, 102, .4)
}

.btn-large {
    padding: 18px 36px;
    font-size: 18px
}

/* Cabeçalho */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(26, 27, 58, .95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all .3s ease
}

.navbar {
    padding: 8px 0
}

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

.nav-brand h2 {
    color: #fff;
    font-weight: 700;
    font-size: 22px
}

.nav-brand img {
    height: 44px;
    display: block
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 1.5rem
}

.nav-menu a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: color .3s ease
}

.nav-menu a:hover {
    color: #3b82f6
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: #fff;
    margin: 3px 0;
    transition: .3s
}

/* Seção Hero */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background: linear-gradient(135deg, #1a1b3a 0%, #2d1b69 50%, #1a1b3a 100%);
    overflow: hidden
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1
}

.hero-shapes {
    position: relative;
    width: 100%;
    height: 100%
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(45deg, rgba(59, 130, 246, .1), rgba(147, 51, 234, .1));
    animation: float 6s ease-in-out infinite
}

.shape-1 {
    width: 300px;
    height: 300px;
    top: 10%;
    right: 10%;
    animation-delay: 0s
}

.shape-2 {
    width: 200px;
    height: 200px;
    bottom: 20%;
    left: 5%;
    animation-delay: 2s
}

.shape-3 {
    width: 150px;
    height: 150px;
    top: 50%;
    right: 30%;
    animation-delay: 4s
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0) rotate(0)
    }

    50% {
        transform: translateY(-20px) rotate(180deg)
    }
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2
}

.hero-text h1 {
    font-size: 4rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 1rem;
    line-height: 1.1
}

.hero-text h2 {
    font-size: 2.5rem;
    font-weight: 600;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem
}

.hero-text p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, .8);
    margin-bottom: 2rem;
    line-height: 1.6
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap
}

/* TV Mockup */
.tv-mockup {
    background: linear-gradient(145deg, #2a2a2a, #1a1a1a);
    border-radius: 20px;
    padding: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, .3);
    position: relative
}

.tv-mockup::before {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 20px;
    background: #333;
    border-radius: 10px
}

.tv-screen {
    background: #000;
    border-radius: 10px;
    padding: 20px;
    aspect-ratio: 16/9
}

.channel-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(3, 1fr);
    gap: 10px;
    height: 100%
}

.channel-item {
    background: linear-gradient(45deg, #3b82f6, #8b5cf6, #f59e0b);
    border-radius: 8px;
    animation: channelGlow 3s ease-in-out infinite
}

.channel-item:nth-child(odd) {
    animation-delay: .5s
}

.channel-item:nth-child(even) {
    animation-delay: 1s
}

@keyframes channelGlow {

    0%,
    100% {
        opacity: .7;
        transform: scale(1)
    }

    50% {
        opacity: 1;
        transform: scale(1.05)
    }
}

/* Benefícios */
.benefits {
    padding: 100px 0;
    background: #f8fafc
}

.section-header {
    text-align: center;
    margin-bottom: 4rem
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1b3a;
    margin-bottom: 1rem
}

.section-header p {
    font-size: 1.2rem;
    color: #64748b
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem
}

.benefit-item {
    background: #fff;
    padding: 2.5rem 2rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, .08);
    transition: transform .3s ease, box-shadow .3s ease
}

.benefit-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, .15)
}

.benefit-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem
}

.benefit-icon i {
    font-size: 2rem;
    color: #fff
}

.benefit-item h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1a1b3a;
    margin-bottom: 1rem
}

.benefit-item p {
    color: #64748b;
    line-height: 1.6
}

/* Ícone servidor para o card de Servidores */
.benefit-icon.accent-amber {
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
}

/* Planos */
.plans {
    padding: 100px 0;
    background: linear-gradient(135deg, #1a1b3a 0%, #2d1b69 100%)
}

.plans .section-header h2,
.plans .section-header p {
    color: #fff
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto
}

.plan-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .2);
    transition: transform .3s ease, box-shadow .3s ease;
    position: relative
}

.plan-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, .3)
}

.plan-featured {
    transform: scale(1.05);
    border: 3px solid #8b5cf6
}

.plan-badge {
    position: absolute;
    top: 20px;
    right: -30px;
    background: #6529f0;
    color: #fff;
    padding: 8px 40px;
    font-weight: 600;
    font-size: 14px;
    transform: rotate(45deg);
    z-index: 10
}

.plan-header {
    padding: 2rem;
    text-align: center;
    color: #fff;
    position: relative
}

.plan-basic {
    background: linear-gradient(135deg, #3b82f6, #1e40af)
}

.plan-premium {
    background: linear-gradient(135deg, #8b5cf6, #6b46c1)
}

.plan-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem
}

.plan-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: .25rem
}

.plan-price .currency {
    font-size: 1.5rem;
    font-weight: 600
}

.plan-price .amount {
    font-size: 3rem;
    font-weight: 800
}

.plan-price .period {
    font-size: 1.2rem;
    font-weight: 500;
    opacity: .8
}

.plan-features {
    padding: 2rem
}

.plan-features ul {
    list-style: none
}

.plan-features li {
    display: flex;
    align-items: center;
    gap: .75rem;
    padding: .75rem 0;
    border-bottom: 1px solid #f1f5f9
}

.plan-features li:last-child {
    border-bottom: none
}

/* itens desativados: ícone vermelho e itens ativados: com  icone verde texto um pouco mais frio */
.plan-features i {
    color: #10b981;
    font-size: 1.1rem
}

.plan-features li.disabled i {
    color: #ef4444;
}

.plan-btn {
    width: calc(100% - 4rem);
    margin: 0 2rem 2rem;
    justify-content: center
}

/* FAQ */
.faq {
    padding: 100px 0;
    background: #f8fafc
}

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

.faq-item {
    background: #fff;
    border-radius: 12px;
    margin-bottom: 1rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, .08);
    overflow: hidden
}

.faq-question {
    padding: 1.5rem 2rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color .3s ease
}

.faq-question:hover {
    background: #f8fafc
}

.faq-question h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1a1b3a
}

.faq-question i {
    color: #64748b;
    transition: transform .3s ease
}

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

.faq-answer {
    padding: 0 2rem;
    max-height: 0;
    overflow: hidden;
    transition: all .3s ease
}

.faq-item.active .faq-answer {
    padding: 0 2rem 1.5rem;
    max-height: 200px
}

.faq-answer p {
    color: #64748b;
    line-height: 1.6
}

/* Contato */
.contact {
    padding: 100px 0;
    background: linear-gradient(135deg, #1a1b3a 0%, #2d1b69 100%)
}

.contact-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center
}

.contact-info h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1rem
}

.contact-info p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, .8);
    margin-bottom: 2rem
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 1.5rem
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 1rem
}

.contact-method i {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, .1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #3b82f6;
    font-size: 1.5rem
}

.contact-method h4 {
    color: #fff;
    font-weight: 600;
    margin-bottom: .25rem
}

.contact-method p {
    color: rgba(255, 255, 255, .8);
    margin: 0
}

.contact-cta {
    text-align: center
}

/* Rodapé */
.footer {
    background: #0f172a;
    color: #fff;
    padding: 3rem 0 1rem
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem
}

.footer-brand h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem
}

.footer-brand i {
    color: #3b82f6;
    margin-right: 8px
}

.footer-brand p {
    color: rgba(255, 255, 255, .7)
}

.footer-links h4,
.footer-contact h4 {
    font-weight: 600;
    margin-bottom: 1rem
}

.footer-links ul {
    list-style: none
}

.footer-links a {
    color: rgba(255, 255, 255, .7);
    text-decoration: none;
    transition: color .3s ease
}

.footer-links a:hover {
    color: #3b82f6
}

.footer-contact p {
    color: rgba(255, 255, 255, .7);
    margin-bottom: .5rem
}

.footer-contact i {
    margin-right: 8px;
    color: #3b82f6
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .1);
    padding-top: 1rem;
    text-align: center
}

.footer-bottom p {
    color: rgba(255, 255, 255, .5)
}

/* Botão voltar ao topo */
#btnTopo {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
    background-color: #008afc;
    color: #1a1b3a;
    border: none;
    padding: 12px 15px;
    border-radius: 50%;
    font-size: 18px;
    cursor: pointer;
    box-shadow: 0 4px 8px rgba(0, 0, 0, .3);
    transition: all .3s ease
}

#btnTopo:hover {
    background-color: #ff9900;
    transform: scale(1.1)
}

/* ===== Responsivo (<= 768px) ===== */
@media (max-width:768px) {
    .navbar {
        padding: 4px 0
    }

    .nav-brand h2 {
        font-size: 18px
    }

    .nav-brand img {
        height: 26px
    }

    .nav-toggle {
        display: flex
    }

    .nav-menu {
        position: fixed;
        top: 44px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 44px);
        background: rgba(26, 27, 58, .98);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 16px;
        transition: left .3s ease;
        gap: 12px
    }

    .nav-menu.active {
        left: 0
    }

    .nav-menu a {
        font-size: 15px;
        padding: 8px 0
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        text-align: center
    }

    .hero-text h1 {
        font-size: 2.4rem
    }

    .hero-text h2 {
        font-size: 1.6rem
    }

    .hero-buttons {
        justify-content: center
    }

    .benefits-grid {
        grid-template-columns: 1fr
    }

    .plans-grid {
        grid-template-columns: 1fr
    }

    .plan-featured {
        transform: none
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        text-align: center
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center
    }
}

/* ===== Planos (Plan Features) ===== */

/* ===== Subtópicos (listas internas dos planos) ===== */
.plan-features .feature-list li .title {
    display: inline-block;
    font-weight: 600;
    /* deixa o título do grupo mais forte */
}

/* bloco da sublista recuado + “trilho” à esquerda */
.plan-features .feature-list li ul.sub {
    margin: 6px 0 0 34px;
    /* recuo visual */
    padding-left: 12px;
    border-left: 2px dashed #e5e7eb;
    /* linha guia à esquerda (estilo tracejado) */
}

/* cada linha do subtópico, mais discreta e sem a borda do item principal */
.plan-features .feature-list li ul.sub li {
    padding: 6px 0;
    border: 0;
    font-size: 0.95rem;
    color: #64748b;
    position: relative;
    list-style: none;
    /* sem marcadores padrão */
}

/* bolinha sutil para cada subtópico */
.plan-features .feature-list li ul.sub li::before {
    content: "";
    position: absolute;
    left: -12px;
    /* cai sobre o “trilho” */
    top: 11px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #e5e7eb;
}


.plan-features li.disabled span {
    color: #475569;
}

/* (opcional) dá um espacinho fixo pro ícone dos itens principais */
.plan-features .feature-list li i {
    flex: 0 0 18px;
}

/* ===== Correção de alinhamento dos subtópicos com o título ===== */
/* Mantém flex para itens simples (sem sublista) */
.plan-features .feature-list>li {
    display: flex;
    align-items: center;
    gap: .75rem;
}

/* Para itens que possuem sublista, vira bloco vertical e alinha tudo pelo texto */
.plan-features .feature-list>li:has(ul.sub) {
    display: block;
    /* título em cima + sublista embaixo */
    position: relative;
    padding: .75rem 0 .75rem 28px;
    /* mesmo recuo do texto dos itens simples */
    border-bottom: 1px solid #f1f5f9;
}

/* Ícone (check/x) alinhado ao topo do bloco */
.plan-features .feature-list>li:has(ul.sub)>i {
    position: absolute;
    left: 0;
    top: .9rem;
    /* ajuste fino vertical do ícone */
    line-height: 1;
}

/* Título como bloco (garante quebra acima da sublista) */
.plan-features .feature-list>li:has(ul.sub) .title {
    display: block;
    font-weight: 600;
}

/* Sublista alinhada exatamente com o título (sem “trilho” lateral) */
.plan-features .feature-list li ul.sub {
    margin: 6px 0 0 0;
    /* zera recuo extra */
    padding-left: 16px;
    /* só espaço do marcador */
    border-left: none;
    /* remove linha tracejada */
}

/* Subitens com marcadores padrão (bolinha) e sem pseudo-bolinha custom */
.plan-features .feature-list li ul.sub li {
    padding: 6px 0;
    border: 0;
    font-size: 0.95rem;
    color: #64748b;
    list-style: disc;
    position: static;
}

.plan-features .feature-list li ul.sub li::before {
    content: none;
}

/* ===== Showcase / Destaques ===== */
.showcase {
    padding: 80px 0;
    background: linear-gradient(180deg, #111a2f 0%, #16243f 60%, #1a1b3a 100%);
}

.showcase-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 3rem;
    align-items: center;
}

.showcase-media {
    position: relative;
}

.showcase-image {
    width: 100%;
    border-radius: 18px;
    display: block;
    box-shadow: 0 30px 60px rgba(0, 0, 0, .35);
}

/* Selos sobre a imagem */
.showcase-badge {
    position: absolute;
    left: 16px;
    right: auto;
    background: #0b2c57;
    /* azul escuro */
    color: #fff;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .4px;
    padding: 12px 18px;
    border-radius: 14px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, .35);
    font-size: 1rem;
    line-height: 1.2;
    white-space: nowrap;
}

.showcase-badge.badge-top {
    top: -16px;
}

.showcase-badge.badge-bottom {
    bottom: -16px;
    left: 120px;
}

/* Texto e bullets */
.showcase-text h2 {
    color: #fff;
    font-size: 2.2rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 1.25rem;
}

.showcase-point {
    display: grid;
    grid-template-columns: 64px 1fr;
    gap: 14px;
    margin: 18px 0;
}

.point-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: 2px solid #fbbf24;
    color: #fbbf24;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    background: rgba(251, 191, 36, .08);
}

.showcase-point h4 {
    color: #fefce8;
    font-weight: 700;
    margin: 4px 0 4px;
}

.showcase-point p {
    color: rgba(255, 255, 255, .8);
    margin: 0;
}

/* Botão amarelo */
.btn-cta {
    background: #facc15;
    color: #0f172a;
    margin-top: 18px;
}

.btn-cta:hover {
    background: #eab308;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(250, 204, 21, .35);
}

/* Responsivo */


/* 4 cards lado a lado quando houver espaço */
@media (min-width: 1100px) {
    .benefits-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

/* ========= GLOBAL: garantias mobile ========= */
img,
video {
    max-width: 100%;
    height: auto;
    display: block;
}

.benefit-item,
.plan-card {
    overflow: hidden;
}

/* previne “vazar” conteúdo */
.btn,
.btn-large {
    touch-action: manipulation;
}

/* melhora clique em touch */

/* ========= BREAKPOINT ≥1100px: 4 colunas nos benefícios ========= */
@media (min-width:1100px) {
    .benefits-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

/* ========= BREAKPOINT 992–1099px (tablets landscape / notebooks pequenos) ========= */
@media (max-width:1099px) {

    /* Hero: junta em 1 coluna quando apertar */
    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .hero {
        min-height: auto;
        padding: 80px 0 60px;
    }

    .tv-mockup {
        max-width: 780px;
        margin: 0 auto;
    }

    .tv-screen {
        padding: 12px;
    }

    .channel-grid {
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: repeat(2, 1fr);
        gap: 8px;
    }

    /* Planos: tipografia um pouco menor */
    .plan-price .amount {
        font-size: 2.6rem;
    }

    .plan-price .currency {
        font-size: 1.25rem;
    }

    .plan-price .period {
        font-size: 1rem;
    }
}

/* ========= BREAKPOINT 768–991px (tablets retrato) ========= */
@media (min-width:768px) and (max-width:991px) {
    .benefits-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
}

/* ========= BREAKPOINT ≤767px (celulares) ========= */
@media (max-width:767px) {

    /* Container e tipografia */
    .container {
        padding: 0 14px;
    }

    .hero-text h1 {
        font-size: 1.9rem;
    }

    .hero-text h2 {
        font-size: 1.25rem;
    }

    .hero-text p {
        font-size: 1.05rem;
    }

    /* Hero / TV */
    .tv-mockup {
        padding: 12px;
        border-radius: 14px;
    }

    .tv-screen {
        padding: 10px;
    }

    .channel-grid {
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: repeat(2, 1fr);
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-buttons .btn {
        width: 100%;
        max-width: 320px;
    }

    /* Showcase (seção nova com os selos) */
    .showcase-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .showcase {
        padding: 56px 0;
    }

    .showcase-text h2 {
        font-size: 1.7rem;
    }

    .showcase-badge {
        font-size: .86rem;
        padding: 10px 14px;
    }

    .showcase-badge.badge-top {
        top: -10px;
    }

    .showcase-badge.badge-bottom {
        bottom: -10px;
        left: 16px;
    }

    /* Benefícios */
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .benefit-item {
        padding: 1.75rem 1.25rem;
    }

    .benefit-icon {
        width: 64px;
        height: 64px;
    }

    .benefit-item h3 {
        font-size: 1.25rem;
    }

    .benefit-item p {
        font-size: .95rem;
    }

    /* Planos */
    .plan-badge {
        top: 14px;
        right: -22px;
        padding: 6px 34px;
        font-size: 12px;
    }

    .plan-header {
        padding: 1.5rem;
    }

    .plan-price .amount {
        font-size: 2.2rem;
    }

    .plan-features {
        padding: 1.25rem;
    }

    .plan-features .feature-list>li {
        padding: .65rem 0;
    }

    .plan-btn {
        width: calc(100% - 2.5rem);
        margin: 0 1.25rem 1.25rem;
    }

    /* FAQ: toque confortável */
    .faq-question {
        padding: 1.25rem 1rem;
    }

    .faq-answer {
        padding: 0 1rem;
    }

    /* Contato */
    .contact-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        text-align: center;
    }

    .contact-methods {
        align-items: center;
    }

    .contact-method i {
        width: 44px;
        height: 44px;
        font-size: 1.2rem;
    }

    .btn-cta,
    .btn {
        width: 100%;
    }

    /* Footer */
    .footer {
        padding: 2rem 0 1rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

/* ========= BREAKPOINT ≤480px (telefones pequenos) ========= */
@media (max-width:480px) {
    .nav-menu {
        top: 40px;
        height: calc(100vh - 40px);
    }

    .showcase-badge {
        font-size: .8rem;
        padding: 8px 12px;
    }
}

/* ========= (opcional) reduzir animações em telas pequenas ========= */
@media (max-width:767px) {
    [data-aos] {
        transform: none !important;
        transition: none !important;
        opacity: 1 !important;
    }
}

/* ===== Faixa rolante (ticker) ===== */
.ticker {
    width: 100%;
    overflow: hidden;
    background: #facc15;
    /* amarelo do seu tema */
    color: #0f172a;
    /* texto escuro */
    border-top: 1px solid rgba(0, 0, 0, .08);
    border-bottom: 1px solid rgba(0, 0, 0, .08);
}

.ticker__inner {
    display: flex;
    width: max-content;
    animation: ticker-scroll var(--duration, 40s) linear infinite;
}

.ticker__list {
    display: flex;
    gap: 2.25rem;
    /* espaço entre repetições */
    padding: 10px 1.25rem;
    margin: 0;
    list-style: none;
    white-space: nowrap;
}

.ticker__list li {
    display: inline-flex;
    align-items: center;
    font-weight: 800;
    letter-spacing: .4px;
    font-size: .95rem;
    text-transform: uppercase;
}

/* Ícone de TV no ticker */
.ticker__icon {
    font-size: 1rem;
    /* ajuste o tamanho do ícone aqui */
    margin-right: 12px;
    color: #0f172a;
    /* mesma cor do texto da faixa */
    opacity: .85;
}

@media (max-width:768px) {
    .ticker__icon {
        font-size: .9rem;
        margin-right: 8px;
    }
}

@keyframes ticker-scroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }

    /* como temos 2 listas iguais, -50% cria loop perfeito */
}

/* pausa ao passar o mouse (opcional) */
.ticker:hover .ticker__inner {
    animation-play-state: paused;
}

/* mobile: fontes e espaçamentos menores */
@media (max-width:768px) {
    .ticker__list {
        gap: 1.25rem;
        padding: 8px 1rem;
    }

    .ticker__list li {
        font-size: .85rem;
    }

    .ticker__list .dot {
        width: 7px;
        height: 7px;
        margin-right: 8px;
    }
}