/* -------------------------------------------------------------
   VoceEscolhe TV - Global Variables & Reset
   ------------------------------------------------------------- */
:root {
    --bg-primary: #07090e;
    --bg-secondary: #0c0f16;
    --bg-tertiary: #121622;
    --card-bg: rgba(18, 22, 33, 0.65);
    --card-border: rgba(255, 255, 255, 0.06);
    --card-border-glow: rgba(0, 255, 136, 0.15);
    
    --primary: #00ff88;
    --primary-hover: #00e575;
    --primary-glow: rgba(0, 255, 136, 0.4);
    
    --secondary: #7b2cb1;
    --secondary-hover: #9d4edd;
    --secondary-glow: rgba(123, 44, 177, 0.4);
    
    --cyan: #00d4ff;
    --pink: #ff007f;
    --white: #ffffff;
    
    --text-primary: #f3f4f6;
    --text-secondary: #9ca3af;
    --text-muted: #6b7280;
    
    --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --border-radius: 16px;
    --border-radius-lg: 24px;
    --border-radius-sm: 8px;
    --container-width: 1200px;
}

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

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

.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

button, input, select {
    font-family: inherit;
    background: none;
    border: none;
    outline: none;
}

ul {
    list-style: none;
}

/* -------------------------------------------------------------
   Typography & Common Elements
   ------------------------------------------------------------- */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.text-gradient {
    background: linear-gradient(135deg, var(--primary) 0%, var(--cyan) 50%, var(--secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.highlight {
    color: var(--primary);
    text-shadow: 0 0 15px var(--primary-glow);
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 56px auto;
}

.section-tag {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--primary);
    display: inline-block;
    margin-bottom: 12px;
    padding: 6px 16px;
    background: rgba(0, 255, 136, 0.08);
    border: 1px solid rgba(0, 255, 136, 0.15);
    border-radius: 50px;
}

.section-title {
    font-size: 40px;
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 18px;
    color: var(--text-secondary);
}

/* -------------------------------------------------------------
   Glow Background Effects
   ------------------------------------------------------------- */
.glow-bg {
    position: absolute;
    border-radius: 50%;
    filter: blur(140px);
    z-index: 0;
    pointer-events: none;
    opacity: 0.18;
}

.glow-1 {
    width: 400px;
    height: 400px;
    background: var(--primary);
    top: 10%;
    left: -100px;
}

.glow-2 {
    width: 500px;
    height: 500px;
    background: var(--secondary);
    top: 25%;
    right: -150px;
}

.glow-3 {
    width: 600px;
    height: 600px;
    background: var(--cyan);
    bottom: 10%;
    left: 50%;
    transform: translateX(-50%);
}

/* -------------------------------------------------------------
   Buttons System
   ------------------------------------------------------------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 16px;
    padding: 14px 28px;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.btn-sm {
    padding: 10px 20px;
    font-size: 14px;
    border-radius: var(--border-radius-sm);
}

.btn-lg {
    padding: 18px 36px;
    font-size: 18px;
    border-radius: var(--border-radius);
}

.btn-block {
    display: flex;
    width: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, #00d47d 100%);
    color: #000000;
    box-shadow: 0 8px 24px rgba(0, 255, 136, 0.25);
    border: none;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px var(--primary-glow);
}

.btn-secondary {
    background: var(--bg-tertiary);
    color: var(--white);
    border: 1px solid var(--card-border);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

.btn-outline {
    border: 1px solid var(--primary);
    color: var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: #000000;
    box-shadow: 0 0 15px var(--primary-glow);
}

/* Glow/Shine effect */
.shine-effect::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        to right,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.3) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    transform: rotate(30deg);
    transition: var(--transition);
    animation: shine 4s infinite ease-in-out;
}

@keyframes shine {
    0% { transform: translate(-100%, -100%) rotate(30deg); }
    30%, 100% { transform: translate(100%, 100%) rotate(30deg); }
}

.btn-arrow {
    margin-left: 8px;
    transition: var(--transition);
}

.btn:hover .btn-arrow {
    transform: translateX(4px);
}

/* -------------------------------------------------------------
   Glassmorphism Cards
   ------------------------------------------------------------- */
.glass-card {
    background: var(--card-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--card-border);
    border-radius: var(--border-radius);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    position: relative;
    z-index: 1;
}

/* -------------------------------------------------------------
   Header Styling
   ------------------------------------------------------------- */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    z-index: 100;
    display: flex;
    align-items: center;
    transition: var(--transition);
}

.main-header.scrolled {
    background: rgba(7, 9, 14, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--card-border);
    height: 70px;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 22px;
}

.logo-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    filter: drop-shadow(0 0 8px var(--primary-glow));
}

.nav-menu {
    display: flex;
    gap: 32px;
}

.nav-link {
    font-weight: 500;
    color: var(--text-secondary);
    font-size: 15px;
    padding: 8px 0;
    position: relative;
}

.nav-link:hover, .nav-link.active {
    color: var(--white);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    box-shadow: 0 0 10px var(--primary-glow);
    transition: var(--transition);
}

.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 110;
}

.mobile-toggle span {
    width: 24px;
    height: 2px;
    background-color: var(--text-primary);
    border-radius: 2px;
    transition: var(--transition);
}

/* Open states for mobile nav */
.mobile-toggle.open span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.mobile-toggle.open span:nth-child(2) {
    opacity: 0;
}

.mobile-toggle.open span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* -------------------------------------------------------------
   Hero Section
   ------------------------------------------------------------- */
.hero-section {
    padding-top: 160px;
    padding-bottom: 80px;
    position: relative;
    overflow: hidden;
}

