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

:root {
    --primary-color: #FFC107;
    --bg-dark: #000000;
    --text-light: #ffffff;
    --text-gray: #cccccc;
    --border-color: #FFC107;
    --card-bg: #0a0a0a;
    --hover-bg: #1a1a1a;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Lato', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-light);
    line-height: 1.5;
    font-weight: 300;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
header {
    background-color: var(--bg-dark);
    border-bottom: 1px solid var(--border-color);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

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

.logo-icon {
    width: 40px;
    height: 40px;
    position: relative;
}

.tv-screen {
    width: 32px;
    height: 20px;
    background-color: var(--primary-color);
    border-radius: 2px;
    position: absolute;
    top: 5px;
    left: 4px;
}

.tv-stand {
    width: 20px;
    height: 8px;
    background-color: var(--primary-color);
    position: absolute;
    bottom: 0;
    left: 10px;
    border-radius: 0 0 2px 2px;
}

.tv-stand::before {
    content: '';
    width: 12px;
    height: 4px;
    background-color: var(--primary-color);
    position: absolute;
    top: -4px;
    left: 4px;
}

.logo-text {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
}

.header-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: var(--primary-color);
    color: var(--bg-dark) !important;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none !important;
    font-weight: 700;
    font-size: 14px;
    white-space: nowrap;
}

.header-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 3px 15px rgba(255, 193, 7, 0.4);
}

.header-button .icon-whatsapp {
    width: 16px;
    height: 16px;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--primary-color);
    border-radius: 2px;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.main-nav {
    display: flex;
    gap: 30px;
}

.main-nav a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 400;
}

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

/* Sections */
section {
    padding: 80px 0;
    border-bottom: 1px solid var(--border-color);
}

h1 {
    font-size: 48px;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.2;
}

h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 20px;
    text-align: center;
}

h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 15px;
}

h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 10px;
}

