/* ============================================================ */
/* RESET & VARIÁVEIS — ESTILO GITHUB-INSPIRED                  */
/* ============================================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #FF6B35;
    --primary-hover: #E55A2B;
    --primary-btn: #C15420;
    --primary-btn-hover: #A8471A;
    --secondary-color: #FFB800;
    --dark-bg: #0D1117;
    --darker-bg: #010409;
    --card-bg: #161B22;
    --card-hover-bg: #1C2128;
    --text-primary: #E6EDF3;
    --text-secondary: #8B949E;
    --text-muted: #848D97;
    --border-color: #30363D;
    --border-hover: #484F58;
    --gradient-primary: linear-gradient(135deg, #FF6B35 0%, #FFB800 100%);
    --gradient-dark: linear-gradient(180deg, #0D1117 0%, #161B22 100%);
    --shadow-card: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
    --shadow-primary: 0 0 0 3px rgba(255, 107, 53, 0.3);
    --radius-sm: 6px;
    --radius-md: 8px;
    --radius-lg: 12px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
    background: var(--dark-bg);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    font-size: 14px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ============================================================ */
/* HEADER — clean top bar                                       */
/* ============================================================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--darker-bg);
    border-bottom: 1px solid var(--border-color);
}

.navbar {
    padding: 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 48px;
}

.logo {
    height: 32px;
    width: auto;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 4px;
}

.nav-menu a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    padding: 6px 12px;
    border-radius: var(--radius-sm);
    transition: color 0.15s ease, background 0.15s ease;
}

.nav-menu a:hover {
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.04);
}

.btn-cta {
    background: var(--primary-btn);
    color: white;
    padding: 5px 16px;
    border-radius: var(--radius-sm);
    text-decoration: none;
    font-weight: 600;
    font-size: 12px;
    transition: background 0.15s ease;
    border: 1px solid rgba(255, 107, 53, 0.4);
}

.btn-cta:hover {
    background: var(--primary-btn-hover);
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    padding: 4px;
}

.mobile-toggle span {
    width: 20px;
    height: 2px;
    background: var(--text-primary);
    transition: 0.2s;
    border-radius: 1px;
}

/* ============================================================ */
/* HERO SECTION (legado — mantém para glossário etc.)           */
/* ============================================================ */
.hero-section {
    min-height: auto;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: 48px;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.movie-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-template-rows: repeat(4, 1fr);
    height: 100vh;
    width: 100%;
    gap: 2px;
}

.movie-grid img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.4;
    transition: opacity 0.3s ease;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(13, 17, 23, 0.85) 0%, rgba(13, 17, 23, 0.6) 50%, rgba(255, 107, 53, 0.05) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.hero-text {
    max-width: 600px;
}

.hero-badge {
    display: inline-block;
    background: var(--primary-btn);
    color: white;
    padding: 4px 12px;
    border-radius: var(--radius-sm);
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 16px;
}

.hero-title {
    font-size: clamp(2rem, 5vw, 3rem);
    line-height: 1.2;
    margin-bottom: 16px;
    font-weight: 700;
}

.highlight {
    color: var(--primary-color);
}

.hero-description {
    font-size: 16px;
    color: var(--text-secondary);
    margin-bottom: 24px;
    line-height: 1.6;
}

.hero-features {
    display: flex;
    gap: 12px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--card-bg);
    padding: 8px 12px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-color);
    font-size: 13px;
    color: var(--text-secondary);
}

.feature-icon {
    font-size: 14px;
}

.hero-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.btn-primary {
    background: var(--primary-btn);
    color: white;
    padding: 10px 20px;
    border-radius: var(--radius-sm);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: background 0.15s ease;
    border: 1px solid rgba(255, 107, 53, 0.4);
    cursor: pointer;
}

.btn-primary:hover {
    background: var(--primary-btn-hover);
}

.btn-secondary {
    background: var(--card-bg);
    color: var(--text-primary);
    padding: 10px 20px;
    border-radius: var(--radius-sm);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    border: 1px solid var(--border-color);
    transition: background 0.15s ease, border-color 0.15s ease;
}

