/* Paleta de Cores Harmoniosa - Azul Escuro + Laranja + Verde */
:root {
    /* Cores Principais - Azul Escuro */
    --primary-dark: #0a1628;
    --primary-medium: #1a2332;
    --primary-light: #2d3748;
    
    /* Cores Secundárias - Tons de Azul */
    --secondary-dark: #1e2a3a;
    --secondary-medium: #2a3441;
    --secondary-light: #4a5568;
    
    /* Cores Vibrantes Complementares */
    --accent-orange: #ff6b35;      /* Laranja vibrante */
    --accent-orange-light: #ff8c42;
    --accent-green: #00d4aa;       /* Verde-água vibrante */
    --accent-green-light: #26e5cc;
    --accent-primary: #ff6b35;     /* Cor principal - laranja */
    
    /* Cores de Texto */
    --text-primary: #ffffff;
    --text-secondary: #e2e8f0;
    --text-muted: #a0aec0;
    --text-dark: #2d3748;
    
    /* Cores de Status */
    --success: var(--accent-green);
    --warning: var(--accent-orange);
    --error: #f56565;
    
    /* Backgrounds */
    --bg-primary: var(--primary-dark);
    --bg-secondary: var(--primary-medium);
    --bg-card: var(--secondary-medium);
    --bg-overlay: rgba(10, 22, 40, 0.9);
}

/* Reset e Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-secondary);
    background-color: var(--bg-primary);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

/* Removido - seções agora usam H1 */

/* Removido - seções agora usam H1 */

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-muted);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Header Styles */
.header {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-medium) 100%);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.navbar {
    padding: 1rem 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo-img {
    height: 45px;
    width: auto;
    max-width: 200px;
    border-radius: 8px;
    object-fit: contain;
}

.brand-text h1 {
    color: var(--text-primary);
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0;
}

.brand-text .tagline {
    color: var(--accent-primary);
    font-size: 0.85rem;
    display: block;
    font-weight: 500;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 300;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: var(--accent-primary);
}

.hamburger {
    display: flex;
    flex-direction: column;
    cursor: pointer;
    padding: 5px;
}

.hamburger span {
    width: 25px;
    height: 2px;
    background: #fff;
    margin: 2px 0;
    transition: 0.3s;
    border-radius: 2px;
}

.hamburger:hover span {
    background: var(--accent-primary);
}

.nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: linear-gradient(135deg, #0f1419 0%, #1a2332 100%);
    flex-direction: column;
    padding: 1rem 0;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
    border-top: 1px solid rgba(255,255,255,0.1);
}

.nav-menu.active {
    display: flex;
}

.nav-menu li {
    margin: 0;
    text-align: center;
}

.nav-menu a {
    display: block;
    padding: 1rem 2rem;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

/* Hero Section */
.hero {
    position: relative;
    color: var(--text-primary);
    padding: 120px 0 80px;
    text-align: center;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-medium) 50%, var(--primary-light) 100%);
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-overlay);
    z-index: -1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(247, 147, 30, 0.2);
    border: 2px solid var(--accent-orange);
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
}

.badge-icon {
    width: 24px;
    height: 24px;
}

/* Removido - agora usa H1 */
    font-weight: 800;
    line-height: 1.2;
}

.hero-content .highlight {
    color: var(--accent-orange);
    text-shadow: 3px 3px 6px rgba(0,0,0,0.5);
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.95;
    line-height: 1.7;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.stat {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255,255,255,0.1);
    padding: 1.5rem 2rem;
    border-radius: 20px;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255,255,255,0.2);
}

.stat-icon {
    width: 40px;
    height: 40px;
}

.stat-info {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--accent-primary);
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.9;
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.feature {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    background: rgba(255,255,255,0.15);
    padding: 1rem 1.8rem;
    border-radius: 30px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    transition: all 0.3s ease;
}

.feature:hover {
    transform: translateY(-3px);
    background: rgba(255,255,255,0.2);
}

.feature-icon {
    width: 28px;
    height: 28px;
}

.hero-cta {
    margin-top: 2rem;
}

.cta-subtitle {
    margin-top: 1rem;
    font-size: 1rem;
    opacity: 0.9;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: var(--accent-primary);
    color: var(--text-primary);
    padding: 18px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 6px 25px rgba(247, 147, 30, 0.4);
    border: none;
    cursor: pointer;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(247, 147, 30, 0.5);
    background: var(--accent-light);
}

.cta-button.primary {
    background: linear-gradient(135deg, var(--accent-orange) 0%, var(--accent-orange-light) 100%);
}

.cta-button.primary .cta-icon {
    filter: brightness(0) saturate(100%) invert(100%);
}

.cta-button.secondary {
    background: linear-gradient(135deg, var(--secondary-medium) 0%, var(--secondary-light) 100%);
    color: var(--text-primary);
}

.cta-button.secondary:hover {
    background: linear-gradient(135deg, var(--secondary-light) 0%, var(--primary-light) 100%);
}

.cta-icon {
    width: 24px;
    height: 24px;
}

/* Teste Section */
.teste-section {
    padding: 80px 0;
    background: var(--bg-secondary);
}

/* Estilos movidos para hierarquia de H1s */

.section-intro {
    text-align: center;
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto 3rem;
    color: var(--text-muted);
}

.teste-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
}

.step {
    text-align: center;
    padding: 2rem;
    background: var(--bg-card);
    border-radius: 15px;
    transition: transform 0.3s ease;
    border: 1px solid rgba(255,255,255,0.1);
}