.section-intro {
    text-align: center;
    font-size: 18px;
    color: var(--text-gray);
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Hero Section */
.hero {
    padding: 100px 0;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 60px;
}

.hero-content {
    text-align: left;
}

.hero-content h1 {
    text-align: left;
}

/* Hero Badge */
.hero-badge {
    display: inline-block;
    font-size: 14px;
    font-weight: 700;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    padding: 6px 16px;
    border: 1px solid rgba(255, 193, 7, 0.3);
    border-radius: 20px;
    background-color: rgba(255, 193, 7, 0.08);
    white-space: nowrap;
}

.hero-subtitle {
    font-size: 20px;
    color: var(--text-gray);
    margin-bottom: 40px;
    max-width: 700px;
}

.hero-buttons {
    margin-bottom: 40px;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image img {
    width: 100%;
    max-width: 580px;
    height: auto;
    border-radius: 16px;
    object-fit: cover;
}

.hero-features {
    display: flex;
    justify-content: flex-start;
    gap: 30px;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: var(--primary-color);
    color: var(--bg-dark);
    padding: 18px 40px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 700;
    font-size: 18px;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(255, 193, 7, 0.4);
}

.cta-button.large {
    font-size: 22px;
    padding: 22px 50px;
}

/* Icons */
.icon-whatsapp {
    width: 24px;
    height: 24px;
    background-color: var(--bg-dark);
    border-radius: 50%;
    position: relative;
}

.icon-whatsapp::before {
    content: '';
    position: absolute;
    width: 14px;
    height: 14px;
    border: 2px solid var(--bg-dark);
    border-radius: 50%;
    top: 3px;
    left: 3px;
    background-color: var(--primary-color);
}

.icon-whatsapp::after {
    content: '';
    position: absolute;
    width: 6px;
    height: 6px;
    background-color: var(--bg-dark);
    border-radius: 1px;
    top: 7px;
    left: 7px;
}

.icon-check {
    width: 24px;
    height: 24px;
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    position: relative;
}

.icon-check::after {
    content: '';
    position: absolute;
    width: 6px;
    height: 12px;
    border: solid var(--primary-color);
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
    top: 3px;
    left: 7px;
}

.icon-check-small {
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    position: relative;
    margin-right: 8px;
}

.icon-check-small::after {
    content: '';
    position: absolute;
    width: 4px;
    height: 8px;
    border: solid var(--primary-color);
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
    top: 1px;
    left: 4px;
}

/* Benefits Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.benefit-card {
    background-color: var(--card-bg);
    padding: 30px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
}

.benefit-card:hover {
    transform: translateY(-5px);
}

.benefit-card h3 {
    margin-top: 20px;
}

/* Icon Styles */
.icon-tv, .icon-channels, .icon-device, .icon-play, .icon-speed, .icon-support,
.icon-hd, .icon-globe, .icon-sports, .icon-movie, .icon-kids, .icon-news,
.icon-smartphone, .icon-smart-tv, .icon-tablet, .icon-computer, .icon-tvbox, .icon-console,
.icon-calendar, .icon-rocket, .icon-shield, .icon-update, .icon-lock,
.icon-star, .icon-robot, .icon-clock, .icon-message {
    width: 60px;
    height: 60px;
    background-color: var(--primary-color);
    border-radius: 8px;
    position: relative;
    margin: 0 auto;
}

.icon-tv::before {
    content: '';
    width: 40px;
    height: 28px;
    background-color: var(--bg-dark);
    position: absolute;
    top: 10px;
    left: 10px;
    border-radius: 3px;
}

.icon-tv::after {
    content: '';
    width: 20px;
    height: 6px;
    background-color: var(--bg-dark);
    position: absolute;
    bottom: 8px;
    left: 20px;
    border-radius: 2px;
}

.icon-channels::before {
    content: '';
    width: 8px;
    height: 40px;
    background-color: var(--bg-dark);
    position: absolute;
    top: 10px;
    left: 12px;
}

.icon-channels::after {
    content: '';
    width: 8px;
    height: 40px;
    background-color: var(--bg-dark);
    position: absolute;
    top: 10px;
    right: 12px;
}

.icon-device::before {
    content: '';
    width: 30px;
    height: 40px;
    background-color: var(--bg-dark);
    position: absolute;
    top: 10px;
    left: 15px;
    border-radius: 4px;
}

.icon-device::after {
    content: '';
    width: 10px;
    height: 2px;
    background-color: var(--primary-color);
    position: absolute;
    bottom: 14px;
    left: 25px;
    border-radius: 1px;
}

.icon-play::before {
    content: '';
    width: 0;
    height: 0;
    border-left: 20px solid var(--bg-dark);
    border-top: 12px solid transparent;
    border-bottom: 12px solid transparent;
    position: absolute;
    top: 18px;
    left: 22px;
}

.icon-speed::before {
    content: '';
    width: 30px;
    height: 30px;
    border: 4px solid var(--bg-dark);
    border-radius: 50%;
    position: absolute;
    top: 15px;
    left: 15px;
}

.icon-speed::after {
    content: '';
    width: 2px;
    height: 12px;
    background-color: var(--bg-dark);
    position: absolute;
    top: 20px;
    left: 29px;
    transform: rotate(45deg);
}

.icon-support::before {
    content: '';
    width: 24px;
    height: 24px;
    border: 4px solid var(--bg-dark);
    border-radius: 50%;
    position: absolute;
    top: 10px;
    left: 18px;
}

.icon-support::after {
    content: '';
    width: 16px;
    height: 10px;
    background-color: var(--bg-dark);
    border-radius: 0 0 8px 8px;
    position: absolute;
    bottom: 10px;
    left: 22px;
}

.icon-hd::before {
    content: 'HD';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--bg-dark);
    font-weight: 900;
    font-size: 20px;
}

.icon-globe::before {
    content: '';
    width: 30px;
    height: 30px;
    border: 4px solid var(--bg-dark);
    border-radius: 50%;
    position: absolute;
    top: 15px;
    left: 15px;
}

.icon-globe::after {
    content: '';
    width: 4px;
    height: 30px;
    background-color: var(--bg-dark);
    position: absolute;
    top: 15px;
    left: 28px;
    border-radius: 2px;
}

.icon-sports::before {
    content: '';
    width: 24px;
    height: 24px;
    border: 4px solid var(--bg-dark);
    border-radius: 50%;
    position: absolute;
    top: 18px;
    left: 18px;
}

.icon-sports::after {
    content: '';
    width: 12px;
    height: 12px;
    border-left: 3px solid var(--bg-dark);
    border-bottom: 3px solid var(--bg-dark);
    position: absolute;
    top: 24px;
    left: 24px;
}

.icon-movie::before {
    content: '';
    width: 40px;
    height: 30px;
    background-color: var(--bg-dark);
    position: absolute;
    top: 15px;
    left: 10px;
    border-radius: 3px;
}

.icon-movie::after {
    content: '';
    width: 8px;
    height: 8px;
    background-color: var(--primary-color);
    border-radius: 50%;
    position: absolute;
    top: 26px;
    left: 26px;
}

.icon-kids::before {
    content: '';
    width: 16px;
    height: 16px;
    background-color: var(--bg-dark);
    border-radius: 50%;
    position: absolute;
    top: 12px;
    left: 22px;
}

.icon-kids::after {
    content: '';
    width: 20px;
    height: 24px;
    background-color: var(--bg-dark);
    border-radius: 10px 10px 0 0;
    position: absolute;
    bottom: 8px;
    left: 20px;
}

.icon-news::before {
    content: '';
    width: 36px;
    height: 40px;
    background-color: var(--bg-dark);
    position: absolute;
    top: 10px;
    left: 12px;
    border-radius: 2px;
}

.icon-news::after {
    content: '';
    width: 24px;
    height: 3px;
    background-color: var(--primary-color);
    position: absolute;
    top: 20px;
    left: 18px;
}

.icon-smartphone::before {
    content: '';
    width: 24px;
    height: 40px;
    background-color: var(--bg-dark);
    position: absolute;
    top: 10px;
    left: 18px;
    border-radius: 4px;
}

.icon-smartphone::after {
    content: '';
    width: 8px;
    height: 2px;
    background-color: var(--primary-color);
    position: absolute;
    bottom: 14px;
    left: 26px;
}

.icon-smart-tv::before {
    content: '';
    width: 40px;
    height: 28px;
    background-color: var(--bg-dark);
    position: absolute;
    top: 10px;
    left: 10px;
    border-radius: 3px;
}

.icon-smart-tv::after {
    content: '';
    width: 20px;
    height: 6px;
    background-color: var(--bg-dark);
    position: absolute;
    bottom: 8px;
    left: 20px;
}

.icon-tablet::before {
    content: '';
    width: 32px;
    height: 40px;
    background-color: var(--bg-dark);
    position: absolute;
    top: 10px;
    left: 14px;
    border-radius: 4px;
}

.icon-tablet::after {
    content: '';
    width: 10px;
    height: 2px;
    background-color: var(--primary-color);
    position: absolute;
    bottom: 14px;
    left: 25px;
}

.icon-computer::before {
    content: '';
    width: 36px;
    height: 24px;
    background-color: var(--bg-dark);
    position: absolute;
    top: 12px;
    left: 12px;
    border-radius: 2px;
}

.icon-computer::after {
    content: '';
    width: 24px;
    height: 4px;
    background-color: var(--bg-dark);
    position: absolute;
    bottom: 12px;
    left: 18px;
}

.icon-tvbox::before {
    content: '';
    width: 36px;
    height: 20px;
    background-color: var(--bg-dark);
    position: absolute;
    top: 20px;
    left: 12px;
    border-radius: 3px;
}

.icon-tvbox::after {
    content: '';
    width: 8px;
    height: 8px;
    background-color: var(--primary-color);
    border-radius: 50%;
    position: absolute;
    top: 26px;
    left: 26px;
}

.icon-console::before {
    content: '';
    width: 36px;
    height: 24px;
    background-color: var(--bg-dark);
    position: absolute;
    top: 18px;
    left: 12px;
    border-radius: 12px;
}

.icon-console::after {
    content: '';
    width: 6px;
    height: 6px;
    background-color: var(--primary-color);
    border-radius: 50%;
    position: absolute;
    top: 27px;
    left: 20px;
}

.icon-calendar::before {
    content: '';
    width: 32px;
    height: 28px;
    background-color: var(--bg-dark);
    position: absolute;
    top: 18px;
    left: 14px;
    border-radius: 3px;
}

.icon-calendar::after {
    content: '';
    width: 32px;
    height: 4px;
    background-color: var(--primary-color);
    position: absolute;
    top: 14px;
    left: 14px;
    border-radius: 2px 2px 0 0;
}

.icon-rocket::before {
    content: '';
    width: 16px;
    height: 28px;
    background-color: var(--bg-dark);
    position: absolute;
    top: 12px;
    left: 22px;
    border-radius: 8px 8px 0 0;
}

.icon-rocket::after {
    content: '';
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 12px solid var(--bg-dark);
    position: absolute;
    bottom: 8px;
    left: 22px;
}

.icon-shield::before {
    content: '';
    width: 28px;
    height: 32px;
    background-color: var(--bg-dark);
    position: absolute;
    top: 14px;
    left: 16px;
    clip-path: polygon(50% 0%, 100% 20%, 100% 80%, 50% 100%, 0% 80%, 0% 20%);
}

.icon-shield::after {
    content: '';
    width: 8px;
    height: 14px;
    border: solid var(--primary-color);
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
    position: absolute;
    top: 22px;
    left: 24px;
}

.icon-update::before {
    content: '';
    width: 28px;
    height: 28px;
    border: 4px solid var(--bg-dark);
    border-radius: 50%;
    border-top-color: transparent;
    position: absolute;
    top: 16px;
    left: 16px;
}

.icon-update::after {
    content: '';
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-bottom: 8px solid var(--bg-dark);
    position: absolute;
    top: 14px;
    right: 18px;
}

.icon-lock::before {
    content: '';
    width: 24px;
    height: 20px;
    background-color: var(--bg-dark);
    position: absolute;
    bottom: 12px;
    left: 18px;
    border-radius: 3px;
}

.icon-lock::after {
    content: '';
    width: 16px;
    height: 14px;
    border: 4px solid var(--bg-dark);
    border-bottom: none;
    border-radius: 8px 8px 0 0;
    position: absolute;
    top: 14px;
    left: 22px;
}

.icon-star::before {
    content: '★';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--bg-dark);
    font-size: 32px;
}