.btn-secondary:hover {
    background: var(--card-hover-bg);
    border-color: var(--border-hover);
}

/* ============================================================ */
/* SECTION TITLES                                               */
/* ============================================================ */
.section-title {
    text-align: center;
    font-size: 24px;
    margin-bottom: 8px;
    font-weight: 700;
    color: var(--text-primary);
}

.section-subtitle {
    text-align: center;
    color: var(--text-secondary);
    font-size: 14px;
    margin-top: 0;
    margin-bottom: 32px;
}

/* ============================================================ */
/* VIDEO SECTION                                                */
/* ============================================================ */
.video-section {
    padding: 48px 0;
    background: var(--dark-bg);
    text-align: center;
}

.video-section .section-title {
    margin-bottom: 24px;
    font-size: 24px;
    font-weight: 700;
    color: var(--text-primary);
}

.video-container {
    position: relative;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    aspect-ratio: 16/9;
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* ============================================================ */
/* FEATURES SECTION                                             */
/* ============================================================ */
.features-section {
    padding: 48px 0;
    background: var(--darker-bg);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.features-section .section-title {
    text-align: center;
    margin-bottom: 32px;
    color: var(--text-primary);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 16px;
}

.feature-card {
    background: var(--card-bg);
    padding: 24px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    transition: border-color 0.15s ease;
}

.feature-card:hover {
    border-color: var(--border-hover);
}

.feature-icon-large {
    width: 48px;
    height: 48px;
    margin: 0 0 16px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 107, 53, 0.1);
    border: 1px solid rgba(255, 107, 53, 0.2);
}

.feature-card h3 {
    font-size: 16px;
    margin-bottom: 8px;
    color: var(--text-primary);
    font-weight: 600;
}

.feature-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 14px;
}

.icon-inner {
    font-size: 1.5rem;
    z-index: 2;
    position: relative;
}

.activation-icon,
.quality-icon-large,
.devices-icon,
.auto-icon {
    background: rgba(255, 107, 53, 0.1);
    border: 1px solid rgba(255, 107, 53, 0.2);
    box-shadow: none;
}

.activation-icon::before,
.quality-icon-large::before,
.devices-icon::before,
.auto-icon::before {
    display: none;
}

/* ============================================================ */
/* REVIEWS SECTION                                              */
/* ============================================================ */
.reviews-section {
    padding: 48px 0;
    background: var(--dark-bg);
    border-top: 1px solid var(--border-color);
}

.reviews-section .section-title {
    text-align: center;
    margin-bottom: 24px;
    font-size: 24px;
    font-weight: 700;
    color: var(--text-primary);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    max-width: 1200px;
    margin: 0 auto;
}

.review-card {
    background: var(--card-bg);
    padding: 16px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    transition: border-color 0.15s ease;
    position: relative;
}

.review-card:hover {
    border-color: var(--border-hover);
}

.review-stars {
    color: var(--secondary-color);
    font-size: 14px;
    margin-bottom: 8px;
    letter-spacing: 1px;
}

.review-text {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 12px;
    font-style: italic;
    font-size: 13px;
}

.review-author {
    border-top: 1px solid var(--border-color);
    padding-top: 12px;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.review-author strong,
.review-author h3 {
    color: var(--text-primary);
    font-weight: 600;
    font-size: 13px;
}

.review-author span {
    color: var(--text-muted);
    font-size: 12px;
}

/* ============================================================ */
/* EXPERIENCE SECTION                                           */
/* ============================================================ */
.experience-section {
    padding: 48px 0;
    background: var(--dark-bg);
    border-top: 1px solid var(--border-color);
}

.experience-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    align-items: center;
}

.experience-image {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.experience-image img {
    width: 100%;
    height: auto;
    display: block;
}

.play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.15s ease;
}

.experience-image:hover .play-overlay {
    opacity: 1;
}

.play-button {
    width: 56px;
    height: 56px;
    background: var(--primary-btn);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    cursor: pointer;
}

.experience-text h2 {
    font-size: 24px;
    line-height: 1.3;
    margin-bottom: 12px;
    font-weight: 700;
}

.experience-text p {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 16px;
    line-height: 1.6;
}