.step:hover {
    transform: translateY(-5px);
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--secondary-medium) 0%, var(--secondary-light) 100%);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1rem;
}

.step h3 {
    color: var(--accent-primary);
    margin-bottom: 1rem;
}

/* CTA Container Styles */
.teste-cta-container {
    max-width: 600px;
    margin: 0 auto;
    background: var(--bg-card);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    text-align: center;
    border: 1px solid rgba(255,255,255,0.1);
}

.teste-cta-container h3 {
    color: var(--accent-primary);
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.cta-description {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.cta-info {
    color: var(--success);
    font-size: 0.95rem;
    margin-top: 1rem;
    font-weight: 600;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    font-weight: 600;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--secondary-medium);
}

.submit-btn {
    width: 100%;
    background: linear-gradient(135deg, var(--secondary-medium) 0%, var(--secondary-light) 100%);
    color: #fff;
    padding: 15px;
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(102,126,234,0.4);
}

/* Vantagens Section */
.vantagens {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-medium) 0%, var(--primary-light) 100%);
    color: var(--text-primary);
}

/* Removido - agora usa H1 */



.vantagem {
    background: rgba(255,255,255,0.1);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease;
}

.vantagem:hover {
    transform: translateY(-5px);
}

.vantagem-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.vantagem h3 {
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

/* Planos Section */
.planos {
    padding: 80px 0;
    background: var(--bg-secondary);
}

.planos h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--accent-primary);
}

.planos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.plano {
    background: var(--bg-card);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    transition: transform 0.3s ease;
    position: relative;
    border: 1px solid rgba(255,255,255,0.1);
}

.plano:hover {
    transform: translateY(-10px);
}

.plano-popular {
    border: 3px solid var(--accent-primary);
    transform: scale(1.05);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-primary);
    color: var(--text-dark);
    padding: 5px 20px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.9rem;
}

.plano-header h3 {
    color: var(--accent-primary);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.preco {
    margin-bottom: 2rem;
}

.valor {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary-medium);
}

.periodo {
    color: #666;
    font-size: 1rem;
}

.plano-features {
    list-style: none;
    margin-bottom: 2rem;
    text-align: left;
}

.plano-features li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #f0f0f0;
}

.plano-btn {
    width: 100%;
    background: linear-gradient(135deg, var(--secondary-medium) 0%, var(--secondary-light) 100%);
    color: #fff;
    padding: 12px;
    border: none;
    border-radius: 10px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.plano-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(102,126,234,0.4);
}

/* Canais Section */
.canais {
    padding: 80px 0;
    background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
}

.canais h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--accent-primary);
}

.canais-categories {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.category {
    background: rgba(255,255,255,0.9);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease;
}

.category:hover {
    transform: translateY(-5px);
}

.category h3 {
    color: var(--accent-primary);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

/* FAQ Section */
.faq {
    padding: 80px 0;
    background: #fff;
}

.faq h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--accent-primary);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 1rem;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.faq-question {
    background: #f8f9fa;
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background: #e9ecef;
}

.faq-question h3 {
    color: var(--accent-primary);
    font-size: 1.1rem;
}

.faq-toggle {
    font-size: 1.5rem;
    color: var(--secondary-medium);
    font-weight: 700;
}

.faq-answer {
    background: #fff;
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-answer.active {
    padding: 1.5rem;
    max-height: 200px;
}

/* Contato Section */
.contato {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--secondary-medium) 0%, var(--secondary-light) 100%);
    color: #fff;
}

.contato h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.contato-info {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.contato-item {
    background: rgba(255,255,255,0.1);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    backdrop-filter: blur(10px);
}

.contato-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.contato-item h3 {
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.contato-link {
    color: var(--accent-primary);
    text-decoration: none;
    font-weight: 600;
}

.contato-link:hover {
    text-decoration: underline;
}

/* Footer */
.footer {
    background: var(--bg-primary);
    color: #fff;
    padding: 40px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    color: var(--accent-primary);
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--accent-primary);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 1rem;
    text-align: center;
    color: var(--text-muted);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        display: none;
    }
    
    /* Removido - agora usa H1 */
    
    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .stat {
        padding: 1rem 1.5rem;
    }
    
    .hero-features {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        justify-items: center;
    }
    
    .teste-form-container {
        margin: 0 1rem;
        padding: 2rem;
    }
    
    .plano-popular {
        transform: none;
    }
    
    .section-header h2 {
        font-size: 2.2rem;
    }
    
    /* TODAS as seções com 1 por linha no mobile - FORÇADO */
    .vantagens-grid,
    .apps-grid,
    .depoimentos-grid,
    .garantias-grid,
    .canais-categories,
    .special-features,
    .content-grid,
    .content-grid.three-columns,
    .planos-grid,
    .teste-steps,
    .contato-info {
        grid-template-columns: 1fr !important;
    }
    
    .content-header {
        flex-direction: column;
        text-align: center;
    }
    
    .content-header h3 {
        font-size: 1.8rem;
    }
    
    .feature-item {
        flex-direction: column;
        text-align: center;
    }
    
    .nav-brand {
        gap: 0.5rem;
    }
    
    .logo-img {
        height: 35px;
        max-width: 150px;
    }
    
    .comparison-header,
    .comparison-row {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1rem;
    }
    
    .comparison-header {
        padding: 1.5rem;
    }
    
    .comparison-row {
        padding: 1rem 1.5rem;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }
    
    .feature-name {
        font-size: 1rem;
        margin-bottom: 0.5rem;
        padding-bottom: 0.5rem;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }
    
    .iptv-bahia-value,
    .others-value {
        justify-content: center;
        margin-bottom: 0.5rem;
    }
    
    .depoimentos-cta,
    .comparison-cta {
        padding: 2.5rem 1.5rem;
    }
    
    .depoimentos-cta h3,
    .comparison-cta h3 {
        font-size: 1.6rem;
    }
    
    .faq-question {
        padding: 1.5rem;
    }
    
    .faq-answer.active {
        padding: 1.5rem;
    }
}

