/* Variáveis CSS (Premium TELUX vibes) */
:root {
    /* Cores de Fundo (Ultra Deep Blue/Black) */
    --bg-base: #030712;
    --bg-surface: #0B1121;
    --bg-surface-elevated: #111827;
    
    /* Cores de Destaque (Baseadas na Logo) */
    --brand-blue: #0083B0;
    --brand-cyan: #00B4DB;
    --brand-orange: #FF8C00;
    --brand-red-orange: #FF4B2B;
    
    /* Gradiente Principal Premium */
    --accent-gradient: linear-gradient(135deg, var(--brand-cyan), var(--brand-blue), var(--brand-orange));
    
    /* Textos */
    --text-primary: #F9FAFB;
    --text-secondary: #9CA3AF;
    
    /* Utilitários */
    --glass-bg: rgba(11, 17, 33, 0.7);
    --glass-border: rgba(255, 255, 255, 0.08);
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    
    /* Tipografia */
    --font-sans: 'Inter', sans-serif;
    --font-heading: 'Outfit', sans-serif;
}

/* Reset Global */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-base);
    color: var(--text-primary);
    font-family: var(--font-sans);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Animações (Reveal on Scroll) */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Tipografia e Botões */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 700;
}

a {
    text-decoration: none;
    color: inherit;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: var(--font-sans);
}

.btn-primary {
    display: inline-block;
    background: var(--accent-gradient);
    color: #fff;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(0, 180, 219, 0.3);
    text-align: center;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 140, 0, 0.4);
    filter: brightness(1.1);
}

.btn-secondary {
    display: inline-block;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    color: #fff;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    transition: var(--transition);
    text-align: center;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.btn-large {
    padding: 16px 32px;
    font-size: 1.1rem;
}

.w-100 {
    width: 100%;
}

/* Navbar */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    background: transparent;
    transition: var(--transition);
}

header.scrolled {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: var(--transition);
}

.logo:hover {
    transform: scale(1.05);
}

.site-logo {
    height: 90px; /* Tamanho aumentado para ficar bem destacado */
    width: auto;
    object-fit: contain;
}

/* Tamanho no rodapé */
footer .site-logo {
    height: 110px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-links a {
    font-weight: 500;
    color: var(--text-secondary);
    transition: var(--transition);
    font-size: 0.95rem;
}

.nav-links a:hover {
    color: var(--text-primary);
}

.mobile-menu-btn {
    display: none;
    color: white;
    font-size: 1.5rem;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('https://images.unsplash.com/photo-1574267432553-4b4628081524?q=80&w=2070&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    z-index: 0;
    animation: bgPulse 20s infinite alternate ease-in-out;
}

@keyframes bgPulse {
    0% { transform: scale(1); filter: brightness(1) hue-rotate(0deg); }
    100% { transform: scale(1.05); filter: brightness(1.2) hue-rotate(15deg); }
}

/* Fundo da Hero mais legível e vibrante */
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(3, 7, 18, 0.95) 0%, rgba(0, 180, 219, 0.2) 50%, rgba(255, 140, 0, 0.15) 100%),
                linear-gradient(to top, var(--bg-base) 0%, transparent 60%);
    backdrop-filter: blur(4px);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 800px;
    padding: 0 20px;
    margin-top: 50px;
}

.badge {
    display: inline-block;
    background: rgba(0, 180, 219, 0.1);
    color: var(--brand-cyan);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 20px;
    border: 1px solid rgba(0, 180, 219, 0.3);
    backdrop-filter: blur(4px);
}

.hero-title {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 20px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.hero-title span {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #e5e5e5;
    margin-bottom: 40px;
    font-weight: 400;
    text-shadow: 0 1px 5px rgba(0,0,0,0.8);
}

.hero-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
}

/* Sections Globais */
.section-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 5%;
}

.section-title {
    font-size: 2.2rem;
    margin-bottom: 15px;
    position: relative;
}