.experience-list {
    list-style: none;
    margin-bottom: 24px;
}

.experience-list li {
    padding: 4px 0;
    color: var(--text-secondary);
    font-size: 14px;
}

/* ============================================================ */
/* BEST IPTV SECTION                                            */
/* ============================================================ */
.best-iptv-section {
    padding: 48px 0;
    background: var(--darker-bg);
    border-top: 1px solid var(--border-color);
}

.best-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    align-items: center;
}

.best-text h2 {
    font-size: 24px;
    line-height: 1.3;
    margin-bottom: 12px;
    font-weight: 700;
}

.best-text p {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 24px;
    line-height: 1.6;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 24px;
}

.stat-item {
    text-align: center;
    background: var(--card-bg);
    padding: 16px 8px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
}

.stat-number {
    display: block;
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
}

.stat-label {
    display: block;
    color: var(--text-secondary);
    font-size: 12px;
    margin-top: 4px;
}

.best-image img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
}

/* ============================================================ */
/* MOVIES SECTION                                               */
/* ============================================================ */
.movies-section {
    padding: 48px 0;
    background: var(--dark-bg);
    border-top: 1px solid var(--border-color);
}

.movies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 16px;
}

.movie-card {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    aspect-ratio: 16/9;
    cursor: pointer;
    border: 1px solid var(--border-color);
    transition: border-color 0.15s ease;
}

.movie-card:hover {
    border-color: var(--border-hover);
}

.movie-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.movie-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 16px;
    opacity: 0;
    transition: opacity 0.15s ease;
}

.movie-card:hover .movie-overlay {
    opacity: 1;
}

.movie-overlay h3 {
    font-size: 16px;
    margin-bottom: 8px;
}

.movie-btn {
    background: var(--primary-btn);
    color: white;
    padding: 6px 16px;
    border-radius: var(--radius-sm);
    text-decoration: none;
    font-weight: 600;
    font-size: 12px;
    align-self: flex-start;
    transition: background 0.15s ease;
}

.movie-btn:hover {
    background: var(--primary-btn-hover);
}

/* ============================================================ */
/* PLANS SECTION                                                */
/* ============================================================ */
.plans-section {
    padding: 48px 0;
    background: var(--darker-bg);
    border-top: 1px solid var(--border-color);
}

.plans-subtitle {
    text-align: center;
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 32px;
}

.plans-benefits {
    text-align: center;
    margin-bottom: 32px;
    background: var(--card-bg);
    padding: 20px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
}

.plans-benefits h3 {
    color: var(--primary-color);
    font-size: 16px;
    margin-bottom: 16px;
    font-weight: 600;
}

.benefits-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
    max-width: 1200px;
    margin: 0 auto;
}

.benefits-list li {
    background: rgba(255, 107, 53, 0.06);
    padding: 10px 12px;
    border-radius: var(--radius-sm);
    color: var(--text-primary);
    font-weight: 500;
    font-size: 13px;
    border: 1px solid rgba(255, 107, 53, 0.15);
}

.promotional-plans {
    margin-top: 32px;
}

.promotional-plans h3 {
    text-align: center;
    color: var(--text-primary);
    font-size: 20px;
    margin-bottom: 24px;
    font-weight: 700;
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    max-width: 1200px;
    margin: 0 auto;
}

.plan-card {
    background: var(--card-bg);
    border-radius: var(--radius-md);
    padding: 24px 20px;
    text-align: center;
    border: 1px solid var(--border-color);
    position: relative;
    transition: border-color 0.15s ease;
    overflow: hidden;
}

.plan-card::before {
    display: none;
}

.plan-card:hover {
    border-color: var(--border-hover);
}

.plan-card.featured {
    border: 1px solid var(--primary-color);
}

.plan-badge,
.plan-badge-premium {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background: var(--primary-btn);
    color: white;
    padding: 4px 0;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 0;
}

.plan-badge-premium {
    background: var(--secondary-color);
    color: #000;
}

.plan-icon {
    font-size: 2.5rem;
    margin: 16px 0 12px;
    display: block;
    animation: none;
}