.hero-container {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 48px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.badge-container {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 6px 16px 6px 12px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 50px;
    margin-bottom: 24px;
}

.pulse-badge {
    width: 10px;
    height: 10px;
    background-color: var(--primary);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--primary);
    animation: pulse 1.8s infinite;
}

@keyframes pulse {
    0% { transform: scale(0.9); box-shadow: 0 0 0 0 rgba(0, 255, 136, 0.7); }
    70% { transform: scale(1.1); box-shadow: 0 0 0 10px rgba(0, 255, 136, 0); }
    100% { transform: scale(0.9); box-shadow: 0 0 0 0 rgba(0, 255, 136, 0); }
}

.badge-text {
    font-size: 13px;
    font-weight: 500;
    color: var(--text-secondary);
}

.hero-title {
    font-size: 54px;
    font-weight: 800;
    margin-bottom: 24px;
}

.hero-subtitle {
    font-size: 19px;
    color: var(--text-secondary);
    margin-bottom: 36px;
    max-width: 600px;
}

.hero-actions-group {
    display: flex;
    gap: 16px;
    margin-bottom: 40px;
}

.hero-features-list {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.hero-feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-secondary);
}

.check-icon {
    color: var(--primary);
}

/* Hero Graphic/Mockups */
.hero-graphic {
    display: flex;
    justify-content: center;
    align-items: center;
}

.premium-card-wrapper {
    position: relative;
    width: 100%;
    max-width: 440px;
    height: 380px;
}

.main-graphic-card {
    width: 100%;
    height: 280px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.card-header {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.02);
    border-bottom: 1px solid var(--card-border);
}

.card-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.card-dot.red { background-color: #ff5f56; }
.card-dot.yellow { background-color: #ffbd2e; }
.card-dot.green { background-color: #27c93f; }

.card-title-bar {
    font-family: monospace;
    font-size: 11px;
    color: var(--text-muted);
    margin-left: 10px;
}

.card-body-preview {
    flex-grow: 1;
    background: linear-gradient(180deg, rgba(0, 255, 136, 0.05) 0%, rgba(0, 0, 0, 0.6) 100%), 
                repeating-linear-gradient(0deg, rgba(0,0,0,0.15) 0px, rgba(0,0,0,0.15) 1px, transparent 1px, transparent 2px),
                url("data:image/svg+xml,<svg xmlns=%22http://www.w3.org/2000/svg%22 width=%22400%22 height=%22220%22 viewBox=%220 0 400 220%22><rect width=%22100%25%22 height=%22100%25%22 fill=%22%23080c14%22/><circle cx=%22200%22 cy=%22110%22 r=%2260%22 fill=%22none%22 stroke=%22%23162b21%22 stroke-width=%222%22/><line x1=%22200%22 y1=%220%22 x2=%22200%22 y2=%22220%22 stroke=%22%23162b21%22 stroke-width=%222%22/><circle cx=%22200%22 cy=%22110%22 r=%225%22 fill=%22%2300ff88%22/></svg>");
    background-size: cover;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.player-overlay {
    z-index: 2;
}

.play-button-pulse {
    width: 64px;
    height: 64px;
    background: var(--primary);
    color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 0 0 var(--primary-glow);
    animation: playGlow 2.5s infinite;
    cursor: pointer;
    transition: var(--transition);
}

.card-body-preview:hover .play-button-pulse {
    transform: scale(1.1);
    background: var(--white);
}

@keyframes playGlow {
    0% { box-shadow: 0 0 0 0 rgba(0, 255, 136, 0.6); }
    70% { box-shadow: 0 0 0 16px rgba(0, 255, 136, 0); }
    100% { box-shadow: 0 0 0 0 rgba(0, 255, 136, 0); }
}

.stream-info {
    position: absolute;
    bottom: 12px;
    left: 16px;
    right: 16px;
    z-index: 2;
}

.stream-live-tag {
    background-color: var(--pink);
    color: var(--white);
    font-size: 10px;
    font-weight: 700;
    padding: 2px 6px;
    border-radius: 4px;
    display: inline-block;
    margin-bottom: 6px;
    letter-spacing: 0.05em;
    animation: liveFlash 1.5s infinite;
}

@keyframes liveFlash {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.6; }
}

.stream-match {
    display: block;
    font-size: 15px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 2px;
}

.stream-meta {
    font-size: 11px;
    color: var(--text-secondary);
}

/* Floating Overlays */
.floating-badge {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 20px;
    border-radius: var(--border-radius);
    z-index: 5;
    animation: float 6s infinite ease-in-out;
}

.badge-top-right {
    top: -20px;
    right: -20px;
    animation-delay: 0s;
}

.badge-bottom-left {
    bottom: 30px;
    left: -30px;
    animation-delay: 3s;
}

.badge-icon {
    font-size: 24px;
}

.floating-badge h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--white);
}

.floating-badge p {
    font-size: 11px;
    color: var(--text-secondary);
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* -------------------------------------------------------------
   Quick Summary Bar
   ------------------------------------------------------------- */
.summary-section {
    padding: 20px 0;
    position: relative;
    z-index: 5;
}

.summary-wrapper {
    padding: 30px 40px;
    border-color: rgba(255, 255, 255, 0.08);
}

.summary-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.summary-item {
    text-align: center;
    flex-grow: 1;
    min-width: 150px;
}

.summary-item h3 {
    font-size: 26px;
    color: var(--primary);
    margin-bottom: 4px;
    text-shadow: 0 0 10px rgba(0, 255, 136, 0.2);
}

.summary-item p {
    font-size: 14px;
    color: var(--text-secondary);
    font-weight: 500;
}

.summary-divider {
    width: 1px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
}

/* -------------------------------------------------------------
   Features Section
   ------------------------------------------------------------- */
.features-section {
    padding: 100px 0;
}

.content-table-wrapper {
    overflow-x: auto;
    margin-bottom: 40px;
    border-radius: var(--border-radius-lg);
    background: rgba(14, 18, 28, 0.7);
}

.content-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
    min-width: 700px;
}

.content-table th, .content-table td {
    padding: 20px 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.content-table th {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 600;
    color: var(--white);
    background: rgba(255, 255, 255, 0.02);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.content-table tbody tr {
    transition: var(--transition);
}

.content-table tbody tr:hover {
    background: rgba(255, 255, 255, 0.015);
}

.content-table td strong {
    display: block;
    font-size: 16px;
    color: var(--white);
    margin-bottom: 4px;
}

.table-desc {
    display: block;
    font-size: 13px;
    color: var(--text-secondary);
}

.status-yes {
    color: var(--primary);
    font-weight: 600;
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.status-no {
    color: var(--pink);
    font-weight: 600;
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.table-highlight {
    background: rgba(255, 0, 127, 0.02);
}

.features-action {
    text-align: center;
}

/* -------------------------------------------------------------
   How It Works & Compatibility Section
   ------------------------------------------------------------- */
.how-it-works {
    padding: 100px 0;
    background-color: var(--bg-secondary);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
    margin-bottom: 80px;
}

.step-card {
    padding: 32px 24px;
    transition: var(--transition);
    overflow: hidden;
}

.step-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--primary), var(--cyan));
    opacity: 0.5;
    transition: var(--transition);
}

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

.step-card:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 255, 136, 0.15);
    box-shadow: 0 15px 35px rgba(0, 255, 136, 0.05);
}