/* Mobile Small (480px) */
@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2.2rem !important;
        line-height: 1.2 !important;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .cta-button {
        padding: 15px 25px;
        font-size: 1rem;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    .depoimento,
    .garantia {
        padding: 2rem;
    }
    
    .comparison-table {
        margin: 0 -20px;
        border-radius: 0;
    }
    
    .depoimentos-cta h3,
    .comparison-cta h3 {
        font-size: 1.4rem;
    }
    
    .depoimentos-cta p,
    .comparison-cta p {
        font-size: 1rem;
    }
}

/* Performance Optimizations */
.hero,
.vantagens,
.canais,
.contato {
    will-change: transform;
}

img {
    max-width: 100%;
    height: auto;
    loading: lazy;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}/
* Vantagens Section - Updated */
.vantagens {
    padding: 100px 0;
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: #fff;
}

.vantagens-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.vantagem {
    background: rgba(255,255,255,0.15);
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255,255,255,0.2);
    transition: all 0.3s ease;
}

.vantagem:hover {
    transform: translateY(-8px);
    background: rgba(255,255,255,0.2);
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

.vantagem-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    filter: brightness(0) invert(1);
}

.vantagem h3 {
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
    font-weight: 700;
}

.vantagem p {
    font-size: 1.05rem;
    line-height: 1.7;
    opacity: 0.95;
}

/* Aplicativos Section */
.aplicativos {
    padding: 100px 0;
    background: var(--bg-primary);
}

.apps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
}

.app-card {
    background: var(--bg-card);
    border-radius: 20px;
    padding: 1.5rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
    border: 2px solid rgba(255,255,255,0.1);
}

.app-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
    border-color: var(--secondary-medium);
}

.app-icon {
    filter: brightness(0) saturate(100%) invert(100%);
    width: 100px;
    height: 100px;
    margin: 0 auto 1.5rem;
    border-radius: 15px;
}

.app-card h3 {
    color: var(--accent-primary);
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.app-card p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.app-platforms {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.app-platforms span {
    background: linear-gradient(135deg, var(--secondary-medium) 0%, var(--secondary-light) 100%);
    color: #fff;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.apps-cta {
    text-align: center;
    background: linear-gradient(135deg, var(--secondary-medium) 0%, var(--secondary-light) 100%);
    padding: 3rem;
    border-radius: 25px;
    color: #fff;
}

.apps-cta h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.apps-cta p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* Canais Section - Updated */
.canais {
    padding: 100px 0;
    background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
}

.content-section {
    margin-bottom: 5rem;
}

.content-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 3rem;
    justify-content: center;
}

.content-icon {
    width: 50px;
    height: 50px;
    filter: hue-rotate(200deg);
}

.content-header h3 {
    font-size: 2.2rem;
    color: var(--accent-primary);
    font-weight: 700;
}

.content-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.content-grid.three-columns {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.content-card {
    background: rgba(255,255,255,0.95);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.content-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(0,0,0,0.15);
}

.content-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.content-info {
    padding: 2rem;
}

.content-info h4 {
    color: var(--accent-primary);
    font-size: 1.4rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.content-info p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.content-features {
    list-style: none;
    padding: 0;
}

.content-features li {
    color: var(--success);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.sports-logos {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.sport-logo {
    width: 40px;
    height: 40px;
    border-radius: 8px;
}

.special-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    background: var(--bg-card);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    border: 1px solid rgba(255,255,255,0.1);
}

.feature-icon {
    width: 80px;
    height: 80px;
    flex-shrink: 0;
    border-radius: 10px;
}

.feature-content h4 {
    color: var(--accent-primary);
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    font-weight: 700;
}

.feature-content p {
    color: var(--text-muted);
    line-height: 1.6;
}

.canais-cta {
    text-align: center;
    background: linear-gradient(135deg, var(--accent-primary) 0%, var(--secondary-medium) 100%);
    padding: 4rem 2rem;
    border-radius: 25px;
    color: #fff;
    margin-top: 4rem;
}

.canais-cta h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.canais-cta p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}



/*
 Depoimentos Section */
.depoimentos {
    padding: 100px 0;
    background: #fff;
}

.depoimentos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
}

.depoimento {
    background: #f8f9fa;
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border-left: 5px solid var(--accent-primary);
}

.depoimento:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.12);
}

.rating-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 1.5rem;
}

.depoimento-text {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 2rem;
    font-style: italic;
}