.icon-robot::before {
    content: '';
    width: 32px;
    height: 28px;
    background-color: var(--bg-dark);
    position: absolute;
    top: 16px;
    left: 14px;
    border-radius: 4px;
}

.icon-robot::after {
    content: '';
    width: 6px;
    height: 6px;
    background-color: var(--primary-color);
    border-radius: 50%;
    position: absolute;
    top: 24px;
    left: 20px;
    box-shadow: 14px 0 0 var(--primary-color);
}

.icon-clock::before {
    content: '';
    width: 32px;
    height: 32px;
    border: 4px solid var(--bg-dark);
    border-radius: 50%;
    position: absolute;
    top: 14px;
    left: 14px;
}

.icon-clock::after {
    content: '';
    width: 2px;
    height: 12px;
    background-color: var(--bg-dark);
    position: absolute;
    top: 20px;
    left: 29px;
}

.icon-message::before {
    content: '';
    width: 36px;
    height: 24px;
    background-color: var(--bg-dark);
    position: absolute;
    top: 18px;
    left: 12px;
    border-radius: 4px;
}

.icon-message::after {
    content: '';
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 8px solid var(--bg-dark);
    position: absolute;
    bottom: 10px;
    left: 20px;
}

/* How It Works */
.steps {
    max-width: 900px;
    margin: 0 auto 50px;
}