.step-num {
    font-family: var(--font-heading);
    font-size: 40px;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.05);
    margin-bottom: 12px;
    line-height: 1;
    transition: var(--transition);
}

.step-card:hover .step-num {
    color: var(--primary);
    text-shadow: 0 0 15px var(--primary-glow);
}

.step-card h3 {
    font-size: 18px;
    margin-bottom: 12px;
    color: var(--white);
}

.step-card p {
    font-size: 14px;
    color: var(--text-secondary);
}

/* Compatibility Tabs */
.compatibility-container {
    max-width: 960px;
    margin: 0 auto 80px auto;
}

.compatibility-header {
    text-align: center;
    margin-bottom: 40px;
}

.compatibility-header h3 {
    font-size: 26px;
    margin-bottom: 8px;
}

.compatibility-header p {
    color: var(--text-secondary);
}

.tabs-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 32px;
    background: rgba(255, 255, 255, 0.02);
    padding: 8px;
    border-radius: 50px;
    border: 1px solid var(--card-border);
}

.tab-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 600;
    color: var(--text-secondary);
    padding: 10px 22px;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
}

.tab-btn:hover {
    color: var(--white);
    background: rgba(255, 255, 255, 0.03);
}

.tab-btn.active {
    color: #000000;
    background: var(--primary);
    box-shadow: 0 4px 15px var(--primary-glow);
}

.tab-btn .tab-icon {
    font-size: 16px;
}

.tab-content {
    display: none;
    animation: tabFade 0.5s ease;
}

.tab-content.active {
    display: block;
}

@keyframes tabFade {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.tab-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    align-items: center;
}

.tab-text h4 {
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--white);
}

.brand-list {
    font-size: 14px;
    color: var(--text-muted);
    font-weight: 400;
    display: inline-block;
}

.tab-text p {
    color: var(--text-secondary);
    margin-bottom: 24px;
}

.recommended-apps {
    margin-bottom: 28px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

.recommended-apps strong {
    font-size: 14px;
    color: var(--white);
    margin-right: 8px;
}

.app-tag {
    font-size: 12px;
    font-weight: 600;
    padding: 4px 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--card-border);
    border-radius: 50px;
    color: var(--white);
}

.install-steps {
    list-style-type: decimal;
    padding-left: 20px;
    color: var(--text-secondary);
    font-size: 15px;
}

.install-steps li {
    margin-bottom: 12px;
}

.install-steps li::marker {
    color: var(--primary);
    font-weight: 700;
}

/* Mockups for device styles */
.tab-graphic {
    display: flex;
    justify-content: center;
}

/* TV Mockup */
.tv-mockup {
    width: 100%;
    max-width: 320px;
    position: relative;
}

.tv-mockup .screen {
    width: 100%;
    height: 180px;
    background: #000;
    border: 12px solid #1a1a1a;
    border-radius: var(--border-radius-sm);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    overflow: hidden;
}

.tv-app-layout {
    height: 100%;
    display: grid;
    grid-template-columns: 0.3fr 0.7fr;
    font-size: 9px;
    color: var(--text-secondary);
}

.tv-sidebar {
    background: #090a0f;
    padding: 10px 4px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    border-right: 1px solid rgba(255, 255, 255, 0.05);
}

.tv-sidebar div {
    padding: 4px 6px;
    border-radius: 4px;
}

.tv-sidebar .active-sidebar-item {
    background: var(--primary);
    color: #000000;
    font-weight: 700;
}

.tv-grid-content {
    background: #0f1118;
    padding: 10px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px;
}

.tv-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 8px;
    color: var(--white);
    padding: 6px;
}