.depoimento-author {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.depoimento-author strong {
    color: var(--accent-primary);
    font-size: 1.1rem;
}

.depoimento-author span {
    color: #888;
    font-size: 0.9rem;
}

.depoimentos-cta {
    text-align: center;
    background: linear-gradient(135deg, var(--secondary-medium) 0%, var(--secondary-light) 100%);
    padding: 4rem 2rem;
    border-radius: 25px;
    color: #fff;
}

.depoimentos-cta h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.depoimentos-cta p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* Comparativo Section */
.comparativo {
    padding: 100px 0;
    background: linear-gradient(135deg, #1a2332 0%, #2a3441 100%);
    color: #fff;
}

.comparison-table {
    background: rgba(255,255,255,0.1);
    border-radius: 20px;
    overflow: hidden;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255,255,255,0.2);
}

.comparison-header {
    display: grid;
    grid-template-columns: 2fr 1.5fr 1.5fr;
    background: rgba(255,255,255,0.2);
    padding: 2rem;
    font-weight: 700;
    font-size: 1.2rem;
}

.iptv-bahia-column {
    display: flex;
    align-items: center;
    gap: 1rem;
    justify-content: center;
}

.comparison-logo {
    width: 40px;
    height: 40px;
    border-radius: 8px;
}

.others-column {
    text-align: center;
}

.comparison-row {
    display: grid;
    grid-template-columns: 2fr 1.5fr 1.5fr;
    padding: 1.5rem 2rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    align-items: center;
}

.comparison-row:last-child {
    border-bottom: none;
}

.feature-name {
    font-weight: 600;
    font-size: 1.1rem;
}

.iptv-bahia-value {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    justify-content: center;
    color: var(--accent-primary);
    font-weight: 600;
}

.others-value {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    justify-content: center;
    opacity: 0.8;
}

.check-icon {
    width: 24px;
    height: 24px;
    filter: brightness(0) saturate(100%) invert(84%) sepia(78%) saturate(2500%) hue-rotate(2deg) brightness(104%) contrast(97%);
}

.cross {
    font-size: 1.2rem;
}

.comparison-cta {
    text-align: center;
    padding: 3rem 2rem;
    background: rgba(255,255,255,0.1);
}

.comparison-cta h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.comparison-cta p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* Garantias Section */
.garantias {
    padding: 100px 0;
    background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
}

.garantias-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.garantia {
    background: rgba(255,255,255,0.9);
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border-top: 5px solid var(--success);
}

.garantia:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(0,0,0,0.15);
}

.garantia-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    filter: hue-rotate(120deg);
}