.step {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
    align-items: flex-start;
}

.step-number {
    width: 60px;
    height: 60px;
    background-color: var(--primary-color);
    color: var(--bg-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content {
    flex: 1;
}

.step-content p {
    color: var(--text-gray);
}

/* Features List */
.features-list {
    max-width: 800px;
    margin: 0 auto 50px;
}

.feature-row {
    display: flex;
    gap: 30px;
    align-items: center;
    margin-bottom: 30px;
    padding: 20px;
    background-color: var(--card-bg);
    border-radius: 8px;
    border: 1px solid var(--border-color);
}

.feature-row .icon-hd,
.feature-row .icon-globe,
.feature-row .icon-sports,
.feature-row .icon-movie,
.feature-row .icon-kids,
.feature-row .icon-news {
    flex-shrink: 0;
}

.feature-text {
    flex: 1;
}

.feature-text h3 {
    margin-bottom: 8px;
}

.feature-text p {
    color: var(--text-gray);
    margin: 0;
}

/* Devices Grid */
.devices-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.device-card {
    background-color: var(--card-bg);
    padding: 30px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    text-align: center;
}

.device-card:hover {
    transform: translateY(-5px);
}

.device-card h3 {
    margin-top: 20px;
}

.device-card p {
    color: var(--text-gray);
}

/* Plans */
.plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.plan-card {
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    position: relative;
}

.plan-card:hover {
    transform: translateY(-5px);
}

.plan-card.featured {
    border: 2px solid var(--primary-color);
}

.plan-badge {
    background-color: var(--primary-color);
    color: var(--bg-dark);
    padding: 8px 20px;
    position: absolute;
    top: 20px;
    right: -30px;
    transform: rotate(45deg);
    font-weight: 700;
    font-size: 12px;
    width: 150px;
    text-align: center;
}

.plan-header {
    padding: 30px;
    text-align: center;
    border-bottom: 1px solid var(--border-color);
}

.plan-header h3 {
    margin-bottom: 20px;
}

.plan-icon {
    margin: 0 auto;
}

.plan-body {
    padding: 30px;
}

.plan-discount {
    background-color: var(--primary-color);
    color: var(--bg-dark);
    padding: 8px 16px;
    border-radius: 20px;
    display: inline-block;
    font-weight: 700;
    margin-bottom: 20px;
}

.plan-description {
    color: var(--text-gray);
    margin-bottom: 25px;
}

.plan-features {
    list-style: none;
}

.plan-features li {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    color: var(--text-gray);
}

.plan-footer {
    padding: 0 30px 30px;
}

.plan-button {
    display: block;
    width: 100%;
    padding: 15px;
    background-color: var(--primary-color);
    color: var(--bg-dark);
    text-align: center;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 700;
}

.plan-button:hover {
    transform: translateY(-2px);
}

/* Differentials */
.differentials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.differential-item {
    text-align: center;
    padding: 30px;
}

.differential-item p {
    color: var(--text-gray);
}

/* Quality Section */
.quality-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-bottom: 50px;
    align-items: center;
}

.quality-text p {
    color: var(--text-gray);
    margin-bottom: 20px;
}

.quality-highlights {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.highlight-box {
    background-color: var(--card-bg);
    padding: 25px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    gap: 20px;
}

.highlight-box .icon-star {
    flex-shrink: 0;
}

.highlight-box h4 {
    margin-bottom: 5px;
}

.highlight-box p {
    color: var(--text-gray);
    margin: 0;
}

/* Automation Section */
.automation-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.auto-feature {
    text-align: center;
    padding: 30px;
    background-color: var(--card-bg);
    border-radius: 8px;
    border: 1px solid var(--border-color);
}

.auto-feature p {
    color: var(--text-gray);
}

.automation-flow {
    background-color: var(--card-bg);
    padding: 40px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    margin-bottom: 50px;
}

.automation-flow h3 {
    text-align: center;
    margin-bottom: 40px;
}

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

.flow-step {
    text-align: center;
    flex: 1;
    min-width: 150px;
}

.flow-number {
    display: inline-block;
    width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    color: var(--bg-dark);
    border-radius: 50%;
    line-height: 40px;
    font-weight: 700;
    margin-bottom: 10px;
}

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

.flow-arrow {
    color: var(--primary-color);
    font-size: 24px;
    font-weight: 700;
}

/* Reviews */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.review-card {
    background-color: var(--card-bg);
    padding: 25px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
    flex-wrap: wrap;
    gap: 10px;
}

.review-header h3 {
    font-size: 16px;
    margin: 0;
    flex: 1;
}

.review-stars {
    color: var(--primary-color);
    font-size: 18px;
    white-space: nowrap;
}

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

/* FAQ */
.faq-list {
    max-width: 900px;
    margin: 0 auto 50px;
}

.faq-item {
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 25px;
    background: none;
    border: none;
    color: var(--text-light);
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.faq-question:hover {
    background-color: var(--hover-bg);
}

.faq-question h3 {
    margin: 0;
    font-size: 18px;
}

.faq-icon {
    color: var(--primary-color);
    font-size: 28px;
    font-weight: 300;
    flex-shrink: 0;
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
}

.faq-item.active .faq-answer {
    max-height: 1000px;
}

.faq-answer p {
    padding: 0 25px 25px;
    color: var(--text-gray);
    line-height: 1.7;
}

/* Final CTA */
.final-cta {
    text-align: center;
    padding: 100px 0;
    background: linear-gradient(135deg, var(--bg-dark) 0%, #1a1a1a 100%);
}

.final-cta h2 {
    margin-bottom: 20px;
}

.final-cta p {
    font-size: 20px;
    color: var(--text-gray);
    margin-bottom: 40px;
}

/* Footer */
footer {
    background-color: var(--bg-dark);
    padding: 60px 0 20px;
    border-top: 1px solid var(--border-color);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo p {
    color: var(--text-gray);
    margin-top: 15px;
}

.footer-title {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: 700;
    font-size: 18px;
}

.highlight-title {
    display: block;
    font-size: 18px;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 5px;
}

.footer-links ul,
.footer-legal ul {
    list-style: none;
}

.footer-links li,
.footer-legal li {
    margin-bottom: 10px;
}

.footer-links a,
.footer-legal a {
    color: var(--text-gray);
    text-decoration: none;
}

.footer-links a:hover,
.footer-legal a:hover {
    color: var(--primary-color);
}

.footer-contact p {
    color: var(--text-gray);
}

.footer-contact a {
    color: var(--primary-color);
    text-decoration: none;
}

.footer-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: var(--primary-color);
    color: var(--bg-dark) !important;
    padding: 12px 24px;
    border-radius: 5px;
    text-decoration: none !important;
    font-weight: 700;
    font-size: 14px;
    margin-top: 10px;
}

.footer-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 3px 15px rgba(255, 193, 7, 0.4);
    color: var(--bg-dark) !important;
}

.footer-button .icon-whatsapp {
    width: 18px;
    height: 18px;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
    color: var(--text-gray);
}

/* CTA Center */
.cta-center {
    text-align: center;
}

/* Ranking Section */
.ranking-search-box {
    max-width: 500px;
    margin: 0 auto 40px;
}

.ranking-search-box input {
    width: 100%;
    padding: 14px 20px;
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    color: var(--text-light);
    font-family: 'Lato', sans-serif;
    font-size: 16px;
    outline: none;
}

.ranking-search-box input:focus {
    box-shadow: 0 0 0 2px rgba(255, 193, 7, 0.3);
}

.ranking-search-box input::placeholder {
    color: var(--text-gray);
}

.featured-rank-card {
    background-color: var(--card-bg);
    border: 2px solid var(--primary-color);
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 32px;
    position: relative;
}

.featured-rank-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(255, 193, 7, 0.15);
}

.featured-rank-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background-color: var(--primary-color);
    color: var(--bg-dark);
    font-size: 12px;
    font-weight: 700;
    padding: 6px 16px;
    border-radius: 20px;
    z-index: 2;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.featured-rank-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    padding: 32px;
}

.featured-rank-img img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
}