.section-title span {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-title.center {
    display: block;
    text-align: center;
    width: 100%;
}

.section-subtitle {
    text-align: center;
    color: var(--text-secondary);
    margin-bottom: 60px;
    font-size: 1.1rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section-subtitle.highlight-subtitle {
    color: var(--brand-cyan);
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 50px;
    text-shadow: 0 0 10px rgba(0, 180, 219, 0.4);
    text-align: center;
    width: 100%;
}

/* Como Funciona - Ultra Premium */
.features-section {
    background: var(--bg-surface);
}

.steps-wrapper {
    position: relative;
    padding-top: 20px;
}

.step-progress-line {
    position: absolute;
    top: 65px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(0, 180, 219, 0.5), transparent);
    z-index: 0;
    display: none;
}

@media (min-width: 900px) {
    .step-progress-line { display: block; }
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.step-card.exclusive {
    position: relative;
    background: linear-gradient(145deg, rgba(17, 24, 39, 0.7), rgba(3, 7, 18, 0.9));
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 50px 30px 40px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
    z-index: 1;
}

.step-card.exclusive:hover {
    transform: translateY(-15px);
    border-color: rgba(0, 180, 219, 0.4);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6), inset 0 0 20px rgba(0, 180, 219, 0.05);
}

.step-number-watermark {
    position: absolute;
    top: -20px;
    right: -10px;
    font-size: 8rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.02);
    font-family: var(--font-heading);
    z-index: -1;
    transition: color 0.4s ease;
    line-height: 1;
}

.step-card.exclusive:hover .step-number-watermark {
    color: rgba(0, 180, 219, 0.05);
}

.step-icon-wrapper {
    position: relative;
    display: inline-block;
    margin-bottom: 25px;
    background: var(--bg-surface);
    border-radius: 50%;
    padding: 10px;
}

.step-icon.glow {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(0, 180, 219, 0.1), rgba(0, 131, 176, 0.2));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--brand-cyan);
    border: 1px solid rgba(0, 180, 219, 0.3);
    box-shadow: 0 0 20px rgba(0, 180, 219, 0.15);
    transition: all 0.4s ease;
    position: relative;
    z-index: 2;
}

.step-card.exclusive:hover .step-icon.glow {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 0 30px rgba(0, 180, 219, 0.6);
    background: var(--brand-cyan);
    color: white;
    border-color: white;
}

.step-card.exclusive h3 {
    margin-bottom: 15px;
    font-size: 1.4rem;
    color: var(--text-primary);
    font-weight: 700;
}

.step-card.exclusive p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Benefícios - Ultra Premium */
.benefits-section {
    background: var(--bg-base);
}

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