.plan-header h4 {
    font-size: 18px;
    margin-bottom: 4px;
    color: var(--text-primary);
    font-weight: 700;
}

.plan-subtitle {
    font-size: 13px;
    color: var(--text-secondary);
    margin-bottom: 16px;
}

.plan-price {
    margin-bottom: 16px;
}

.old-price {
    display: block;
    font-size: 13px;
    color: var(--text-muted);
    text-decoration: line-through;
    margin-bottom: 4px;
}

.current-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 2px;
    margin-bottom: 4px;
}

.currency {
    font-size: 14px;
    color: var(--text-secondary);
}

.amount {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-primary);
}

.period {
    font-size: 14px;
    color: var(--text-secondary);
}

.discount {
    display: inline-block;
    background: rgba(255, 107, 53, 0.1);
    color: var(--primary-color);
    padding: 2px 8px;
    border-radius: var(--radius-sm);
    font-size: 12px;
    font-weight: 600;
    border: 1px solid rgba(255, 107, 53, 0.2);
}

.plan-features {
    margin: 16px 0;
}

.feature-highlight {
    background: rgba(255, 107, 53, 0.06);
    border: 1px solid rgba(255, 107, 53, 0.15);
    border-radius: var(--radius-md);
    padding: 12px;
    margin-bottom: 12px;
}

.featured-highlight {
    background: rgba(255, 107, 53, 0.1);
    border: 1px solid rgba(255, 107, 53, 0.3);
}

.premium-highlight {
    background: rgba(255, 184, 0, 0.06);
    border: 1px solid rgba(255, 184, 0, 0.2);
}

.feature-label {
    display: block;
    font-size: 11px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
    font-weight: 600;
}

.feature-value {
    display: block;
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-color);
}

.premium-highlight .feature-value {
    color: var(--secondary-color);
}

.plan-benefits-list {
    list-style: none;
    text-align: left;
    padding: 0;
}

.plan-benefits-list li {
    padding: 6px 0;
    color: var(--text-secondary);
    font-size: 13px;
    border-bottom: 1px solid var(--border-color);
}

.plan-benefits-list li:last-child {
    border-bottom: none;
}

.plan-cta {
    margin-top: 16px;
}

.plan-btn {
    display: inline-block;
    background: var(--primary-btn);
    color: white;
    padding: 10px 24px;
    border-radius: var(--radius-sm);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: background 0.15s ease;
    border: 1px solid rgba(255, 107, 53, 0.4);
    box-shadow: none;
    width: 100%;
    text-align: center;
    animation: none;
}

.plan-btn:hover {
    background: var(--primary-btn-hover);
}

.plan-btn-featured {
    animation: none;
}

.plans-note {
    text-align: center;
    margin-top: 24px;
    padding: 12px 16px;
    background: var(--card-bg);
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    color: var(--text-secondary);
    font-size: 13px;
}

/* ============================================================ */
/* FAQ SECTION                                                  */
/* ============================================================ */
.faq-section {
    padding: 48px 0;
    background: var(--dark-bg);
    border-top: 1px solid var(--border-color);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--card-bg);
    border-radius: var(--radius-md);
    margin-bottom: 8px;
    border: 1px solid var(--border-color);
    overflow: hidden;
    transition: border-color 0.15s ease;
}

.faq-item:hover {
    border-color: var(--border-hover);
}

.faq-question {
    padding: 14px 16px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    transition: background 0.15s ease;
}

.faq-question:hover {
    background: rgba(255, 255, 255, 0.02);
}

.faq-question h3 {
    font-size: 14px;
    color: var(--text-primary);
    margin: 0;
    font-weight: 600;
}

.faq-toggle {
    font-size: 18px;
    color: var(--text-muted);
    transition: transform 0.2s ease;
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
    color: var(--primary-color);
}

.faq-answer {
    padding: 0 16px 14px;
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 14px;
    display: none;
}

.faq-answer p {
    margin-bottom: 10px;
}

.faq-answer p:last-child {
    margin-bottom: 0;
}