.featured-rank-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.featured-rank-content h3 {
    font-size: 28px;
    margin-bottom: 12px;
}

.featured-rank-content h3 a {
    color: var(--text-light);
    text-decoration: none;
}

.featured-rank-content h3 a:hover {
    color: var(--primary-color);
}

.featured-rank-content .rank-desc {
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 16px;
}

.featured-rank-content .rank-stars {
    margin-bottom: 16px;
}

.featured-rank-content .rank-tags {
    margin-bottom: 20px;
}

.featured-rank-content .cta-button {
    align-self: flex-start;
}

.no-results {
    display: none;
    text-align: center;
    padding: 40px 20px;
    color: var(--text-gray);
    font-size: 16px;
}

.no-results.visible {
    display: block;
}

.rank-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.rank-card {
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 24px;
}

.rank-card:hover {
    transform: translateY(-3px);
    background-color: var(--hover-bg);
}

.rank-card-header {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    margin-bottom: 12px;
}

.rank-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 900;
    flex-shrink: 0;
    background-color: var(--hover-bg);
    color: var(--text-gray);
    border: 1px solid var(--border-color);
}

.rank-number.gold {
    background-color: var(--primary-color);
    color: var(--bg-dark);
    border: none;
}

.rank-card-header h3 {
    font-size: 18px;
    margin-bottom: 8px;
}