.garantia h3 {
    color: var(--accent-primary);
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.garantia p {
    color: #666;
    line-height: 1.7;
    font-size: 1.05rem;
}

/* FAQ Section Updates */
.faq {
    padding: 100px 0;
    background: #fff;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 1.5rem;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    border: 1px solid #f0f0f0;
}

.faq-question {
    background: #f8f9fa;
    padding: 2rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: #e9ecef;
}

.faq-question h3 {
    color: var(--accent-primary);
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0;
}

.faq-toggle {
    font-size: 2rem;
    color: var(--secondary-medium);
    font-weight: 700;
    transition: transform 0.3s ease;
}

.faq-answer {
    background: #fff;
    padding: 0 2rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease;
}

.faq-answer.active {
    padding: 2rem;
    max-height: 300px;
}

.faq-answer p {
    color: #666;
    line-height: 1.7;
    font-size: 1.05rem;
    margin: 0;
}



/* Pla
nos Updates */
.plano-badge {
    background: linear-gradient(135deg, var(--secondary-medium) 0%, var(--secondary-light) 100%);
    color: #fff;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 2rem;
    display: inline-block;
}

.planos-info {
    text-align: center;
    margin-top: 3rem;
    padding: 2rem;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 15px;
    border: 1px solid rgba(255, 215, 0, 0.3);
}

.planos-info p {
    color: var(--accent-primary);
    font-size: 1.1rem;
    margin: 0;
}

/* Contato Updates */
.contato-icon-img {
    width: 60px;
    height: 60px;
    margin-bottom: 1.5rem;
    filter: brightness(0) saturate(100%) invert(84%) sepia(78%) saturate(2500%) hue-rotate(2deg) brightness(104%) contrast(97%);
}

/* Dark Theme Updates */
.section-header h2 {
    color: var(--accent-primary);
}

.section-subtitle {
    color: var(--text-muted);
}

/* Depoimentos Section Dark */
.depoimentos {
    background: var(--bg-primary);
}

.depoimento {
    background: var(--bg-card);
    border-left: 5px solid var(--accent-primary);
    border: 1px solid rgba(255,255,255,0.1);
}

.depoimento-text {
    color: var(--text-muted);
}

.depoimento-author strong {
    color: var(--accent-primary);
}

.depoimento-author span {
    color: #888;
}

/* FAQ Section Dark */
.faq {
    background: var(--bg-secondary);
}

.faq-question {
    background: var(--bg-card);
    border: 1px solid rgba(255,255,255,0.1);
}

.faq-question:hover {
    background: var(--bg-card);
}

.faq-question h3 {
    color: var(--accent-primary);
}

.faq-answer {
    background: var(--bg-primary);
    border: 1px solid rgba(255,255,255,0.1);
}

.faq-answer p {
    color: var(--text-muted);
}

/* Garantias Section Dark */
.garantias {
    background: linear-gradient(135deg, #1a2332 0%, #2a3441 100%);
}

.garantia {
    background: rgba(42, 42, 42, 0.9);
    border-top: 5px solid var(--success);
    border: 1px solid rgba(255,255,255,0.1);
}

.garantia h3 {
    color: var(--accent-primary);
}

.garantia p {
    color: var(--text-muted);
}

/* Canais Section Dark */
.canais {
    background: linear-gradient(135deg, #1a2332 0%, #2a3441 100%);
}

.content-card {
    background: rgba(42, 42, 42, 0.95);
    border: 1px solid rgba(255,255,255,0.1);
}

.content-info h4 {
    color: var(--accent-primary);
}

.content-info p {
    color: var(--text-muted);
}

/* Footer Dark */
.footer {
    background: #0f1419;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-section h3,
.footer-section h4 {
    color: var(--accent-primary);
}

.footer-section p {
    color: var(--text-muted);
}

.footer-section ul li a {
    color: var(--text-muted);
}

.footer-section ul li a:hover {
    color: var(--accent-primary);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    color: #888;
}

/* Contato Section Dark */
.contato {
    background: linear-gradient(135deg, #0f1419 0%, #1a2332 100%);
}

.contato-item {
    background: rgba(42, 42, 42, 0.8);
    border: 1px solid rgba(255,255,255,0.1);
}

.contato-item h3 {
    color: var(--accent-primary);
}

.contato-item p {
    color: var(--text-muted);
}

.contato-link {
    color: var(--accent-primary);
}

/* Ícones SVG - Colorização */
/* Ícones SVG - Colorização Otimizada */
.badge-icon,
.stat-icon,
.feature-icon,
.content-icon,
.check-icon,
.contato-icon-img {
    filter: brightness(0) saturate(100%) invert(60%) sepia(100%) saturate(1500%) hue-rotate(15deg) brightness(110%) contrast(90%);
}

/* Ícones CTA - Branco */
.cta-icon {
    filter: brightness(0) saturate(100%) invert(100%);
}

/* Ícones de Vantagem - Laranja */
.vantagem-icon {
    filter: brightness(0) saturate(100%) invert(60%) sepia(100%) saturate(1500%) hue-rotate(15deg) brightness(110%) contrast(90%);
}

/* Ícones de Rating - Verde */
.rating-icon {
    filter: brightness(0) saturate(100%) invert(69%) sepia(58%) saturate(5409%) hue-rotate(92deg) brightness(95%) contrast(80%);
}

/* Ícones de Garantia - Verde */
.garantia-icon {
    filter: brightness(0) saturate(100%) invert(69%) sepia(58%) saturate(5409%) hue-rotate(92deg) brightness(95%) contrast(80%);
}
* Hamburger Animation */
.hamburger.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Tablet Responsive */
@media (max-width: 1024px) and (min-width: 769px) {
    .vantagens-grid,
    .apps-grid,
    .depoimentos-grid,
    .garantias-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .content-grid,
    .content-grid.three-columns {
        grid-template-columns: 1fr;
    }
    
    .special-features {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Remove emojis from content-features */
.content-features li::before {
    content: "• ";
    color: var(--success);
    font-weight: bold;
    margin-right: 0.5rem;
}

.plano-features li::before {
    content: "";
    margin-right: 0;
}

.plano-features li {
    color: var(--text-muted);
    position: relative;
    padding-left: 1rem;
}

.plano-features li::before {
    content: "•";
    color: var(--success);
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Mobile Hero Features Optimization */
.feature {
    padding: 0.8rem 1.5rem;
    font-size: 1rem;
}

.feature-icon {
    width: 28px;
    height: 28px;
}

@media (max-width: 768px) {
    .feature {
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
    }
    
    .feature-icon {
        width: 20px;
        height: 20px;
    }
    
    .hero-features {
        margin-bottom: 2rem;
    }
}

/* Estilos para Páginas de Política e Termos */
.policy-section, .terms-section {
    padding: 8rem 0 4rem;
    background: var(--bg-primary);
}

.policy-header, .terms-header {
    text-align: center;
    margin-bottom: 4rem;
}

.policy-header h1, .terms-header h1 {
    font-size: 3rem;
    color: var(--accent-orange);
    margin-bottom: 1rem;
}

.policy-subtitle, .terms-subtitle {
    color: var(--text-muted);
    font-size: 1.1rem;
}

.policy-content, .terms-content {
    max-width: 800px;
    margin: 0 auto;
}

.policy-item, .terms-item {
    background: var(--bg-card);
    padding: 2rem;
    margin-bottom: 2rem;
    border-radius: 15px;
    border-left: 4px solid var(--accent-orange);
}

.policy-item h2, .terms-item h2 {
    color: var(--accent-orange);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.policy-item ul, .terms-item ul {
    margin: 1rem 0;
    padding-left: 2rem;
}

.policy-item li, .terms-item li {
    margin-bottom: 0.5rem;
    color: var(--text-secondary);
}

.policy-cta, .terms-cta {
    text-align: center;
    background: linear-gradient(135deg, var(--accent-orange) 0%, var(--secondary-medium) 100%);
    padding: 3rem 2rem;
    border-radius: 20px;
    margin-top: 3rem;
}

.policy-cta h3, .terms-cta h3 {
    color: var(--text-primary);
    font-size: 2rem;
    margin-bottom: 1rem;
}

/* Estilos para Página de Aplicativos */
.hero-apps {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--secondary-dark) 100%);
    padding: 8rem 0 4rem;
    text-align: center;
}

.hero-apps h1 {
    font-size: 3.5rem;
    color: var(--accent-orange);
    margin-bottom: 1.5rem;
}

.apps-section {
    padding: 4rem 0;
    background: var(--bg-secondary);
}

.apps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.app-card {
    background: var(--bg-card);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255,255,255,0.1);
}

.app-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    border-color: var(--accent-orange);
}

.app-card .app-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 1rem;
}

.app-card h3 {
    color: var(--accent-orange);
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.app-card p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.app-platforms {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
    margin-bottom: 1rem;
}

.app-platforms span {
    background: var(--accent-green);
    color: var(--text-primary);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

.app-features {
    list-style: none;
    padding: 0;
}

.app-features li {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 0.3rem;
}

.apps-faq {
    margin: 4rem 0;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.apps-faq h2 {
    color: var(--accent-orange);
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
}

.apps-cta {
    text-align: center;
    background: linear-gradient(135deg, var(--accent-green) 0%, var(--secondary-medium) 100%);
    padding: 4rem 2rem;
    border-radius: 25px;
    margin-top: 4rem;
}

.apps-cta h3 {
    color: var(--text-primary);
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.apps-cta p {
    color: var(--text-primary);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

/* Responsividade */
@media (max-width: 768px) {
    .policy-header h1, .terms-header h1, .hero-apps h1 {
        font-size: 2.5rem;
    }
    
    .apps-grid {
        grid-template-columns: 1fr;
    }
    
    .policy-item, .terms-item {
        padding: 1.5rem;
    }
}/* Ot
imizações de Legibilidade e Contraste para PageSpeed */

/* Melhorar contraste de texto */
.text-muted {
    color: #cbd5e0; /* Aumentar contraste */
}

.hero-subtitle,
.section-subtitle {
    color: #e2e8f0; /* Melhor contraste */
    line-height: 1.6;
}

/* Botões com melhor contraste */
.cta-button {
    font-weight: 600;
    letter-spacing: 0.5px;
}

.cta-button:focus {
    outline: 3px solid var(--accent-green);
    outline-offset: 2px;
}

/* Links com melhor acessibilidade */
a:focus {
    outline: 2px solid var(--accent-orange);
    outline-offset: 2px;
}

/* Melhorar legibilidade em dispositivos móveis */
@media (max-width: 768px) {
    body {
        font-size: 16px; /* Mínimo para mobile */
        line-height: 1.6;
    }
    
    h1 {
        font-size: 2.2rem;
        line-height: 1.3;
    }
    
    /* Manter hero H1 grande mesmo no mobile */
    .hero-content h1 {
        font-size: 2.5rem !important;
        line-height: 1.2 !important;
    }
    
    h2 {
        font-size: 1.8rem;
        line-height: 1.4;
    }
    
    h3 {
        font-size: 1.4rem;
        line-height: 1.4;
    }
    
    p {
        font-size: 16px;
        line-height: 1.6;
        margin-bottom: 1rem;
    }
    
    /* Botões maiores para touch */
    .cta-button {
        min-height: 48px;
        padding: 12px 24px;
        font-size: 16px;
    }
    
    /* Links maiores para touch */
    .nav-menu a {
        min-height: 44px;
        display: flex;
        align-items: center;
        padding: 8px 12px;
    }
}

/* Otimizações de Performance */
* {
    box-sizing: border-box;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Lazy loading placeholder */
img[loading="lazy"] {
    opacity: 0;
    transition: opacity 0.3s;
}

img[loading="lazy"].loaded {
    opacity: 1;
}

/* Reduzir layout shifts */
.hero-content {
    min-height: 400px;
}

.section {
    min-height: 200px;
}

/* Otimizar animações para performance */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Critical CSS inline optimization */
.above-fold {
    display: block;
}

.below-fold {
    display: none;
}

.below-fold.loaded {
    display: block;
}/
/* Hierarquia de Headings Otimizada - Layout Preservado */

/* H1 Hero Principal - Grande e Chamativo */
.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--accent-orange);
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

/* H1 de Seções - Tamanho Médio */
.section-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-orange);
    margin-bottom: 1.5rem;
    line-height: 1.3;
    text-align: center;
}

/* H1 de Conteúdo - Tamanho Menor */
.content-header h1 {
    font-size: 2.2rem;
    font-weight: 600;
    color: var(--accent-orange);
    margin-bottom: 1.5rem;
    line-height: 1.4;
}

/* H2s - Subtítulos de Seção */
.vantagem h2,
.app-card h2,
.plano-header h2,
.step h2,
.teste-cta-container h2,
.garantia h2,
.faq-question h2,
.canais-cta h2,
.depoimentos-cta h2,
.comparison-cta h2 {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--accent-orange);
    margin-bottom: 1rem;
    line-height: 1.4;
}

/* H3s - Detalhes e Conteúdo */
.content-info h3,
.feature-content h3,
.contato-item h3,
.footer-section h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--accent-orange);
    margin-bottom: 0.8rem;
    line-height: 1.4;
}

/* Ajustes específicos para outras páginas */
.policy-header h1,
.terms-header h1,
.hero-apps h1 {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--accent-orange);
    margin-bottom: 2rem;
    line-height: 1.2;
}

.policy-item h1,
.terms-item h1,
.apps-faq h1 {
    font-size: 2rem;
    font-weight: 600;
    color: var(--accent-orange);
    margin-bottom: 1.5rem;
    line-height: 1.4;
}

/* Responsividade */
@media (max-width: 768px) {
    /* Removido - já definido acima com !important */
    
    .section-header h1 {
        font-size: 2rem;
    }
    
    .content-header h1 {
        font-size: 1.8rem;
    }
    
    .vantagem h2,
    .app-card h2,
    .plano-header h2,
    .step h2,
    .teste-cta-container h2,
    .garantia h2,
    .faq-question h2 {
        font-size: 1.2rem;
    }
    
    .policy-header h1,
    .terms-header h1,
    .hero-apps h1 {
        font-size: 2.5rem;
    }
}/* Correçõe
s finais de layout para múltiplos H1s */
.section {
    overflow: hidden;
}

.section-header {
    margin-bottom: 3rem;
}

.content-header {
    margin-bottom: 2rem;
}

/* Garantir que H1s não quebrem o grid */
.content-grid,
.vantagens-grid,
.apps-grid,
.planos-grid {
    margin-top: 2rem;
}

/* Espaçamento consistente */
.teste-section,
.vantagens,
.apps,
.planos,
.canais,
.depoimentos,
.comparativo,
.garantias,
.faq,
.contato {
    padding: 4rem 0;
}

/* Correção para ícones pequenos */
.vantagem-icon,
.feature-icon {
    min-width: 80px;
    min-height: 80px;
}/* Mobil
e Extra Small (320px) - Máxima compatibilidade */
@media (max-width: 320px) {
    .hero-content h1 {
        font-size: 1.9rem !important;
        line-height: 1.2 !important;
    }
}

/* Highlight dentro do H1 */
.hero-content h1 .highlight {
    color: var(--accent-orange);
}/
* Tablet - Tamanho intermediário */
@media (min-width: 769px) and (max-width: 1024px) {
    .hero-content h1 {
        font-size: 2.8rem;
    }
}/* Deskto
p Grande - Telas acima de 1200px */
@media (min-width: 1200px) {
    .hero-content h1 {
        font-size: 4rem;
    }
}/* Ga
rantir que o H1 da hero não saia da tela */
.hero-content h1 {
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
}

/* Padding extra para mobile */
@media (max-width: 768px) {
    .hero-content {
        padding: 0 1rem;
    }
    
    .hero-content h1 {
        font-size: 2.5rem !important;
        word-break: break-word;
    }
}

@media (max-width: 480px) {
    .hero-content {
        padding: 0 1.5rem;
    }
}

@media (max-width: 320px) {
    .hero-content {
        padding: 0 1rem;
    }
}/* CORREÇ
ÃO URGENTE - H1 Hero não pode sair da tela */
.hero-content h1 {
    word-wrap: break-word !important;
    overflow-wrap: break-word !important;
    hyphens: auto !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
}

/* Mobile - Tamanhos seguros FORÇADOS */
@media (max-width: 768px) {
    .hero-content {
        padding: 0 1rem !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }
    
    .hero-content h1 {
        font-size: 2rem !important;
        word-break: break-word !important;
        max-width: calc(100vw - 2rem) !important;
        overflow: hidden !important;
        line-height: 1.2 !important;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.8rem !important;
        max-width: calc(100vw - 2rem) !important;
    }
}

@media (max-width: 320px) {
    .hero-content h1 {
        font-size: 1.6rem !important;
        max-width: calc(100vw - 1rem) !important;
    }
}/* Est
ilos para Blog */
.blog-content {
    background: var(--bg-primary);
    color: var(--text-secondary);
    min-height: 100vh;
    padding: 2rem 0;
}

.blog-article {
    max-width: 800px;
    margin: 0 auto;
    background: var(--bg-card);
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    border: 1px solid rgba(255,255,255,0.1);
}

.article-header {
    text-align: center;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid var(--accent-orange);
}

.article-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-orange);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.article-meta {
    color: var(--text-muted);
    font-size: 1rem;
    font-style: italic;
}

.article-content {
    line-height: 1.8;
}

.article-content h2 {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--accent-orange);
    margin: 2rem 0 1rem 0;
    line-height: 1.4;
}

.article-content h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 1.5rem 0 1rem 0;
}