.faq-item.active .faq-answer {
    display: block;
    animation: fadeIn 0.2s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* ============================================================ */
/* FINAL CTA SECTION                                            */
/* ============================================================ */
.final-cta-section {
    position: relative;
    padding: 48px 0;
    text-align: center;
    overflow: hidden;
    border-top: 1px solid var(--border-color);
}

.cta-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.cta-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.15;
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(13, 17, 23, 0.9);
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 24px;
    margin-bottom: 12px;
    font-weight: 700;
}

.cta-content p {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 24px;
    line-height: 1.6;
}

.btn-cta-large {
    background: var(--primary-btn);
    color: white;
    padding: 12px 32px;
    border-radius: var(--radius-sm);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: background 0.15s ease;
    display: inline-block;
    border: 1px solid rgba(255, 107, 53, 0.4);
}

.btn-cta-large:hover {
    background: var(--primary-btn-hover);
}

/* ============================================================ */
/* FOOTER                                                       */
/* ============================================================ */
.footer {
    background: var(--darker-bg);
    padding: 32px 0 16px;
    border-top: 1px solid var(--border-color);
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 32px;
    margin-bottom: 24px;
}

.footer-brand {
    text-align: left;
}

.footer-logo {
    height: 32px;
    width: auto;
    margin-bottom: 8px;
}

.footer-brand p {
    color: var(--text-secondary);
    font-size: 13px;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.footer-column h4 {
    color: var(--text-primary);
    margin-bottom: 12px;
    font-size: 13px;
    font-weight: 600;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 6px;
}

.footer-column ul li a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 13px;
    transition: color 0.15s ease;
}

.footer-column ul li a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 16px;
    border-top: 1px solid var(--border-color);
    color: var(--text-muted);
    font-size: 12px;
}

/* ============================================================ */
/* WHATSAPP FLOAT                                               */
/* ============================================================ */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 48px;
    height: 48px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(37, 211, 102, 0.3);
    transition: box-shadow 0.15s ease;
}

.whatsapp-float:hover {
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
}

.whatsapp-float svg {
    width: 24px;
    height: 24px;
    color: white;
}

/* ============================================================ */
/* GLOSSARY STYLES                                              */
/* ============================================================ */
.glossary-hero {
    padding: 80px 0 32px;
    background: var(--darker-bg);
    text-align: center;
    margin-top: 48px;
    border-bottom: 1px solid var(--border-color);
}

.glossary-hero h1 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.glossary-hero p {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 16px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.glossary-content {
    padding: 32px 0;
    background: var(--dark-bg);
}

.glossary-navigation {
    background: var(--card-bg);
    padding: 16px;
    border-radius: var(--radius-md);
    margin-bottom: 32px;
    border: 1px solid var(--border-color);
}

.glossary-navigation h3 {
    color: var(--primary-color);
    margin-bottom: 12px;
    font-size: 14px;
    font-weight: 600;
}

.glossary-navigation ul {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 4px;
}

.glossary-navigation a {
    color: var(--text-secondary);
    text-decoration: none;
    padding: 6px 8px;
    border-radius: var(--radius-sm);
    font-size: 13px;
    transition: color 0.15s ease, background 0.15s ease;
}

.glossary-navigation a:hover {
    color: var(--primary-color);
    background: rgba(255, 107, 53, 0.06);
}

.glossary-category {
    margin-bottom: 32px;
}

.glossary-category h2 {
    font-size: 20px;
    color: var(--text-primary);
    margin-bottom: 16px;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--border-color);
    font-weight: 700;
    position: relative;
}

.glossary-category h2::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 48px;
    height: 2px;
    background: var(--primary-color);
}

.glossary-item {
    background: var(--card-bg);
    padding: 16px;
    border-radius: var(--radius-md);
    margin-bottom: 12px;
    border: 1px solid var(--border-color);
    transition: border-color 0.15s ease;
}

.glossary-item:hover {
    border-color: var(--border-hover);
}

.glossary-item h3 {
    color: var(--primary-color);
    font-size: 16px;
    margin-bottom: 8px;
    font-weight: 600;
}

.glossary-item p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 12px;
    font-size: 14px;
}

.cta-glossary {
    text-align: center;
    padding-top: 8px;
    border-top: 1px solid var(--border-color);
}