.rank-desc {
    color: var(--text-gray);
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

.rank-stars {
    color: var(--primary-color);
    font-size: 16px;
    margin-bottom: 10px;
}

.rank-stars strong {
    color: var(--text-light);
    margin-left: 4px;
}

.rank-reviews {
    color: var(--text-gray);
    font-size: 13px;
    font-weight: 300;
    margin-left: 8px;
}

.rank-card-img {
    width: 96px;
    height: 96px;
    border-radius: 8px;
    object-fit: cover;
    flex-shrink: 0;
}

.rank-cta {
    display: inline-block;
    margin-top: 12px;
    padding: 10px 24px;
    background-color: var(--primary-color) !important;
    color: #000 !important;
    text-decoration: none !important;
    border-radius: 5px;
    font-weight: 700;
    font-size: 14px;
    text-align: center;
    letter-spacing: 0.3px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.rank-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(255, 193, 7, 0.4);
    color: #000 !important;
    text-decoration: none !important;
}

.rank-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.rank-tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 20px;
    background-color: rgba(255, 193, 7, 0.1);
    color: var(--primary-color);
    border: 1px solid rgba(255, 193, 7, 0.25);
}

/* Responsive - Tablet */
@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .hero-content {
        text-align: center;
    }

    .hero-content h1 {
        text-align: center;
    }

    .hero-image img {
        max-width: 460px;
    }

    .hero-features {
        justify-content: center;
    }

    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }

    .featured-rank-inner {
        grid-template-columns: 1fr;
    }

    .rank-grid {
        grid-template-columns: 1fr;
    }
}