.tv-stand {
    width: 80px;
    height: 15px;
    background: #2a2a2a;
    margin: 0 auto;
    border-radius: 0 0 10px 10px;
}

/* Phone Mockup */
.phone-mockup {
    width: 140px;
    height: 280px;
    border: 8px solid #1a1a1a;
    border-radius: 24px;
    background: #000;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
    overflow: hidden;
    position: relative;
}

.phone-screen {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.phone-notch {
    width: 60px;
    height: 12px;
    background: #1a1a1a;
    margin: 0 auto;
    border-radius: 0 0 8px 8px;
    z-index: 10;
}

.phone-app {
    flex-grow: 1;
    background: #090a0f;
    padding: 10px 6px;
    display: flex;
    flex-direction: column;
    font-size: 9px;
}

.phone-header {
    font-weight: 700;
    color: var(--primary);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 4px;
    margin-bottom: 8px;
}

.phone-list {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.phone-list-item {
    padding: 6px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 4px;
    color: var(--white);
}

.phone-list-item.active {
    border-left: 2px solid var(--primary);
    background: rgba(0, 255, 136, 0.05);
}

/* TV Box Mockup */
.device-mockup {
    display: flex;
    align-items: center;
    gap: 20px;
}

.fire-stick {
    width: 120px;
    height: 40px;
    background: #111111;
    border-radius: 6px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: #444;
    font-size: 11px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.remote {
    width: 40px;
    height: 120px;
    background: #1e1e1e;
    border-radius: 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.5);
    padding: 15px 5px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.remote .wheel {
    width: 26px;
    height: 26px;
    border: 4px solid #333;
    border-radius: 50%;
}

.remote .buttons-grid {
    display: flex;
    flex-direction: column;
    gap: 6px;
    width: 20px;
}

.remote .buttons-grid span {
    display: block;
    height: 6px;
    background: #333;
    border-radius: 4px;
}

/* Laptop Mockup */
.laptop-mockup {
    width: 100%;
    max-width: 320px;
}

.laptop-screen {
    width: 90%;
    margin: 0 auto;
    height: 160px;
    background: #000;
    border: 8px solid #1e1e1e;
    border-radius: 8px 8px 0 0;
    overflow: hidden;
}

.laptop-video-content {
    height: 100%;
    background: linear-gradient(to bottom, #111, #000);
    display: flex;
    align-items: center;
    justify-content: center;
}

.vlc-controls {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 10px;
    color: var(--white);
    background: rgba(255,255,255,0.05);
    padding: 6px 12px;
    border-radius: 4px;
}

.laptop-keyboard {
    height: 10px;
    background: #2d2d2d;
    border-radius: 0 0 10px 10px;
    position: relative;
}

.laptop-keyboard::after {
    content: '';
    position: absolute;
    top: 0;
    left: 45%;
    width: 10%;
    height: 4px;
    background: #111;
    border-radius: 0 0 4px 4px;
}

/* iOS Specific Notch */
.dynamic-island {
    width: 50px;
    height: 14px;
    background: #000;
    border-radius: 20px;
    margin: 2px auto;
}

.player-box-preview {
    flex-grow: 1;
    background: #111;
    margin-top: 10px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.play-arrow {
    font-size: 18px;
    color: var(--primary);
}

/* Internet Speed Requirements Details */
.internet-requirements {
    margin-top: 80px;
    padding: 48px;
}

.requirements-intro {
    text-align: center;
    color: var(--text-secondary);
    margin-bottom: 40px;
}

.speed-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 32px;
}

.speed-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--card-border);
    border-radius: var(--border-radius);
    padding: 24px;
    position: relative;
    transition: var(--transition);
}

.speed-card:hover {
    background: rgba(255, 255, 255, 0.04);
}

.speed-badge {
    position: absolute;
    top: 20px;
    right: 24px;
    font-size: 11px;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
}

.speed-card h4 {
    font-size: 16px;
    margin-bottom: 12px;
    color: var(--white);
}

.speed-number {
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
    margin-bottom: 12px;
}

.speed-number .unit {
    font-size: 16px;
    font-weight: 500;
    color: var(--text-secondary);
}

.speed-card p {
    font-size: 13px;
    color: var(--text-secondary);
    margin-bottom: 16px;
}

.speed-progress-bar {
    height: 4px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 2px;
    overflow: hidden;
}

.speed-progress-bar .progress {
    height: 100%;
    background: var(--text-muted);
}

/* Highlight recommended speed card */
.popular-speed {
    border-color: rgba(0, 255, 136, 0.3);
    background: rgba(0, 255, 136, 0.02);
}

.popular-speed:hover {
    background: rgba(0, 255, 136, 0.04);
}

.popular-speed h4 {
    color: var(--primary);
}

.popular-speed .speed-number {
    color: var(--primary);
    text-shadow: 0 0 10px rgba(0,255,136,0.15);
}

.popular-speed .progress {
    background: var(--primary) !important;
}

.highlight-badge {
    color: var(--primary) !important;
}

.requirements-footer {
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 24px;
    color: var(--text-secondary);
    font-size: 14px;
}

/* -------------------------------------------------------------
   Pricing Section
   ------------------------------------------------------------- */
.pricing-section {
    padding: 100px 0;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    align-items: stretch;
    margin-bottom: 56px;
}

.price-card {
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    transition: var(--transition);
}

.price-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 255, 255, 0.15);
}

.plan-header h3 {
    font-size: 20px;
    color: var(--white);
    margin-bottom: 8px;
}

.plan-desc {
    font-size: 13px;
    color: var(--text-secondary);
}

.plan-price {
    margin: 28px 0;
    display: flex;
    align-items: baseline;
    line-height: 1;
}