.article-content p {
    margin-bottom: 1.5rem;
    color: var(--text-secondary);
    font-size: 1.1rem;
}

.article-content ul, .article-content ol {
    margin: 1.5rem 0;
    padding-left: 2rem;
    color: var(--text-secondary);
}

.article-content li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.article-content strong {
    color: var(--accent-orange);
    font-weight: 600;
}

.article-content a {
    color: var(--accent-orange);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s ease;
}

.article-content a:hover {
    border-bottom-color: var(--accent-orange);
}

/* Responsividade do Blog */
@media (max-width: 768px) {
    .blog-article {
        padding: 2rem 1.5rem;
        margin: 0 1rem;
    }
    
    .article-header h1 {
        font-size: 2rem;
    }
    
    .article-content h2 {
        font-size: 1.5rem;
    }
    
    .article-content p {
        font-size: 1rem;
    }
}/* Estilo
s para Blog - Página Completa Escura */
html, body {
    background-color: var(--bg-primary) !important;
    color: var(--text-secondary) !important;
}

.blog-content {
    min-height: 100vh;
    padding: 2rem 0;
}

.blog-article {
    max-width: 800px;
    margin: 0 auto;
    background: var(--bg-card);
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    border: 1px solid rgba(255,255,255,0.1);
}

.article-header {
    text-align: center;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid var(--accent-orange);
}