.btn-test {
    display: inline-block;
    background: var(--primary-btn);
    color: white;
    padding: 8px 20px;
    border-radius: var(--radius-sm);
    text-decoration: none;
    font-weight: 600;
    font-size: 13px;
    transition: background 0.15s ease;
    border: 1px solid rgba(255, 107, 53, 0.4);
}

.btn-test:hover {
    background: var(--primary-btn-hover);
}

.final-cta-glossary {
    padding: 32px 0;
    background: var(--darker-bg);
    text-align: center;
    border-top: 1px solid var(--border-color);
}

.final-cta-glossary h2 {
    font-size: 24px;
    margin-bottom: 8px;
    color: var(--text-primary);
    font-weight: 700;
}

.final-cta-glossary p {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 16px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* ============================================================ */
/* POLICY SECTION                                               */
/* ============================================================ */
.policy-section {
    padding: 80px 0 32px;
    background: var(--dark-bg);
    min-height: 100vh;
}

.policy-content {
    max-width: 800px;
    margin: 0 auto;
    background: var(--card-bg);
    padding: 32px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
}

.policy-content h1 {
    color: var(--text-primary);
    font-size: 24px;
    margin-bottom: 8px;
    text-align: center;
    font-weight: 700;
}

.policy-intro {
    text-align: center;
    color: var(--text-secondary);
    font-style: italic;
    margin-bottom: 24px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border-color);
    font-size: 13px;
}

.policy-content h2 {
    color: var(--text-primary);
    font-size: 18px;
    margin: 24px 0 8px 0;
    font-weight: 700;
}

.policy-content h3 {
    color: var(--primary-color);
    font-size: 15px;
    margin: 16px 0 6px 0;
    font-weight: 600;
}

.policy-content p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 8px;
    font-size: 14px;
}

.policy-content ul,
.policy-content ol {
    color: var(--text-secondary);
    margin: 8px 0 16px 24px;
    line-height: 1.6;
    font-size: 14px;
}

.policy-content li {
    margin-bottom: 4px;
}

.policy-content strong {
    color: var(--text-primary);
}

.policy-footer {
    text-align: center;
    margin-top: 24px;
    padding-top: 16px;
    border-top: 1px solid var(--border-color);
}

.policy-footer p {
    color: var(--text-primary);
    font-weight: 600;
    margin-bottom: 12px;
}

/* ============================================================ */
/* ICON STYLES (legado)                                         */
/* ============================================================ */
.feature-icon {
    width: 20px;
    height: 20px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
}

.tv-icon {
    background: rgba(255, 107, 53, 0.15);
}

.tv-icon::before {
    content: "\1F4FA";
    font-size: 14px;
}

.movie-icon {
    background: rgba(139, 92, 246, 0.15);
}

.movie-icon::before {
    content: "\1F3AC";
    font-size: 14px;
}

.quality-icon {
    background: rgba(16, 185, 129, 0.15);
}

.quality-icon::before {
    content: "\1F48E";
    font-size: 14px;
}

/* ============================================================ */
/* BREADCRUMB                                                   */
/* ============================================================ */
.breadcrumb-nav {
    background: var(--darker-bg);
    padding: 8px 0;
    margin-top: 48px;
    border-bottom: 1px solid var(--border-color);
}

.breadcrumb-list {
    list-style: none;
    display: flex;
    gap: 4px;
    font-size: 12px;
}

.breadcrumb-list a {
    color: var(--text-muted);
    text-decoration: none;
}

.breadcrumb-list a:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

/* ============================================================ */
/* HERO DIRETÓRIO — duas colunas, compacto, flat                */
/* ============================================================ */
.hero-diretorio {
    background: var(--darker-bg);
    padding: 32px 24px;
    max-height: none;
    min-height: auto;
    overflow: visible;
    border-bottom: 1px solid var(--border-color);
}

.hero-wrapper {
    max-width: 720px;
    margin: 0 auto;
}

.hero-left {
    width: 100%;
}

.hero-label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--primary-color);
    margin-bottom: 8px;
    font-weight: 600;
}