.premium-card {
    background: linear-gradient(145deg, rgba(20, 25, 40, 0.6), rgba(5, 10, 20, 0.9));
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    padding: 40px 30px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.premium-card::before {
    content: '';
    position: absolute;
    top: -50%; left: -50%; width: 200%; height: 200%;
    background: radial-gradient(circle, rgba(0, 180, 219, 0.05) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.premium-card:hover {
    transform: translateY(-8px);
    border-color: rgba(0, 180, 219, 0.2);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
}

.premium-card:hover::before {
    opacity: 1;
}

.icon-wrapper {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: rgba(0, 180, 219, 0.05);
    border-radius: 14px;
    margin-bottom: 25px;
    border: 1px solid rgba(0, 180, 219, 0.1);
    transition: all 0.4s ease;
}

.premium-card:hover .icon-wrapper {
    background: rgba(0, 180, 219, 0.15);
    border-color: rgba(0, 180, 219, 0.3);
    box-shadow: 0 0 20px rgba(0, 180, 219, 0.2);
    transform: scale(1.05) rotate(-5deg);
}

.benefit-icon {
    font-size: 1.8rem;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.premium-card h3 {
    margin-bottom: 12px;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-primary);
}

.premium-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Content Carousels */
.content-section {
    background: linear-gradient(to bottom, var(--bg-base), var(--bg-surface));
    padding: 0;
}

.carousel-container {
    position: relative;
    margin-bottom: 40px;
}

.carousel {
    display: flex;
    gap: 15px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding: 20px 0;
    scrollbar-width: none;
}

.carousel::-webkit-scrollbar {
    display: none;
}

.poster {
    flex: 0 0 calc(100% / 6 - 15px);
    min-width: 150px;
    aspect-ratio: 2/3;
    border-radius: 8px;
    overflow: hidden;
    scroll-snap-align: start;
    transition: var(--transition);
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0,0,0,0.5);
}

.poster img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.poster:hover {
    transform: scale(1.08) translateY(-10px);
    z-index: 2;
    box-shadow: 0 10px 20px rgba(0,0,0,0.8);
    border: 2px solid var(--glass-border);
}

.poster:hover img {
    filter: brightness(1.1);
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 40px;
    height: 40px;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(4px);
    border: 1px solid var(--glass-border);
    border-radius: 50%;
    color: white;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.carousel-container:hover .carousel-btn {
    opacity: 1;
}

.carousel-btn:hover {
    background: var(--brand-orange);
    border-color: var(--brand-orange);
    transform: translateY(-50%) scale(1.1);
}

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

/* Esportes Section */
.sports-section {
    background: linear-gradient(to bottom, var(--bg-surface), var(--bg-base));
}

.sports-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.sport-card {
    background: var(--bg-surface-elevated);
    border-radius: 16px;
    padding: 35px 25px;
    position: relative;
    overflow: hidden;
    border: 1px solid var(--glass-border);
    transition: all 0.4s ease;
    cursor: default;
}

.sport-card:hover {
    transform: translateY(-5px) scale(1.02);
    border-color: rgba(255,255,255,0.2);
    box-shadow: 0 15px 30px rgba(0,0,0,0.5);
}

.sport-logo {
    font-size: 2rem;
    font-weight: 900;
    margin-bottom: 10px;
    letter-spacing: 1px;
    font-family: var(--font-heading);
    position: relative;
    z-index: 2;
    transition: color 0.4s ease;
}

.sport-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    position: relative;
    z-index: 2;
}

.sport-bg-icon {
    position: absolute;
    bottom: -20px;
    right: -20px;
    font-size: 8rem;
    opacity: 0.03;
    transform: rotate(-15deg);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 1;
}

.sport-card:hover .sport-bg-icon {
    transform: rotate(0deg) scale(1.1);
    opacity: 0.15;
}

/* Cores específicas de cada canal */
.sport-card.premiere:hover { border-bottom: 4px solid #00b159; }
.sport-card.premiere:hover .sport-logo, .sport-card.premiere:hover .sport-bg-icon { color: #00b159; }

.sport-card.sportv:hover { border-bottom: 4px solid #00a0e4; }
.sport-card.sportv:hover .sport-logo, .sport-card.sportv:hover .sport-bg-icon { color: #00a0e4; }

.sport-card.espn:hover { border-bottom: 4px solid #cc0000; }
.sport-card.espn:hover .sport-logo, .sport-card.espn:hover .sport-bg-icon { color: #cc0000; }

.sport-card.tnt:hover { border-bottom: 4px solid #e5007e; }
.sport-card.tnt:hover .sport-logo, .sport-card.tnt:hover .sport-bg-icon { color: #e5007e; }

.sport-card.combate:hover { border-bottom: 4px solid #8b0000; }
.sport-card.combate:hover .sport-logo, .sport-card.combate:hover .sport-bg-icon { color: #8b0000; }

.sport-card.bandsports:hover { border-bottom: 4px solid #009c3b; }
.sport-card.bandsports:hover .sport-logo, .sport-card.bandsports:hover .sport-bg-icon { color: #009c3b; }
/* Seção de Canais */
.channels-section {
    background: var(--bg-surface);
}

.channels-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.channel-category-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 25px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    transition: all 0.3s ease;
}

.channel-category-card:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-5px);
    border-color: rgba(0, 180, 219, 0.3);
    box-shadow: 0 10px 20px rgba(0, 180, 219, 0.1);
}

.channel-category-card .cat-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(0, 180, 219, 0.1), rgba(0, 180, 219, 0.2));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--brand-cyan);
    font-size: 1.5rem;
    margin-bottom: 15px;
    border: 1px solid rgba(0, 180, 219, 0.2);
    transition: all 0.3s ease;
}

.channel-category-card:hover .cat-icon {
    background: var(--brand-cyan);
    color: white;
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 0 15px rgba(0, 180, 219, 0.5);
}

.channel-category-card h3 {
    font-size: 1.2rem;
    color: var(--text-primary);
    margin-bottom: 10px;
}

.channel-category-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

.channels-banner {
    background: linear-gradient(135deg, rgba(0, 180, 219, 0.1), rgba(3, 7, 18, 0.8));
    border: 1px solid rgba(0, 180, 219, 0.3);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    margin-top: 50px;
    box-shadow: inset 0 0 30px rgba(0, 180, 219, 0.05);
}

.channels-banner h3 {
    font-size: 1.8rem;
    color: var(--text-primary);
    margin-bottom: 15px;
}

.channels-banner p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.mt-5 { margin-top: 50px; }
.mt-3 { margin-top: 20px; }

/* Aplicativos Section */
.apps-section {
    background: linear-gradient(to bottom, var(--bg-surface), var(--bg-base));
}

/* Smart TV Premium Showcase */
.premium-apps-showcase {
    background: linear-gradient(145deg, #0f1115, #05070a);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 40px;
    box-shadow: inset 0 0 40px rgba(0, 0, 0, 0.8), 0 20px 40px rgba(0, 0, 0, 0.5);
    position: relative;
    overflow: hidden;
}

.premium-apps-showcase::before {
    content: '';
    position: absolute;
    top: -50%; left: -50%; width: 200%; height: 200%;
    background: radial-gradient(circle, rgba(0, 180, 219, 0.05) 0%, transparent 60%);
    pointer-events: none;
}

.premium-apps-header {
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    z-index: 2;
}

.premium-apps-header h3 {
    font-size: 1.8rem;
    color: var(--text-primary);
    margin-bottom: 10px;
    font-weight: 800;
}

.premium-apps-header p {
    color: var(--text-secondary);
    font-size: 1.1rem;
}

.premium-apps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 2;
}

.premium-app-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 30px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.premium-app-card:hover {
    transform: translateY(-10px);
    border-color: rgba(0, 180, 219, 0.4);
    box-shadow: 0 15px 30px rgba(0, 180, 219, 0.15), inset 0 0 20px rgba(0, 180, 219, 0.05);
    background: rgba(255, 255, 255, 0.04);
}

.app-logo {
    width: 100px;
    height: 100px;
    object-fit: contain;
    margin-bottom: 20px;
    filter: drop-shadow(0 10px 15px rgba(0,0,0,0.5));
    transition: all 0.4s ease;
}

.premium-app-card:hover .app-logo {
    transform: scale(1.15);
    filter: drop-shadow(0 15px 25px rgba(0,0,0,0.8));
}

.premium-app-card h4 {
    font-size: 1.2rem;
    color: var(--text-primary);
    margin-bottom: 10px;
}

.app-badge {
    background: rgba(0, 180, 219, 0.1);
    color: var(--brand-cyan);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
    border: 1px solid rgba(0, 180, 219, 0.2);
}

/* Android Premium Showcase */
.premium-android-content {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    align-items: stretch;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.android-card {
    flex: 0 0 auto;
    width: 250px;
}

.android-downloads-card {
    flex: 1 1 300px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 30px;
    text-align: left;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.android-downloads-card h4 {
    font-size: 1.3rem;
    color: var(--text-primary);
    margin-bottom: 25px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 10px;
}

.download-methods {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.download-method {
    flex: 1 1 200px;
}

.download-method h5 {
    color: var(--text-primary);
    font-size: 1rem;
    margin-bottom: 15px;
}

.download-method ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.download-link {
    color: var(--brand-cyan);
    text-decoration: none;
    background: rgba(0, 180, 219, 0.1);
    padding: 8px 15px;
    border-radius: 8px;
    display: inline-block;
    border: 1px solid rgba(0, 180, 219, 0.2);
    transition: all 0.3s ease;
    word-break: break-all;
    font-size: 0.9rem;
}

.download-link:hover {
    background: var(--brand-cyan);
    color: white;
}

.download-code {
    color: var(--brand-orange);
    background: rgba(255, 140, 0, 0.1);
    padding: 8px 15px;
    border-radius: 8px;
    display: inline-block;
    border: 1px solid rgba(255, 140, 0, 0.2);
    font-weight: 700;
    letter-spacing: 2px;
}

.text-cyan { color: var(--brand-cyan); }
.apps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.app-category-card {
    background: var(--bg-surface-elevated);
    border-radius: 16px;
    padding: 35px 25px;
    border: 1px solid var(--glass-border);
    transition: all 0.4s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.app-category-card:hover {
    transform: translateY(-8px);
    border-color: rgba(0, 180, 219, 0.4);
    box-shadow: 0 15px 30px rgba(0, 180, 219, 0.1);
}

.app-icon {
    font-size: 2.5rem;
    color: var(--brand-cyan);
    margin-bottom: 20px;
    display: inline-block;
    padding: 15px;
    background: rgba(0, 180, 219, 0.05);
    border-radius: 50%;
    border: 1px solid rgba(0, 180, 219, 0.1);
    transition: all 0.4s ease;
}

.app-category-card:hover .app-icon {
    background: var(--brand-cyan);
    color: white;
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(0, 180, 219, 0.4);
}

.app-category-card h3 {
    font-size: 1.3rem;
    color: var(--text-primary);
    margin-bottom: 15px;
    font-weight: 700;
}

.app-category-card p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 20px;
}

.app-brands {
    display: flex;
    justify-content: center;
    gap: 15px;
    align-items: center;
    border-top: 1px solid var(--glass-border);
    padding-top: 20px;
    color: #8696A0;
    font-size: 1.2rem;
}

.app-brands .text-brand {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.apps-download-banner {
    background: rgba(0, 180, 219, 0.05);
    border: 1px dashed rgba(0, 180, 219, 0.3);
    border-radius: 12px;
    padding: 30px;
    text-align: center;
}

.apps-download-banner p {
    font-size: 1.1rem;
    color: var(--text-primary);
    margin-bottom: 10px;
}
/* Testimonials (WhatsApp Prova Social) */
.testimonials-section {
    background: var(--bg-base);
}

.whatsapp-masonry {
    column-count: 3;
    column-gap: 25px;
    padding: 20px 0;
}

@media (max-width: 992px) { .whatsapp-masonry { column-count: 2; } }
@media (max-width: 600px) { .whatsapp-masonry { column-count: 1; } }

.wa-msg-card {
    background: #0B141A;
    border-radius: 12px;
    padding: 15px;
    margin-bottom: 25px;
    break-inside: avoid;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    border: 1px solid rgba(255,255,255,0.02);
}

.wa-profile {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    padding-bottom: 10px;
}

.wa-profile img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.wa-info { display: flex; flex-direction: column; }
.wa-info strong { color: #E9EDEF; font-size: 0.95rem; font-family: var(--font-sans); }
.wa-info span { color: #8696A0; font-size: 0.75rem; }

.wa-bubble {
    background: #005C4B;
    border-radius: 8px;
    border-top-left-radius: 0;
    padding: 10px 12px;
    position: relative;
    max-width: 95%;
    color: #E9EDEF;
    font-size: 0.95rem;
    line-height: 1.4;
    box-shadow: 0 1px 2px rgba(0,0,0,0.3);
}

.wa-bubble::before {
    content: '';
    position: absolute;
    top: 0; left: -10px;
    border-width: 0 10px 10px 0;
    border-style: solid;
    border-color: transparent #005C4B transparent transparent;
}

.wa-bubble p { margin-bottom: 5px; color: #E9EDEF; }

.wa-meta {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 5px;
    font-size: 0.7rem;
    color: #8696A0;
}
.wa-meta .read { color: #53BDEB; font-size: 0.8rem; }

/* Popup de Visitantes */
.visitor-popup {
    position: fixed;
    bottom: 30px;
    left: 30px;
    background: var(--bg-surface-elevated);
    border: 1px solid var(--glass-border);
    border-left: 4px solid var(--brand-cyan);
    border-radius: 8px;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    z-index: 1000;
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    opacity: 1;
    transform: translateX(0);
}

.visitor-popup.hidden {
    opacity: 0;
    transform: translateX(-150%);
    pointer-events: none;
}

.visitor-icon {
    background: rgba(0, 180, 219, 0.1);
    color: var(--brand-cyan);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    animation: pulseIcon 2s infinite;
}

@keyframes pulseIcon {
    0% { box-shadow: 0 0 0 0 rgba(0, 180, 219, 0.4); }
    70% { box-shadow: 0 0 0 10px rgba(0, 180, 219, 0); }
    100% { box-shadow: 0 0 0 0 rgba(0, 180, 219, 0); }
}

.visitor-text p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.3;
}

.visitor-text strong { color: var(--text-primary); font-size: 1rem; }

@media (max-width: 768px) {
    .visitor-popup { bottom: 110px; left: 20px; right: auto; }
}

/* Pricing Section */
.pricing-section {
    background: linear-gradient(to bottom, var(--bg-base), var(--bg-surface));
}

.pricing-grid.max-style {
    display: flex;
    justify-content: center;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.pricing-card-max {
    flex: 1;
    min-width: 240px;
    background: #FFFFFF;
    border-radius: 8px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    color: #000000;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-card-max:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(255, 255, 255, 0.1);
}

.pricing-card-max .plan-header {
    margin-bottom: 20px;
    border-bottom: 1px solid #E5E7EB;
    padding-bottom: 20px;
}

.pricing-card-max .plan-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #000000;
    margin: 0;
}

.pricing-card-max .plan-features {
    flex-grow: 1;
    margin-bottom: 30px;
}

.pricing-card-max .plan-features ul {
    list-style: none;
    padding: 0;
}

.pricing-card-max .plan-features li {
    font-size: 0.85rem;
    color: #374151;
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    line-height: 1.4;
    font-weight: 500;
}

.pricing-card-max .plan-features i {
    color: #374151;
    font-size: 0.9rem;
    margin-top: 3px;
}

.pricing-card-max .plan-footer {
    text-align: center;
}

.pricing-card-max .old-price {
    font-size: 0.85rem;
    color: #6B7280;
    text-decoration: line-through;
    margin-bottom: 5px;
}

.pricing-card-max .price {
    font-size: 2.5rem;
    font-weight: 800;
    color: #000000;
    margin-bottom: 20px;
    display: flex;
    align-items: baseline;
    justify-content: center;
    font-family: var(--font-sans);
}

.pricing-card-max .price span {
    font-size: 1rem;
    font-weight: 500;
    color: #6B7280;
    margin-left: 5px;
}

.btn-max {
    width: 100%;
    background-color: #4F6A8F;
    color: #FFFFFF;
    border: none;
    border-radius: 6px;
    padding: 15px;
    font-size: 0.9rem;
    font-weight: 700;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-max:hover {
    background-color: #3A506B;
}

.pricing-card.premium::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 4px;
    background: var(--accent-gradient);
}

.card-badge {
    position: absolute;
    top: 15px; right: -30px;
    background: var(--accent-gradient);
    color: white;
    padding: 5px 30px;
    font-size: 0.75rem;
    font-weight: bold;
    text-transform: uppercase;
    transform: rotate(45deg);
}

/* FAQ Section */
.faq-section {
    background: var(--bg-surface);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    background: var(--bg-surface-elevated);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    overflow: hidden;
    transition: var(--transition);
}

.faq-question {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
}

.faq-question h3 {
    font-size: 1.1rem;
    margin: 0;
}

.faq-question i {
    transition: transform 0.3s ease;
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
    padding: 0 20px;
    background: rgba(0,0,0,0.2);
}

.faq-item.active .faq-answer {
    max-height: 200px; /* Ajuste se necessário para respostas longas */
    padding: 0 20px 20px;
}

.faq-answer p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin: 0;
}


/* Chatbot Widget (Premium Update) */
.chatbot-widget { position: fixed; bottom: 30px; right: 30px; z-index: 999; }
.chatbot-toggle { width: 65px; height: 65px; border-radius: 50%; background: var(--accent-gradient); color: white; font-size: 1.8rem; display: flex; align-items: center; justify-content: center; box-shadow: 0 10px 25px rgba(255, 140, 0, 0.4); transition: var(--transition); position: relative; animation: pulse 2s infinite; }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(0, 180, 219, 0.6); } 70% { box-shadow: 0 0 0 15px rgba(0, 180, 219, 0); } 100% { box-shadow: 0 0 0 0 rgba(0, 180, 219, 0); } }
.chatbot-toggle:hover { transform: scale(1.1); }
.notification-badge { position: absolute; top: -2px; right: -2px; background: var(--brand-red-orange); color: white; font-size: 0.7rem; font-weight: bold; width: 20px; height: 20px; border-radius: 50%; display: flex; align-items: center; justify-content: center; border: 2px solid var(--bg-surface); }
.chatbot-tooltip { position: absolute; right: 80px; background: white; color: black; padding: 8px 15px; border-radius: 8px; font-size: 0.9rem; font-weight: 600; white-space: nowrap; box-shadow: 0 4px 10px rgba(0,0,0,0.3); opacity: 0; pointer-events: none; transition: var(--transition); transform: translateX(10px); }
.chatbot-tooltip::after { content: ''; position: absolute; right: -6px; top: 50%; transform: translateY(-50%); border-width: 6px 0 6px 6px; border-style: solid; border-color: transparent transparent transparent white; }
.chatbot-widget:hover .chatbot-tooltip { opacity: 1; transform: translateX(0); }
.chatbot-window { position: absolute; bottom: 85px; right: 0; width: 350px; height: 500px; background: var(--bg-surface); border: 1px solid var(--glass-border); border-radius: 16px; box-shadow: 0 20px 50px rgba(0,0,0,0.6); display: flex; flex-direction: column; overflow: hidden; transition: var(--transition); transform-origin: bottom right; }
.chatbot-window.hidden { opacity: 0; transform: scale(0.8); pointer-events: none; }
.chatbot-header { background: var(--bg-surface-elevated); padding: 15px 20px; display: flex; align-items: center; gap: 15px; border-bottom: 1px solid var(--glass-border); }
.chatbot-avatar { position: relative; width: 45px; height: 45px; }
.chatbot-avatar img { width: 100%; height: 100%; border-radius: 50%; object-fit: cover; border: 2px solid var(--brand-cyan); }
.status-indicator { position: absolute; bottom: 2px; right: 2px; width: 12px; height: 12px; background: #10B981; border-radius: 50%; border: 2px solid var(--bg-surface-elevated); }
.chatbot-info h4 { font-size: 1rem; margin: 0; }
.chatbot-info p { font-size: 0.8rem; color: #10B981; margin: 0; }
.chatbot-close { margin-left: auto; color: var(--text-secondary); font-size: 1.2rem; }
.chatbot-close:hover { color: white; }
.chatbot-messages { flex: 1; padding: 20px; overflow-y: auto; display: flex; flex-direction: column; gap: 15px; }
.chatbot-messages::-webkit-scrollbar { width: 6px; }
.chatbot-messages::-webkit-scrollbar-thumb { background: var(--bg-surface-elevated); border-radius: 3px; }
.message { max-width: 85%; padding: 12px 16px; border-radius: 16px; font-size: 0.95rem; line-height: 1.4; animation: slideIn 0.3s ease forwards; transform: translateY(10px); opacity: 0; }
@keyframes slideIn { to { transform: translateY(0); opacity: 1; } }
.message.bot { background: var(--bg-surface-elevated); align-self: flex-start; border-bottom-left-radius: 4px; border: 1px solid var(--glass-border); }
.message.user { background: var(--accent-gradient); align-self: flex-end; border-bottom-right-radius: 4px; box-shadow: 0 4px 10px rgba(0, 180, 219, 0.2); }
.typing-indicator { display: flex; gap: 4px; padding: 4px 0; }
.typing-dot { width: 6px; height: 6px; background: var(--text-secondary); border-radius: 50%; animation: typing 1.4s infinite ease-in-out; }
.typing-dot:nth-child(1) { animation-delay: 0s; }
.typing-dot:nth-child(2) { animation-delay: 0.2s; }
.typing-dot:nth-child(3) { animation-delay: 0.4s; }
@keyframes typing { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-4px); } }
.chatbot-options { padding: 0 20px 15px; display: flex; flex-direction: column; gap: 8px; }
.chatbot-options.hidden { display: none; }
.chat-option { background: transparent; border: 1px solid var(--brand-blue); color: white; padding: 10px 15px; border-radius: 20px; text-align: left; font-size: 0.9rem; transition: var(--transition); }
.chat-option:hover { background: rgba(0, 180, 219, 0.15); box-shadow: 0 0 10px rgba(0, 180, 219, 0.2); }
.chatbot-input-area { padding: 15px; border-top: 1px solid var(--glass-border); background: var(--bg-surface-elevated); text-align: center; }
.chatbot-disclaimer { font-size: 0.75rem; color: var(--text-secondary); }

/* Footer */
footer { background: var(--bg-surface-elevated); padding: 40px 5%; border-top: 1px solid var(--glass-border); }
.footer-content { max-width: 1400px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 20px; }
.footer-content p { color: var(--text-secondary); font-size: 0.9rem; }
.social-links { display: flex; gap: 15px; }
.social-links a { color: var(--text-secondary); font-size: 1.2rem; transition: var(--transition); }
.social-links a:hover { color: white; }

/* Responsivo */
@media (max-width: 768px) {
    .nav-links, .nav-actions { display: none; }
    .nav-links.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background: var(--bg-surface-elevated);
        padding: 20px;
        border-bottom: 1px solid var(--glass-border);
        box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    }
    .mobile-menu-btn { display: block; }
    .hero-title { font-size: 2.5rem; }
    .hero-buttons { flex-direction: column; }
    .pricing-card.premium { transform: scale(1); }
    .pricing-card.premium:hover { transform: translateY(-5px); }
    .chatbot-window { width: calc(100vw - 40px); right: -10px; bottom: 80px; }
    .footer-content { flex-direction: column; text-align: center; }
    .section-title { font-size: 1.8rem; }
}