.article-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-orange);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.article-meta {
    color: var(--text-muted);
    font-size: 1rem;
    font-style: italic;
}

.article-content {
    line-height: 1.8;
}

.article-content h2 {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--accent-orange);
    margin: 2rem 0 1rem 0;
    line-height: 1.4;
}

.article-content h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 1.5rem 0 1rem 0;
}

.article-content p {
    margin-bottom: 1.5rem;
    color: var(--text-secondary);
    font-size: 1.1rem;
}

.article-content ul, .article-content ol {
    margin: 1.5rem 0;
    padding-left: 2rem;
    color: var(--text-secondary);
}

.article-content li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.article-content strong {
    color: var(--accent-orange);
    font-weight: 600;
}

.article-content a {
    color: var(--accent-orange);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s ease;
}

.article-content a:hover {
    border-bottom-color: var(--accent-orange);
}

/* Responsividade do Blog */
@media (max-width: 768px) {
    .blog-article {
        padding: 2rem 1.5rem;
        margin: 0 1rem;
    }
    
    .article-header h1 {
        font-size: 2rem;
    }
    
    .article-content h2 {
        font-size: 1.5rem;
    }
    
    .article-content p {
        font-size: 1rem;
    }
}/
* CORREÇÃO DEFINITIVA - HERO MOBILE SEM OVERFLOW */
.hero {
    overflow-x: hidden !important;
    width: 100% !important;
    max-width: 100vw !important;
}

