/* CSS Otimizado - Rio Grande IPTV - Ícones SEM FUNDO */

/* ===== VARIÁVEIS CSS OTIMIZADAS ===== */
:root {
    /* Cores principais */
    --primary: #ff6b35;
    --secondary: #8b5cf6;
    --tertiary: #ff3d71;
    --dark: #0d0d0f;
    --dark-2: #161618;
    --dark-3: #1c1c20;
    --white: #ffffff;
    --gray: #a8a8b3;
    
    /* Gradientes otimizados */
    --gradient-1: linear-gradient(135deg, #ff6b35, #ff3d71);
    --gradient-2: linear-gradient(135deg, #8b5cf6, #ff6b35);
    --gradient-3: linear-gradient(135deg, #ff3d71, #8b5cf6);
    
    /* Sombras otimizadas */
    --shadow: 0 8px 32px #0003;
    --shadow-hover: 0 12px 40px #0006;
    --glow: 0 0 20px #ff6b3550;
    
    /* Filtros de cores pré-calculados */
    --filter-orange: invert(45%) sepia(85%) saturate(2275%) hue-rotate(346deg) brightness(102%) contrast(101%);
    --filter-purple: invert(35%) sepia(91%) saturate(1796%) hue-rotate(263deg) brightness(99%) contrast(94%);
    --filter-pink: invert(25%) sepia(100%) saturate(1789%) hue-rotate(338deg) brightness(102%) contrast(97%);
}

/* ===== RESET MÍNIMO ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: var(--dark);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

/* ===== LAYOUT BASE ===== */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

section {
    padding: 4rem 0;
}

section:nth-child(even) {
    background: var(--dark-2);
}

/* ===== TIPOGRAFIA ===== */
h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    line-height: 1.1;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
}

h2 {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 700;
    text-align: center;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 3rem;
}

h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

p {
    color: var(--gray);
    margin-bottom: 1rem;
}

/* ===== HEADER ===== */
.navbar {
    background: var(--dark-2);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 107, 53, 0.2);
}

.logo {
    display: flex;
    align-items: center;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Botão WhatsApp no Header - Desktop */
.whatsapp-btn {
    background: var(--gradient-1);
    color: var(--white);
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: var(--shadow);
}

.whatsapp-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.whatsapp-btn .whatsapp-icon-header {
    width: 20px;
    height: 20px;
    filter: brightness(0) invert(1);
}

/* Esconder botão WhatsApp no mobile */
@media (max-width: 768px) {
    .whatsapp-btn {
        display: none;
    }
}

.logo-img {
    height: 50px;
    width: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.logo:hover .logo-img {
    transform: scale(1.05);
}

/* ===== HERO SECTION ===== */
.hero {
    min-height: 90vh;
    display: flex;
    align-items: center;
    text-align: center;
    position: relative;
    background: var(--dark);
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(255, 107, 53, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(139, 92, 246, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--gradient-1);
    opacity: 0.05;
    pointer-events: none;
    z-index: -1;
}

.intro-text {
    font-size: 1.3rem;
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto 3rem;
}

/* ===== ÍCONES FEATURES - SEM FUNDO ===== */
.features-icons {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 2rem;
    margin: 3rem 0;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.icon-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem 1rem;
    background: var(--dark-3);
    border-radius: 20px;
    border: 1px solid rgba(255, 107, 53, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.icon-item:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 107, 53, 0.4);
    box-shadow: var(--glow);
}

/* Container do ícone - SEM FUNDO */
.icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    /* SEM background - apenas container */
}

/* SVG do ícone - COM COR */
.icon-svg {
    width: 60px;
    height: 60px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.icon-item:hover .icon-svg {
    transform: scale(1.2);
}

/* CORES NOS SVGs - Filtros Otimizados */
.hd-icon .icon-svg,
.news-icon .icon-svg { 
    filter: var(--filter-orange);
}
.\34 k-icon .icon-svg { 
    filter: var(--filter-purple) !important;
}
.movie-icon .icon-svg { 
    filter: var(--filter-purple);
}
.sport-icon .icon-svg,
.live-icon .icon-svg { 
    filter: var(--filter-pink);
}

/* ===== NÚMEROS ANIMADOS ===== */
.animated-numbers {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 3rem 0;
}

.number {
    font-size: 3rem;
    font-weight: 800;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    padding: 1rem;
    background-color: var(--dark-3);
    border-radius: 12px;
    border: 1px solid rgba(255, 107, 53, 0.2);
    min-width: 80px;
    text-align: center;
}

/* ===== BOTÕES ===== */
.cta-button {
    background: var(--gradient-1);
    color: var(--white);
    border: none;
    padding: 1.2rem 2.5rem;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: var(--shadow);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.cta-button.secondary {
    background: var(--gradient-2);
}

.cta-button.large {
    padding: 1.6rem 3rem;
    font-size: 1.2rem;
    border-radius: 16px;
}

/* ===== CTA SECTIONS ===== */
.cta-section {
    padding: 2rem 0;
    text-align: center;
    background: var(--dark-2);
}

/* ===== GRIDS UNIVERSAIS ===== */
.steps-grid,
.benefits-grid,
.apps-grid,
.reviews-grid,
.faq-grid {
    display: grid;
    gap: 2.5rem;
    max-width: 1300px;
    margin: 0 auto;
}

.steps-grid,
.benefits-grid,
.reviews-grid,
.faq-grid {
    grid-template-columns: repeat(3, 1fr);
}

.apps-grid {
    grid-template-columns: repeat(4, 1fr);
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    max-width: 1100px;
    margin: 0 auto;
}

/* ===== CARDS UNIVERSAIS ===== */
.step-card,
.benefit-card,
.app-card,
.plan-card,
.review-card,
.faq-item {
    background: var(--dark-3);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 107, 53, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
}

.step-card:hover,
.benefit-card:hover,
.app-card:hover,
.plan-card:hover,
.review-card:hover,
.faq-item:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: rgba(255, 107, 53, 0.4);
    box-shadow: var(--shadow-hover);
}

/* ===== ÍCONES DE BENEFÍCIOS - SEM FUNDO ===== */
.benefit-icon {
    width: 90px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    /* SEM background - apenas container */
}

.benefit-icon .icon-svg {
    width: 70px;
    height: 70px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.benefit-card:hover .icon-svg {
    transform: scale(1.15);
}

/* ===== ÍCONES DE APLICATIVOS - NOVA IMPLEMENTAÇÃO ===== */
.app-icon {
    width: 90px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.app-icon .icon-svg {
    width: 70px;
    height: 70px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.app-card:hover .icon-svg {
    transform: scale(1.15);
}

/* CORES DOS BENEFÍCIOS - Filtros Simplificados */
.auto-icon .icon-svg,
.whatsapp-icon .icon-svg { 
    filter: var(--filter-orange);
}
.time-icon .icon-svg,
.activation-icon .icon-svg { 
    filter: var(--filter-pink);
}
.quality-icon .icon-svg,
.support-icon .icon-svg { 
    filter: var(--filter-purple);
}

/* CORES DOS APPS - Filtros Agrupados */
.ssiptv-icon .icon-svg,
.vlc-icon .icon-svg,
.iptv-icon .icon-svg,
.lazy-icon .icon-svg { 
    filter: var(--filter-orange);
}
.kodai-icon .icon-svg,
.kodi-icon .icon-svg,
.tivimate-icon .icon-svg,
.ottplayer-icon .icon-svg { 
    filter: var(--filter-pink);
}
.mx-icon .icon-svg,
.perfect-icon .icon-svg,
.gse-icon .icon-svg,
.duplex-icon .icon-svg { 
    filter: var(--filter-purple);
}

/* ===== STEP NUMBERS ===== */
.step-number {
    width: 60px;
    height: 60px;
    background: var(--gradient-1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--white);
    margin: 0 auto 1.5rem;
    box-shadow: var(--shadow);
}

/* ===== PLANOS ===== */
.plan-card.popular {
    border: 2px solid var(--primary);
    transform: scale(1.05);
    position: relative;
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-1);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 700;
    box-shadow: var(--shadow);
}

.plan-features {
    margin: 1.5rem 0;
}

.plan-features p {
    margin: 0.5rem 0;
}

/* ===== REVIEWS ===== */
.stars {
    color: #ffd700;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.reviewer {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.reviewer strong {
    color: var(--primary);
}

.reviewer span {
    display: block;
    color: var(--gray);
    font-size: 0.9rem;
}

/* ===== FAQ ===== */
.faq-item h3 {
    color: var(--secondary);
    font-size: 1.1rem;
}

/* ===== FINAL CTA ===== */
.final-cta {
    background: var(--dark);
    text-align: center;
    position: relative;
}

.final-icons {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 2rem 0;
}

/* ÍCONES FINAIS - SEM FUNDO */
.final-icon {
    width: 100px;
    height: 100px;
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--dark-3);
    border: 2px solid rgba(255, 107, 53, 0.2);
    animation: pulse 3s infinite;
    transition: all 0.3s ease;
}

.final-icon:hover {
    border-color: rgba(255, 107, 53, 0.5);
    transform: scale(1.05);
}

.whatsapp-pulse { animation-delay: 0s; }
.clock-pulse { animation-delay: 0.5s; }
.quality-pulse { animation-delay: 1s; }

.final-icon .icon-svg {
    width: 60px;
    height: 60px;
    transition: all 0.3s ease;
}

/* CORES DOS ÍCONES FINAIS - Filtros Simplificados */
.whatsapp-pulse .icon-svg { 
    filter: var(--filter-orange);
}
.clock-pulse .icon-svg { 
    filter: var(--filter-purple);
}
.quality-pulse .icon-svg { 
    filter: var(--filter-pink);
}

/* ===== FOOTER ===== */
footer {
    background: var(--dark);
    padding: 3rem 0 1rem;
    border-top: 1px solid rgba(255, 107, 53, 0.2);
    text-align: center;
}

.footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.footer-logo .logo-img {
    height: 60px;
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--gray);
}

/* ===== ANIMAÇÕES ===== */
@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(255, 107, 53, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(255, 107, 53, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 107, 53, 0); }
}

/* ===== RESPONSIVO ===== */
@media (min-width: 1200px) {
    .container { padding: 0 40px; }
    
    .logo-img {
        height: 60px;
    }
    
    .footer-logo .logo-img {
        height: 70px;
    }
    
    .features-icons {
        gap: 3rem;
        max-width: 1100px;
    }
    
    .steps-grid,
    .benefits-grid,
    .apps-grid,
    .reviews-grid,
    .faq-grid,
    .plans-grid {
        gap: 3rem;
        max-width: 1400px;
    }
    
    .icon { width: 90px; height: 90px; }
    .icon-svg { width: 70px; height: 70px; }
    
    /* Benefícios desktop large */
    .benefit-icon { width: 100px; height: 100px; }
    .benefit-icon .icon-svg { width: 80px; height: 80px; }
    
    /* Apps desktop large */
    .app-icon { width: 100px; height: 100px; }
    .app-icon .icon-svg { width: 80px; height: 80px; }
    
    .final-icon { width: 110px; height: 110px; }
    .final-icon .icon-svg { width: 70px; height: 70px; }
}

@media (max-width: 1024px) and (min-width: 769px) {
    .features-icons {
        grid-template-columns: repeat(6, 1fr);
        gap: 1.5rem;
    }
    
    .steps-grid,
    .benefits-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .apps-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .reviews-grid,
    .faq-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .plans-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    /* Benefícios tablet */
    .benefit-icon { width: 90px; height: 90px; }
    .benefit-icon .icon-svg { width: 70px; height: 70px; }
    
    /* Apps tablet */
    .app-icon { width: 90px; height: 90px; }
    .app-icon .icon-svg { width: 70px; height: 70px; }
}

@media (max-width: 768px) {
    .container { padding: 0 16px; }
    section { padding: 3rem 0; }
    
    .hero { 
        min-height: 75vh; 
        padding: 2rem 0;
    }
    
    .intro-text { 
        font-size: 1.1rem; 
        margin-bottom: 2.5rem;
    }
    
    .features-icons {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
        margin: 2.5rem 0;
    }
    
    .icon {
        width: 60px;
        height: 60px;
    }
    
    .icon-svg {
        width: 45px;
        height: 45px;
    }
    
    .animated-numbers {
        gap: 1.5rem;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .number {
        font-size: 2.2rem;
        padding: 1rem;
        min-width: 80px;
    }
    
    .steps-grid,
    .benefits-grid,
    .apps-grid,
    .reviews-grid,
    .faq-grid,
    .plans-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .plan-card.popular {
        transform: none;
        margin: 1rem 0;
        border: 2px solid var(--primary);
    }
    
    .final-icons {
        gap: 1.5rem;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .final-icon {
        width: 85px;
        height: 85px;
    }
    
    .final-icon .icon-svg {
        width: 50px;
        height: 50px;
    }
    
    .cta-button {
        width: 100%;
        max-width: 320px;
        margin: 0 auto;
    }
    
    /* Benefícios mobile */
    .benefit-icon { width: 100px; height: 100px; }
    .benefit-icon .icon-svg { width: 80px; height: 80px; }
    
    /* Apps mobile */
    .app-icon { width: 100px; height: 100px; }
    .app-icon .icon-svg { width: 80px; height: 80px; }
    
    /* Padding maior para cards de apps no mobile */
    .app-card {
        padding: 2rem;
    }
}

@media (max-width: 480px) {
    .container { padding: 0 12px; }
    
    .hero { 
        min-height: 70vh;
        padding: 1.5rem 0;
    }
    
    .features-icons {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .icon {
        width: 55px;
        height: 55px;
    }
    
    .icon-svg {
        width: 40px;
        height: 40px;
    }
    
    .animated-numbers {
        gap: 1rem;
    }
    
    .number {
        font-size: 2rem;
        padding: 0.8rem;
        min-width: 70px;
    }
    
    /* Benefícios mobile small */
    .benefit-icon { width: 90px; height: 90px; }
    .benefit-icon .icon-svg { width: 70px; height: 70px; }
    
    /* Apps mobile small */
    .app-icon { width: 90px; height: 90px; }
    .app-icon .icon-svg { width: 70px; height: 70px; }
    
    /* Padding adequado para cards de apps no mobile small */
    .app-card {
        padding: 1.8rem;
    }
    
    .final-icon {
        width: 75px;
        height: 75px;
    }
    
    .final-icon .icon-svg {
        width: 45px;
        height: 45px;
    }
    
    .logo-img {
        height: 40px;
    }
    
    .footer-logo .logo-img {
        height: 50px;
    }
}

/* ===== OTIMIZAÇÕES PAGESPEED ===== */
.icon-svg,
.logo-img {
    pointer-events: none;
}

/* GPU Acceleration para elementos críticos */
.cta-button,
.icon-item,
.step-card,
.benefit-card,
.app-card,
.plan-card,
.review-card,
.faq-item {
    transform: translateZ(0);
    backface-visibility: hidden;
}

/* Will-change apenas no hover */
.icon-item:hover,
.step-card:hover,
.benefit-card:hover,
.app-card:hover,
.plan-card:hover,
.review-card:hover,
.faq-item:hover {
    will-change: transform;
}

/* Contenção de layout para ícones */
.icon,
.benefit-icon,
.app-icon,
.final-icon {
    contain: layout style paint;
}

/* Otimização de filtros */
.icon-svg {
    filter-rendering: optimizeSpeed;
}

/* Preload crítico */
.hd-icon .icon-svg,
.\34 k-icon .icon-svg,
.sport-icon .icon-svg,
.news-icon .icon-svg,
.movie-icon .icon-svg,
.live-icon .icon-svg {
    loading: eager;
}

/* Lazy loading para apps */
.app-card .icon-svg {
    loading: lazy;
}

/* Redução de motion */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .hero::before,
    .hero::after {
        display: none !important;
    }
}

/* Otimização para conexões lentas */
@media (prefers-reduced-data: reduce) {
    .hero::after {
        display: none;
    }
    
    .icon-svg {
        filter: none !important;
        color: var(--primary);
    }
}

/* High contrast mode */
@media (prefers-contrast: high) {
    .icon-svg {
        filter: none !important;
        color: var(--white);
    }
    
    .step-card,
    .benefit-card,
    .app-card,
    .plan-card,
    .review-card,
    .faq-item {
        border-width: 2px;
    }
}
/* ====
====================================
   PÁGINAS LEGAIS (POLÍTICA E TERMOS)
======================================== */

.legal-page {
    padding: 2rem 0;
    background: var(--bg-primary);
    min-height: calc(100vh - 200px);
}

.legal-page h1 {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    text-align: center;
}

.last-updated {
    text-align: center;
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 2rem;
    font-style: italic;
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
    background: var(--bg-secondary);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    line-height: 1.6;
}

.legal-content h2 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin: 2rem 0 1rem 0;
    border-bottom: 2px solid var(--accent-color);
    padding-bottom: 0.5rem;
}

.legal-content h3 {
    color: var(--secondary-color);
    font-size: 1.2rem;
    margin: 1.5rem 0 0.5rem 0;
}

.legal-content p {
    color: var(--text-primary);
    margin-bottom: 1rem;
    text-align: justify;
}

.legal-content ul {
    margin: 1rem 0;
    padding-left: 2rem;
}

.legal-content li {
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.legal-content strong {
    color: var(--primary-color);
}

.back-home {
    text-align: center;
    margin-top: 2rem;
}

.legal-footer {
    background: var(--bg-secondary);
    padding: 1rem 0;
    text-align: center;
    border-top: 1px solid rgba(255, 107, 53, 0.1);
}

.legal-footer p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin: 0;
}

/* Footer Links */
.footer-links {
    text-align: center;
    padding: 1rem 0;
    background: var(--bg-secondary);
    border-top: 1px solid rgba(255, 107, 53, 0.1);
    margin-top: 2rem;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.85rem;
    margin: 0 1rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-color);
}

.footer-links .separator {
    color: var(--text-secondary);
    margin: 0 0.5rem;
}

/* Responsividade para páginas legais */
@media (max-width: 768px) {
    .legal-page h1 {
        font-size: 2rem;
    }
    
    .legal-content {
        padding: 1.5rem;
        margin: 0 1rem;
    }
    
    .legal-content h2 {
        font-size: 1.3rem;
    }
    
    .legal-content h3 {
        font-size: 1.1rem;
    }
    
    .footer-links a {
        display: block;
        margin: 0.5rem 0;
    }
    
    .footer-links .separator {
        display: none;
    }
}