.plan-price .currency {
    font-size: 20px;
    font-weight: 700;
    color: var(--white);
    margin-right: 4px;
}

.plan-price .amount {
    font-family: var(--font-heading);
    font-size: 52px;
    font-weight: 800;
    color: var(--white);
}

.plan-price .cents {
    font-size: 20px;
    font-weight: 700;
    color: var(--white);
    align-self: flex-start;
    margin-top: 6px;
}

.plan-price .period {
    font-size: 14px;
    color: var(--text-secondary);
    margin-left: 4px;
}

.plan-savings {
    font-size: 12px;
    font-weight: 700;
    padding: 6px 12px;
    background: rgba(0, 255, 136, 0.08);
    border: 1px solid rgba(0, 255, 136, 0.15);
    border-radius: 50px;
    color: var(--primary);
    display: inline-block;
    align-self: flex-start;
    margin-bottom: 24px;
}

.plan-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 32px;
    flex-grow: 1;
}

.plan-features li {
    font-size: 14px;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 10px;
}

.plan-features li::before {
    content: '✓';
    color: var(--primary);
    font-weight: 700;
}

/* Highlighted Plan Styles */
.highlighted-plan {
    border-color: rgba(0, 255, 136, 0.4);
    box-shadow: 0 25px 50px rgba(0, 255, 136, 0.08);
    background: linear-gradient(180deg, rgba(0, 255, 136, 0.03) 0%, rgba(18, 22, 33, 0.65) 100%);
}

.highlighted-plan::after {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: var(--border-radius);
    background: linear-gradient(135deg, var(--primary) 0%, var(--cyan) 100%);
    z-index: -1;
    opacity: 0.3;
}

.highlighted-plan:hover {
    box-shadow: 0 30px 60px rgba(0, 255, 136, 0.15);
}

.plan-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    font-family: var(--font-heading);
    font-size: 11px;
    font-weight: 800;
    color: #000;
    background: var(--primary);
    padding: 6px 16px;
    border-radius: 50px;
    box-shadow: 0 4px 15px var(--primary-glow);
    white-space: nowrap;
    letter-spacing: 0.05em;
}

.pricing-guarantees {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 64px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 48px;
}

.guarantee-item {
    text-align: center;
    padding: 0 16px;
}

.guarantee-icon {
    font-size: 32px;
    margin-bottom: 16px;
    display: block;
}

.guarantee-item h4 {
    font-size: 18px;
    color: var(--white);
    margin-bottom: 8px;
}

.guarantee-item p {
    font-size: 14px;
    color: var(--text-secondary);
}

/* -------------------------------------------------------------
   Why Duration Callout & Countdown
   ------------------------------------------------------------- */
.why-duration-section {
    padding: 80px 0;
}

.duration-wrapper {
    padding: 64px;
    border-color: rgba(255, 255, 255, 0.08);
    overflow: hidden;
}

.duration-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 48px;
    align-items: center;
}

.duration-content h2 {
    font-size: 32px;
    color: var(--white);
    margin-bottom: 20px;
}

.duration-content p {
    color: var(--text-secondary);
    margin-bottom: 16px;
}

.duration-checklist {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 24px;
}

.check-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 500;
    color: var(--white);
}

.check-item span {
    color: var(--primary);
    font-weight: 700;
}

.duration-visual {
    display: flex;
    justify-content: center;
}

.timer-card {
    width: 100%;
    max-width: 320px;
    padding: 40px 30px;
    text-align: center;
    border-color: rgba(255, 255, 255, 0.08);
}