.hero .container {
    max-width: 100% !important;
    padding: 0 1rem !important;
    overflow-x: hidden !important;
}

.hero-content {
    width: 100% !important;
    max-width: 100% !important;
    overflow-x: hidden !important;
    box-sizing: border-box !important;
}

/* Corrigir elementos que podem causar overflow */
.hero-stats {
    width: 100% !important;
    max-width: 100% !important;
    overflow-x: hidden !important;
    box-sizing: border-box !important;
}

.hero-features {
    width: 100% !important;
    max-width: 100% !important;
    overflow-x: hidden !important;
    box-sizing: border-box !important;
}

.stat {
    min-width: 0 !important;
    flex-shrink: 1 !important;
    box-sizing: border-box !important;
}

.feature {
    min-width: 0 !important;
    flex-shrink: 1 !important;
    box-sizing: border-box !important;
}

/* Mobile específico - FORÇADO */
@media (max-width: 768px) {
    .hero-stats {
        flex-direction: column !important;
        gap: 1rem !important;
        align-items: center !important;
    }
    
    .hero-features {
        flex-wrap: wrap !important;
        gap: 0.8rem !important;
        justify-content: center !important;
    }
    
    .stat {
        width: 100% !important;
        max-width: 280px !important;
        padding: 1rem !important;
    }
    
    .feature {
        width: calc(50% - 0.4rem) !important;
        max-width: 140px !important;
        padding: 0.8rem !important;
        font-size: 0.9rem !important;
    }
}

@media (max-width: 480px) {
    .hero .container {
        padding: 0 0.5rem !important;
    }
    
    .feature {
        width: calc(50% - 0.2rem) !important;
        max-width: 120px !important;
        padding: 0.6rem !important;
        font-size: 0.8rem !important;
    }
    
    .stat {
        max-width: 250px !important;
        padding: 0.8rem !important;
    }
}/
* PREVENÇÃO GLOBAL DE OVERFLOW HORIZONTAL */
html {
    overflow-x: hidden !important;
    max-width: 100vw !important;
}

body {
    overflow-x: hidden !important;
    max-width: 100vw !important;
}

* {
    box-sizing: border-box !important;
}

/* Garantir que nenhum elemento saia da tela */
.hero-content > * {
    max-width: 100% !important;
    word-wrap: break-word !important;
    overflow-wrap: break-word !important;
}

/* Textos longos */
.hero-subtitle {
    max-width: 100% !important;
    word-break: break-word !important;
    hyphens: auto !important;
}

.cta-subtitle {
    max-width: 100% !important;
    word-break: break-word !important;
    font-size: 0.9rem !important;
}

/* Botão CTA responsivo */
.cta-button {
    max-width: 100% !important;
    word-break: break-word !important;
    white-space: normal !important;
    text-align: center !important;
}

@media (max-width: 480px) {
    .cta-button {
        padding: 12px 20px !important;
        font-size: 0.95rem !important;
    }
}

/* CORREÇÃO SIMPLES E DIRETA - OVERFLOW MOBILE */
@media (max-width: 768px) {
    html, body {
        overflow-x: hidden !important;
        max-width: 100vw !important;
    }
    
    .hero .container {
        padding: 0 15px !important;
    }
    
    .hero-stats {
        flex-direction: column !important;
        width: 100% !important;
    }
    
    .stat {
        width: 90% !important;
        max-width: 300px !important;
        margin: 0 auto !important;
    }
    
    .hero-features {
        width: 100% !important;
        justify-content: center !important;
    }
    
    .feature {
        flex: 0 1 calc(50% - 0.5rem) !important;
        max-width: 150px !important;
    }
    
    .hero-content h1 {
        font-size: 2rem !important;
        word-break: break-word !important;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.8rem !important;
    }
    
    .feature {
        flex: 0 1 calc(50% - 0.3rem) !important;
        max-width: 130px !important;
        padding: 0.6rem 1rem !important;
        font-size: 0.85rem !important;
    }
}