.hero-left h1 {
    font-size: 28px;
    line-height: 1.3;
    margin-bottom: 12px;
    color: var(--text-primary);
    font-weight: 700;
}

.hero-subtitle {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.7;
}


/* ============================================================ */
/* SEÇÃO DO DIRETÓRIO — CARDS                                   */
/* ============================================================ */
.directory-section {
    padding: 48px 0;
    background: var(--dark-bg);
    border-top: 1px solid var(--border-color);
}

.directory-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 16px;
    max-width: 1200px;
    margin: 0 auto;
}

.directory-card {
    background: var(--card-bg);
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    padding: 20px;
    position: relative;
    transition: border-color 0.15s ease;
}

.directory-card:hover {
    border-color: var(--border-hover);
}

.directory-card.card-destaque {
    border: 1px solid var(--primary-color);
}

.card-badge {
    position: absolute;
    top: 0;
    right: 0;
    background: var(--primary-btn);
    color: white;
    padding: 3px 10px;
    border-radius: 0 var(--radius-md) 0 var(--radius-sm);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.card-title-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 6px;
}

.card-logo-mini {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    object-fit: cover;
    border: 1px solid var(--border-color);
    flex-shrink: 0;
}

.card-content h3 {
    font-size: 16px;
    margin-bottom: 0;
    color: var(--text-primary);
    font-weight: 600;
}

.card-content > h3 {
    margin-bottom: 6px;
}

.card-content p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 10px;
    font-size: 13px;
}

.card-rating {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 10px;
    font-size: 13px;
    color: var(--text-secondary);
}

.card-rating .stars {
    color: var(--secondary-color);
    letter-spacing: 1px;
    font-size: 14px;
}

.card-features {
    list-style: none;
    margin-bottom: 14px;
    padding: 0;
}

.card-features li {
    padding: 3px 0;
    color: var(--text-secondary);
    font-size: 13px;
    position: relative;
    padding-left: 18px;
}

.card-features li::before {
    content: "\2713";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 12px;
}

.btn-card {
    display: inline-block;
    width: 100%;
    text-align: center;
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 13px;
    cursor: pointer;
    border: none;
    transition: background 0.15s ease;
}

.btn-card-ativo {
    background: var(--primary-btn);
    color: white;
    text-decoration: none;
    border: 1px solid rgba(255, 107, 53, 0.4);
}

.btn-card-ativo:hover {
    background: var(--primary-btn-hover);
}

.btn-card-inativo {
    background: var(--primary-btn);
    color: white;
    border: 1px solid rgba(255, 107, 53, 0.4);
}

.btn-card-inativo:hover {
    background: var(--primary-btn-hover);
}

/* ============================================================ */
/* ABAS — Avaliações e FAQ (segmented / underline style)        */
/* ============================================================ */
.reviews-tabs,
.faq-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 0;
    justify-content: center;
    margin-bottom: 24px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 0;
}

.tab-btn,
.faq-tab-btn {
    padding: 8px 16px;
    border-radius: 0;
    border: none;
    border-bottom: 2px solid transparent;
    background: transparent;
    color: var(--text-secondary);
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: color 0.15s ease, border-color 0.15s ease;
    margin-bottom: -1px;
}

.tab-btn:hover,
.faq-tab-btn:hover {
    color: var(--text-primary);
}

.tab-btn.tab-ativo,
.faq-tab-btn.faq-tab-ativo {
    background: transparent;
    color: var(--text-primary);
    border-bottom: 2px solid var(--primary-color);
    font-weight: 600;
}

/* ============================================================ */
/* REVIEWER INFO                                                */
/* ============================================================ */
.reviewer-info {
    border-top: 1px solid var(--border-color);
    padding-top: 10px;
    margin-top: 10px;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.reviewer-info span {
    color: var(--text-muted);
    font-size: 12px;
}

.reviewer-info strong {
    color: var(--text-primary);
    font-weight: 600;
}

.reviewer-info time {
    color: var(--text-muted);
    font-size: 12px;
}

.review-body {
    color: var(--text-secondary);
    line-height: 1.6;
    font-style: italic;
    font-size: 13px;
}

/* ============================================================ */
/* BOTÃO VER TODOS                                              */
/* ============================================================ */
.reviews-footer,
.faq-footer {
    text-align: center;
    margin-top: 24px;
}

.btn-ver-todos {
    padding: 8px 24px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-color);
    background: var(--card-bg);
    color: var(--text-secondary);
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: color 0.15s ease, border-color 0.15s ease;
}