.timer-title {
    font-family: var(--font-heading);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.countdown-display {
    font-family: var(--font-heading);
    font-size: 42px;
    font-weight: 800;
    color: var(--primary);
    text-shadow: 0 0 20px rgba(0, 255, 136, 0.3);
    letter-spacing: 0.05em;
    margin-bottom: 16px;
}

.timer-desc {
    font-size: 13px;
    color: var(--text-secondary);
}

/* -------------------------------------------------------------
   FAQ Section Accordions
   ------------------------------------------------------------- */
.faq-section {
    padding: 100px 0;
    background-color: var(--bg-secondary);
}

.faq-accordion-group {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

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

.faq-item:hover {
    border-color: rgba(255, 255, 255, 0.1);
}

.faq-question {
    width: 100%;
    padding: 24px;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 600;
    color: var(--white);
    transition: var(--transition);
}

.faq-item.active .faq-question {
    color: var(--primary);
}

.faq-icon {
    font-size: 20px;
    color: var(--text-secondary);
    transition: var(--transition);
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
    color: var(--primary);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s cubic-bezier(0, 1, 0, 1);
    padding: 0 24px;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding-bottom: 24px;
    transition: max-height 0.3s cubic-bezier(1, 0, 1, 0);
}

.faq-answer p {
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.6;
}

/* -------------------------------------------------------------
   Troubleshooting Section
   ------------------------------------------------------------- */
.troubleshooting-section {
    padding: 100px 0;
}

.trouble-wrapper {
    padding: 64px 48px;
}

.trouble-wrapper .section-header {
    margin-bottom: 48px;
}

.trouble-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

.trouble-card {
    background: rgba(255, 255, 255, 0.015);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: var(--border-radius);
    padding: 32px;
}

.trouble-icon {
    font-size: 28px;
    margin-bottom: 16px;
}

.trouble-card h4 {
    font-size: 18px;
    color: var(--white);
    margin-bottom: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    padding-bottom: 12px;
}

.trouble-solutions {
    padding-left: 16px;
    list-style-type: disc;
    color: var(--text-secondary);
    font-size: 14px;
}

.trouble-solutions li {
    margin-bottom: 8px;
}

/* -------------------------------------------------------------
   Final CTA Section
   ------------------------------------------------------------- */
.final-cta-section {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.cta-box {
    padding: 80px 48px;
    max-width: 900px;
    margin: 0 auto;
    border-color: rgba(255, 255, 255, 0.08);
}

.cta-tag {
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 800;
    color: var(--primary);
    background: rgba(0, 255, 136, 0.1);
    border: 1px solid rgba(0, 255, 136, 0.2);
    padding: 6px 14px;
    border-radius: 50px;
    letter-spacing: 0.1em;
    display: inline-block;
    margin-bottom: 24px;
}

.cta-box h2 {
    font-size: 42px;
    color: var(--white);
    margin-bottom: 20px;
}

.cta-box p {
    color: var(--text-secondary);
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto 40px auto;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 24px;
}

.support-info-badge {
    font-size: 14px;
    font-weight: 500;
    color: var(--primary);
}

/* -------------------------------------------------------------
   Footer Section
   ------------------------------------------------------------- */
.main-footer {
    background-color: #040508;
    border-top: 1px solid var(--card-border);
    padding: 80px 0 20px 0;
    position: relative;
    z-index: 5;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 56px;
}

.footer-brand .logo {
    margin-bottom: 20px;
}

.footer-desc {
    color: var(--text-secondary);
    font-size: 14px;
    margin-bottom: 28px;
    max-width: 320px;
}

.contact-number {
    display: flex;
    align-items: center;
    gap: 12px;
}

.contact-icon {
    font-size: 24px;
    background: rgba(0, 255, 136, 0.08);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    border: 1px solid rgba(0, 255, 136, 0.15);
}

.contact-label {
    display: block;
    font-size: 11px;
    color: var(--text-secondary);
    text-transform: uppercase;
}

.contact-link {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    color: var(--white);
}

.contact-link:hover {
    color: var(--primary);
}

.footer-links-col h4 {
    font-size: 16px;
    color: var(--white);
    margin-bottom: 20px;
}

.footer-links-col a {
    display: block;
    color: var(--text-secondary);
    font-size: 14px;
    margin-bottom: 12px;
}

.footer-links-col a:hover {
    color: var(--white);
    transform: translateX(4px);
}

.update-date {
    display: block;
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 16px;
}

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

.footer-bottom-container p {
    font-size: 12px;
    color: var(--text-muted);
}

/* -------------------------------------------------------------
   Responsive Media Queries
   ------------------------------------------------------------- */
@media (max-width: 1024px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    
    .hero-title {
        font-size: 44px;
    }
    
    .duration-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .duration-content {
        order: 2;
    }
    
    .duration-visual {
        order: 1;
    }
}

@media (max-width: 768px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 48px;
        text-align: center;
    }
    
    .badge-container {
        margin: 0 auto 24px auto;
    }
    
    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-actions-group {
        justify-content: center;
    }
    
    .hero-features-list {
        justify-content: center;
    }
    
    .premium-card-wrapper {
        margin: 0 auto;
    }
    
    .floating-badge {
        display: none; /* Hide floating elements on tablet/mobile for clean layout */
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .summary-grid {
        justify-content: center;
    }
    
    .summary-divider {
        display: none;
    }
    
    .tab-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .tab-graphic {
        order: -1;
    }
    
    .pricing-guarantees {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .trouble-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }
    
    /* Navigation drawer for mobile */
    .mobile-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background: #090c14;
        border-left: 1px solid var(--card-border);
        flex-direction: column;
        padding: 100px 40px;
        gap: 24px;
        transition: var(--transition);
        z-index: 105;
    }
    
    .nav-menu.open {
        right: 0;
    }
}

@media (max-width: 580px) {
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .duration-wrapper {
        padding: 32px;
    }
    
    .trouble-wrapper {
        padding: 32px 20px;
    }
    
    .duration-checklist {
        grid-template-columns: 1fr;
    }
    
    .tab-btn {
        width: 100%;
        border-radius: var(--border-radius-sm);
    }
    
    .tabs-buttons {
        border-radius: var(--border-radius);
        flex-direction: column;
    }
    
    .hero-actions-group {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
    }
}

/* -------------------------------------------------------------
   Inner Pages Styling (Planos & Como Funciona)
   ------------------------------------------------------------- */
.page-banner {
    padding: 140px 0 60px 0;
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, rgba(7, 9, 14, 0.4) 0%, var(--bg-primary) 100%);
}

.page-title {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--white) 0%, var(--text-secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.page-subtitle {
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 800px;
    margin: 0 auto;
}

/* Planos Page Styles */
.pricing-page-grid-section {
    padding: 60px 0;
}

.pricing-notice {
    margin-top: 40px;
    font-size: 15px;
    color: var(--text-secondary);
}

.comparative-section, .payment-methods-section, .concept-section, .step-guide-section, .apps-compat-section {
    padding: 80px 0;
}

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

.comparative-card {
    padding: 30px;
    text-align: left;
    transition: var(--transition);
}

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

.comparative-icon {
    font-size: 32px;
    margin-bottom: 20px;
}

.comparative-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--white);
}

.comparative-card p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Payment Methods Styles */
.payment-methods-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
    margin-top: 40px;
}

.payment-card {
    padding: 30px 24px;
    text-align: center;
    transition: var(--transition);
}

.payment-card:hover {
    transform: translateY(-5px);
    border-color: var(--card-border-glow);
}