/* Responsive - Mobile */
@media (max-width: 768px) {
    h1 {
        font-size: 36px;
    }

    h2 {
        font-size: 28px;
    }

    h3 {
        font-size: 20px;
    }

    header .container {
        flex-wrap: nowrap;
        gap: 8px;
    }

    .menu-toggle {
        display: flex;
        order: 3;
        flex-shrink: 0;
    }

    .logo {
        order: 1;
        flex-shrink: 1;
        min-width: 0;
        gap: 8px;
    }

    .logo-icon {
        width: 28px;
        height: 28px;
        flex-shrink: 0;
    }

    .tv-screen {
        width: 22px;
        height: 14px;
        top: 3px;
        left: 3px;
    }

    .tv-stand {
        width: 14px;
        height: 5px;
        left: 7px;
    }

    .tv-stand::before {
        width: 8px;
        height: 3px;
        left: 3px;
    }

    .logo-text {
        font-size: 16px;
        white-space: nowrap;
    }

    .header-button {
        order: 2;
        font-size: 10px;
        padding: 7px 10px;
        gap: 4px;
        white-space: nowrap;
        flex-shrink: 1;
        min-width: 0;
    }

    .header-button .icon-whatsapp {
        width: 12px;
        height: 12px;
        flex-shrink: 0;
    }

    .main-nav {
        display: none;
        width: 100%;
        flex-direction: column;
        gap: 0;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        margin-top: 0;
        background-color: var(--card-bg);
        border-radius: 0 0 8px 8px;
        overflow: hidden;
        border: 1px solid var(--border-color);
        border-top: none;
    }

    .main-nav.active {
        display: flex;
    }

    .main-nav a {
        padding: 15px 20px;
        border-bottom: 1px solid var(--border-color);
    }

    .main-nav a:last-child {
        border-bottom: none;
    }

    header {
        position: relative;
    }

    .hero {
        padding: 40px 0;
    }

    .hero-grid {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        text-align: left;
    }

    .hero-content {
        display: contents;
        text-align: left;
    }

    .hero-badge {
        order: 1;
        margin-bottom: 16px;
        align-self: flex-start;
    }

    .hero-content h1 {
        order: 2;
        font-size: 28px;
        text-align: left;
        margin-bottom: 12px;
        width: 100%;
    }

    .hero-subtitle {
        order: 3;
        font-size: 16px;
        margin-bottom: 20px;
        margin-left: 0;
        margin-right: 0;
        text-align: left;
        width: 100%;
    }

    .hero-buttons {
        order: 4;
        margin-bottom: 24px;
        text-align: left;
        align-self: flex-start;
    }

    .hero-image {
        order: 5;
        margin-bottom: 24px;
        align-self: stretch;
    }

    .hero-image img {
        max-width: 100%;
        border-radius: 12px;
    }

    .hero-features {
        order: 6;
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    section {
        padding: 60px 0;
    }

    .quality-content {
        grid-template-columns: 1fr;
    }

    .flow-steps {
        flex-direction: column;
    }

    .flow-arrow {
        transform: rotate(90deg);
    }

    .benefits-grid,
    .devices-grid,
    .plans-grid {
        grid-template-columns: 1fr;
    }

    .featured-rank-inner {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 20px;
    }

    .featured-rank-content h3 {
        font-size: 22px;
    }

    .step {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .cta-button {
        padding: 15px 30px;
        font-size: 16px;
    }

    .cta-button.large {
        font-size: 18px;
        padding: 18px 35px;
    }
}

/* Cookie Consent Banner (LGPD) */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--card-bg);
    border-top: 1px solid var(--border-color);
    padding: 20px;
    z-index: 9999;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.cookie-banner.visible {
    transform: translateY(0);
}

.cookie-banner .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.cookie-text {
    flex: 1;
    min-width: 200px;
    color: var(--text-gray);
    font-size: 14px;
    line-height: 1.6;
}

.cookie-text a {
    color: var(--primary-color);
    text-decoration: none;
}

.cookie-text a:hover {
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 10px 24px;
    border-radius: 5px;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    border: none;
    font-family: 'Lato', sans-serif;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cookie-btn:hover {
    transform: translateY(-2px);
}

.cookie-btn-accept {
    background-color: var(--primary-color);
    color: var(--bg-dark);
}

.cookie-btn-accept:hover {
    box-shadow: 0 3px 15px rgba(255, 193, 7, 0.4);
}

.cookie-btn-necessary {
    background-color: transparent;
    color: var(--text-gray);
    border: 1px solid var(--text-gray);
}

.cookie-btn-necessary:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

/* Breadcrumb */
.breadcrumb {
    padding: 12px 0;
    font-size: 14px;
    color: var(--text-gray);
}

.breadcrumb a {
    color: var(--text-gray);
    text-decoration: none;
}

.breadcrumb a:hover {
    color: var(--primary-color);
}

.breadcrumb span {
    margin: 0 8px;
    color: var(--text-gray);
}

/* Reviews Section */
.reviews-section {
    padding: 80px 0;
    border-bottom: 1px solid var(--border-color);
}

.reviews-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-bottom: 40px;
}

.review-filter {
    padding: 8px 20px;
    background: transparent;
    border: 1px solid var(--border-color);
    border-radius: 20px;
    color: var(--text-gray);
    font-family: 'Lato', sans-serif;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.review-filter:hover,
.review-filter.active {
    background-color: var(--primary-color);
    color: var(--bg-dark);
    border-color: var(--primary-color);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 20px;
}

/* Reviews: hidden by default, shown by CSS category match or JS */
.review-card {
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 24px;
    display: none;
}

.review-card.visible {
    display: block;
}

/* FAQ: hidden by default, shown by CSS category match or JS */
.faq-item[data-faqcat] {
    display: none;
}

.faq-item[data-faqcat].faq-visible {
    display: block;
}

.review-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 12px;
    gap: 10px;
}

.review-author {
    font-weight: 700;
    font-size: 15px;
    color: var(--text-light);
}

.review-location {
    font-size: 13px;
    color: var(--text-gray);
    margin-top: 2px;
}

.review-category-badge {
    font-size: 11px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 20px;
    background-color: rgba(255, 193, 7, 0.1);
    color: var(--primary-color);
    border: 1px solid rgba(255, 193, 7, 0.25);
    white-space: nowrap;
    flex-shrink: 0;
}

.review-text {
    color: var(--text-gray);
    font-size: 14px;
    line-height: 1.7;
}

.reviews-show-more {
    text-align: center;
    margin-top: 30px;
}

.reviews-show-more button {
    padding: 12px 32px;
    background: transparent;
    border: 1px solid var(--primary-color);
    border-radius: 5px;
    color: var(--primary-color);
    font-family: 'Lato', sans-serif;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.reviews-show-more button:hover {
    background-color: var(--primary-color);
    color: var(--bg-dark);
}

@media (max-width: 768px) {
    .reviews-grid {
        grid-template-columns: 1fr;
    }

    .reviews-categories {
        justify-content: flex-start;
        overflow-x: auto;
        flex-wrap: nowrap;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 10px;
    }

    .review-filter {
        flex-shrink: 0;
    }
}


@media (max-width: 768px) {
    .cookie-banner .container {
        flex-direction: column;
        text-align: center;
    }

    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 380px) {
    header .container {
        gap: 6px;
    }

    .logo {
        gap: 6px;
    }

    .logo-icon {
        width: 24px;
        height: 24px;
    }

    .tv-screen {
        width: 19px;
        height: 12px;
        top: 3px;
        left: 2px;
    }

    .tv-stand {
        width: 12px;
        height: 4px;
        left: 6px;
    }

    .tv-stand::before {
        width: 7px;
        height: 2px;
        left: 2px;
    }

    .logo-text {
        font-size: 14px;
    }

    .header-button {
        font-size: 9px;
        padding: 6px 8px;
        gap: 3px;
    }

    .header-button .icon-whatsapp {
        width: 11px;
        height: 11px;
    }

    .menu-toggle span {
        width: 20px;
        height: 2px;
    }

    .menu-toggle {
        gap: 4px;
    }
}