.btn-ver-todos:hover {
    border-color: var(--border-hover);
    color: var(--text-primary);
}

/* ============================================================ */
/* FAQ dentro do diretório                                      */
/* ============================================================ */
.faq-section .faq-container {
    max-width: 800px;
    margin: 0 auto;
}

/* ============================================================ */
/* RESPONSIVE — TABLETS                                         */
/* ============================================================ */
@media (max-width: 1024px) and (min-width: 769px) {
    .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .benefits-list {
        grid-template-columns: repeat(2, 1fr);
    }

    .plans-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ============================================================ */
/* RESPONSIVE — MOBILE                                          */
/* ============================================================ */
@media (max-width: 768px) {
    body {
        font-size: 14px;
    }

    .container {
        padding: 0 16px;
    }

    .mobile-toggle {
        display: flex;
    }

    .nav-container {
        height: 44px;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--card-bg);
        flex-direction: column;
        padding: 8px 0;
        border-bottom: 1px solid var(--border-color);
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu li {
        margin: 0;
    }

    .nav-menu a {
        display: block;
        padding: 8px 16px;
        border-radius: 0;
    }

    .hero-diretorio {
        padding: 24px 16px;
    }

    .hero-left h1 {
        font-size: 22px;
    }

    .breadcrumb-nav {
        margin-top: 44px;
    }

    .section-title {
        font-size: 20px;
    }

    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .directory-grid {
        grid-template-columns: 1fr;
    }

    .experience-content,
    .best-content {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .footer-links {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .plans-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .benefits-list {
        grid-template-columns: repeat(2, 1fr);
    }

    .reviews-tabs,
    .faq-tabs {
        overflow-x: auto;
        flex-wrap: nowrap;
        justify-content: flex-start;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        padding-bottom: 0;
    }

    .reviews-tabs::-webkit-scrollbar,
    .faq-tabs::-webkit-scrollbar {
        display: none;
    }

    .tab-btn,
    .faq-tab-btn {
        white-space: nowrap;
        flex-shrink: 0;
        font-size: 12px;
        padding: 6px 12px;
    }

    .movie-grid {
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: repeat(6, 1fr);
    }

    .policy-content {
        padding: 20px 16px;
    }

    .video-section .section-title {
        font-size: 20px;
    }

    .video-container {
        margin: 0 16px;
    }

    .glossary-hero h1 {
        font-size: 22px;
    }

    .glossary-navigation ul {
        grid-template-columns: 1fr;
    }

    .glossary-category h2 {
        font-size: 18px;
    }

    .glossary-item h3 {
        font-size: 14px;
    }

    .feature-icon {
        width: 18px;
        height: 18px;
    }

    .tv-icon::before,
    .movie-icon::before,
    .quality-icon::before {
        font-size: 12px;
    }

    .icon-inner {
        font-size: 1.25rem;
    }

    .plan-icon {
        font-size: 2rem;
    }

    .feature-value {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .benefits-list {
        grid-template-columns: 1fr;
    }

    .plan-card {
        padding: 20px 16px;
    }
}

@media (max-width: 968px) {
    .plans-grid {
        grid-template-columns: 1fr;
    }

    .plan-card.featured {
        transform: none;
    }
}

/* ============================================================ */
/* SCROLL ANIMATIONS (classe via JS — sem CLS)                  */
/* ============================================================ */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.animate-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Respeita preferência do usuário por menos movimento */
@media (prefers-reduced-motion: reduce) {
    .animate-on-scroll {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

/* ============================================================ */
/* PERFORMANCE — content-visibility para seções abaixo da dobra */
/* ============================================================ */
.reviews-section,
.faq-section,
.footer {
    content-visibility: auto;
    contain-intrinsic-size: auto 600px;
}