.payment-icon {
    font-size: 36px;
    margin-bottom: 16px;
    color: var(--primary);
}

.payment-card h4 {
    font-size: 18px;
    margin-bottom: 8px;
    color: var(--white);
}

.payment-card p {
    font-size: 13px;
    color: var(--text-secondary);
}

/* Help / Final CTA Callout */
.help-callout-section, .final-question-section {
    padding: 60px 0 100px 0;
}

.help-callout-box {
    padding: 60px 40px;
    max-width: 900px;
    margin: 0 auto;
    border-color: rgba(0, 255, 136, 0.2);
    box-shadow: 0 0 40px rgba(0, 255, 136, 0.05);
}

.help-callout-box h3 {
    font-size: 32px;
    margin-bottom: 16px;
    color: var(--white);
}

.help-callout-box p {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 30px;
}

/* Concept Section (Como Funciona) */
.concept-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.concept-card {
    padding: 40px 30px;
    transition: var(--transition);
}

.concept-card:hover {
    transform: translateY(-5px);
    border-color: var(--card-border-glow);
}

.concept-icon {
    font-size: 36px;
    margin-bottom: 24px;
}

.concept-card h3 {
    font-size: 22px;
    margin-bottom: 16px;
    color: var(--white);
}

.concept-card p {
    font-size: 15px;
    color: var(--text-secondary);
}

/* Steps guide horizontal (Como Funciona) */
.steps-horizontal-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
    margin-top: 40px;
}

.horizontal-step-card {
    padding: 30px;
    position: relative;
    transition: var(--transition);
}

.horizontal-step-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.12);
}

.step-badge {
    position: absolute;
    top: -15px;
    left: 30px;
    width: 32px;
    height: 32px;
    background: var(--primary);
    color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 16px;
    box-shadow: 0 0 10px var(--primary-glow);
}

.step-details h4 {
    font-size: 18px;
    margin-bottom: 12px;
    color: var(--white);
    margin-top: 8px;
}

.step-details p {
    font-size: 14px;
    color: var(--text-secondary);
}

/* Requirements section in Como Funciona */
.how-requirements-section {
    padding: 60px 0;
}

.requirements-box {
    padding: 50px;
    max-width: 900px;
    margin: 0 auto;
    border-color: rgba(123, 44, 177, 0.2);
}

.requirements-list-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
    text-align: left;
}

.req-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.req-check {
    width: 28px;
    height: 28px;
    background: rgba(0, 255, 136, 0.1);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-weight: 700;
    font-size: 14px;
}

.req-item h4 {
    font-size: 16px;
    margin-bottom: 6px;
    color: var(--white);
}

.req-item p {
    font-size: 13px;
    color: var(--text-secondary);
}

/* Compatible Apps Grid (Como Funciona) */
.apps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.app-card {
    padding: 24px;
    transition: var(--transition);
    border-left: 3px solid var(--primary);
}

.app-card:hover {
    transform: translateX(4px);
    border-color: var(--card-border-glow);
}

.app-card h4 {
    font-size: 18px;
    color: var(--white);
    margin-bottom: 8px;
}

.app-card p {
    font-size: 13px;
    color: var(--text-secondary);
}

.apps-notice {
    margin-top: 30px;
    font-size: 15px;
    color: var(--text-secondary);
}

/* Media Queries for New Pages */
@media (max-width: 768px) {
    .page-title {
        font-size: 36px;
    }
    
    .page-subtitle {
        font-size: 16px;
    }
    
    .requirements-box {
        padding: 30px 20px;
    }
    
    .requirements-list-grid {
        grid-template-columns: 1fr;
    }
}

/* Dynamic SEO Board Styling (Discreet Tag Cloud) */
.seo-keywords-board {
    margin-top: 16px;
    padding: 12px 0 0 0;
    border-top: 1px solid rgba(255, 255, 255, 0.02);
}

.seo-tags-wrapper {
    font-size: 10px;
    line-height: 1.6;
    color: #16222f; /* Very low contrast dark text on #040508 background */
    text-align: justify;
    text-align-last: center;
    max-width: 1000px;
    margin: 0 auto;
}

.seo-tag-title {
    font-weight: 600;
    color: #213247;
    margin-right: 4px;
}

.seo-tag-item {
    display: inline;
}


/* =====================================================
   FASE 1 — Depoimentos, Quem Somos, Legais, Links rodapé
   ===================================================== */

/* Links legais no rodapé */
.footer-legal{margin-top:10px;font-size:.82rem;color:var(--text-muted);display:flex;flex-wrap:wrap;gap:8px;justify-content:center;}
.footer-legal a{color:var(--text-secondary);text-decoration:none;transition:var(--transition);}
.footer-legal a:hover{color:var(--primary);}
.footer-bottom-container{flex-wrap:wrap;}

/* Seção de depoimentos */
.testimonials-section{padding:90px 0;position:relative;}
.trust-strip{display:flex;flex-wrap:wrap;justify-content:center;align-items:center;gap:14px 30px;margin:0 auto 50px;max-width:920px;}
.trust-item{display:flex;align-items:center;gap:10px;color:var(--text-secondary);font-size:.92rem;font-weight:500;}
.trust-item .trust-num{font-family:var(--font-heading);font-weight:800;font-size:1.5rem;color:var(--primary);line-height:1;}
.testi-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:22px;margin-top:10px;}
.testi-card{padding:26px;display:flex;flex-direction:column;gap:14px;transition:var(--transition);}
.testi-card:hover{transform:translateY(-5px);border-color:var(--card-border-glow);}
.testi-stars{color:#ffb020;font-size:1rem;letter-spacing:2px;}
.testi-text{color:var(--text-secondary);font-size:.95rem;line-height:1.7;flex:1;}
.testi-author{display:flex;align-items:center;gap:12px;margin-top:4px;}
.testi-avatar{width:44px;height:44px;border-radius:50%;display:flex;align-items:center;justify-content:center;font-family:var(--font-heading);font-weight:700;color:#04130c;background:linear-gradient(135deg,var(--primary),var(--cyan));flex-shrink:0;}
.testi-name{font-weight:600;color:var(--text-primary);font-size:.92rem;}
.testi-meta{font-size:.78rem;color:var(--text-muted);}
.testi-verified{margin-left:auto;font-size:.72rem;color:var(--primary);font-weight:600;display:flex;align-items:center;gap:4px;}
@media(max-width:900px){.testi-grid{grid-template-columns:1fr;max-width:520px;margin:10px auto 0;}}

/* Páginas institucionais (Quem Somos / Legais) */
.page-hero{padding:70px 0 30px;text-align:center;position:relative;}
.page-hero .section-tag{margin-bottom:14px;}
.page-hero h1{font-family:var(--font-heading);font-size:clamp(2rem,4vw,3rem);font-weight:800;line-height:1.15;margin-bottom:16px;}
.page-hero p{color:var(--text-secondary);max-width:640px;margin:0 auto;font-size:1.05rem;}
.page-section{padding:30px 0;}
.prose{max-width:820px;margin:0 auto;}
.prose h2{font-family:var(--font-heading);font-size:1.5rem;font-weight:700;margin:34px 0 14px;color:var(--text-primary);}
.prose h3{font-family:var(--font-heading);font-size:1.15rem;font-weight:600;margin:22px 0 10px;color:var(--text-primary);}
.prose p{color:var(--text-secondary);margin-bottom:16px;line-height:1.8;}
.prose ul{color:var(--text-secondary);margin:0 0 18px 22px;line-height:1.8;}
.prose li{margin-bottom:8px;}
.prose strong{color:var(--text-primary);}
.prose a{color:var(--primary);text-decoration:none;}
.prose a:hover{text-decoration:underline;}
.about-stats{display:grid;grid-template-columns:repeat(4,1fr);gap:18px;margin:14px auto 40px;max-width:1000px;}
.about-stat{padding:24px 16px;text-align:center;}
.about-stat .num{font-family:var(--font-heading);font-weight:800;font-size:2rem;color:var(--primary);line-height:1;margin-bottom:6px;}
.about-stat .lbl{color:var(--text-secondary);font-size:.85rem;}
.values-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:20px;margin:14px 0 10px;}
.value-card{padding:26px;transition:var(--transition);}
.value-card:hover{transform:translateY(-5px);border-color:var(--card-border-glow);}
.value-card .v-ico{font-size:1.6rem;margin-bottom:12px;display:block;}
.value-card h3{font-family:var(--font-heading);font-size:1.1rem;margin-bottom:8px;color:var(--text-primary);}
.value-card p{color:var(--text-secondary);font-size:.9rem;line-height:1.7;}
@media(max-width:900px){.about-stats{grid-template-columns:1fr 1fr;}.values-grid{grid-template-columns:1fr;}}

/* =====================================================
   FASE 3 — Micro-interações, acessibilidade e tabelas técnicas
   ===================================================== */
html { scroll-behavior: smooth; }

/* transições suaves adicionais (aditivas, não sobrescrevem hovers existentes) */
a, .glass-card, .blog-card, .feature-card, .plan-card, .testi-card, .value-card { transition: var(--transition); }

/* feedback tátil ao clicar */
.btn:active { transform: translateY(0) scale(0.985); }

/* acessibilidade: navegação por teclado visível */
a:focus-visible, button:focus-visible, .btn:focus-visible, input:focus-visible,
.faq-question:focus-visible, .filter-btn:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 3px;
  border-radius: 6px;
}

/* seta do "ler artigo" desliza ao passar o mouse no link */
.blog-read-more-arrow { display: inline-block; transition: transform 0.25s ease; }
.blog-read-more:hover .blog-read-more-arrow { transform: translateX(5px); }

/* leve realce em cards ao focar via teclado */
.glass-card:focus-within { border-color: var(--card-border-glow); }

/* respeito a quem prefere menos movimento */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

/* Tabela técnica comparativa */
.tech-table-wrap { overflow-x: auto; margin: 26px 0; border: 1px solid var(--card-border); border-radius: var(--border-radius-lg, 14px); -webkit-overflow-scrolling: touch; }
.tech-table { width: 100%; border-collapse: collapse; min-width: 580px; font-size: 0.92rem; }
.tech-table thead th { background: rgba(0,255,136,0.07); color: var(--white); font-family: var(--font-heading); font-weight: 600; text-align: left; padding: 14px 16px; border-bottom: 1px solid var(--card-border); white-space: nowrap; }
.tech-table td { padding: 13px 16px; color: var(--text-secondary); border-bottom: 1px solid rgba(255,255,255,0.05); vertical-align: top; }
.tech-table tbody tr { transition: background 0.2s ease; }
.tech-table tbody tr:hover { background: rgba(255,255,255,0.03); }
.tech-table tbody tr:last-child td { border-bottom: none; }
.tech-table td:first-child { color: var(--white); font-weight: 600; }
.tech-table .hl { color: var(--primary); font-weight: 600; }
.tech-caption { font-size: 0.8rem; color: var(--text-muted); margin-top: 8px; text-align: center; }
