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

:root {
    --primary-color: #00E5FF;
    --bg-dark: #121212;
    --bg-darker: #0a0a0a;
    --text-light: #ffffff;
    --text-gray: #b0b0b0;
    --border-color: #00E5FF;
}

body {
    font-family: 'Raleway', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-light);
    line-height: 1.6;
    font-weight: 300;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

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

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

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

.logo-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary-color), #00b8d4);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.play-symbol {
    width: 0;
    height: 0;
    border-left: 12px solid var(--bg-dark);
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    margin-left: 3px;
}

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

nav {
    display: flex;
    gap: 30px;
}

nav a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 400;
    transition: color 0.3s;
}

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

.hero {
    padding: 100px 0;
    text-align: center;
    background: linear-gradient(180deg, var(--bg-darker) 0%, var(--bg-dark) 100%);
    border-bottom: 1px solid var(--border-color);
}

h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--primary-color);
}

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

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: var(--primary-color);
    color: var(--bg-dark);
    padding: 16px 32px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 18px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 229, 255, 0.3);
}

.cta-button {
    will-change: transform;
}

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

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

.icon-whatsapp::after {
    content: '';
    position: absolute;
    top: 6px;
    right: 5px;
    width: 6px;
    height: 6px;
    background-color: var(--primary-color);
    border-radius: 50%;
}

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

.section-dark {
    background-color: var(--bg-darker);
}

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

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

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

.benefit-card {
    text-align: center;
    padding: 30px;
    background-color: rgba(0, 229, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(0, 229, 255, 0.2);
    transition: transform 0.3s, border-color 0.3s;
}

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

.icon-circle {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, rgba(0, 229, 255, 0.2), rgba(0, 184, 212, 0.2));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--primary-color);
}

.icon-rocket {
    width: 0;
    height: 0;
    border-left: 12px solid transparent;
    border-right: 12px solid transparent;
    border-bottom: 30px solid var(--primary-color);
    position: relative;
}

.icon-rocket::after {
    content: '';
    position: absolute;
    bottom: -35px;
    left: -6px;
    width: 12px;
    height: 12px;
    background-color: var(--primary-color);
    border-radius: 50%;
}

.icon-quality {
    width: 40px;
    height: 40px;
    border: 3px solid var(--primary-color);
    border-radius: 8px;
    position: relative;
}

.icon-quality::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    background-color: var(--primary-color);
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
}

.icon-channels {
    width: 40px;
    height: 30px;
    border: 3px solid var(--primary-color);
    border-radius: 4px;
    position: relative;
}

.icon-channels::before {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 3px;
    background-color: var(--primary-color);
}

.icon-channels::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 3px;
    background-color: var(--primary-color);
}

.icon-automation {
    width: 40px;
    height: 40px;
    border: 3px solid var(--primary-color);
    border-radius: 50%;
    position: relative;
}

.icon-automation::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
    width: 20px;
    height: 3px;
    background-color: var(--primary-color);
}

.icon-automation::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-45deg);
    width: 20px;
    height: 3px;
    background-color: var(--primary-color);
}

.benefit-card h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--text-light);
}

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

.cta-center {
    text-align: center;
    margin-top: 50px;
}

.steps-container {
    max-width: 800px;
    margin: 0 auto 50px;
}

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

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

.step-content h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--text-light);
}

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

.advantages-list {
    max-width: 900px;
    margin: 0 auto 50px;
}

.advantage-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    align-items: flex-start;
}

.advantage-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(0, 229, 255, 0.2), rgba(0, 184, 212, 0.2));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--primary-color);
    flex-shrink: 0;
}

.icon-check {
    width: 20px;
    height: 12px;
    border-left: 3px solid var(--primary-color);
    border-bottom: 3px solid var(--primary-color);
    transform: rotate(-45deg);
    margin-top: -5px;
}

.advantage-text h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-light);
}

.advantage-text p {
    color: var(--text-gray);
    font-size: 16px;
}

@media (max-width: 768px) {
    nav {
        display: none;
    }
    
    h1 {
        font-size: 32px;
    }
    
    h2 {
        font-size: 28px;
    }
    
    .hero {
        padding: 60px 0;
    }
    
    .section {
        padding: 50px 0;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .step {
        flex-direction: column;
        gap: 15px;
    }
}

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

.feature-box {
    padding: 30px;
    background-color: rgba(0, 229, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(0, 229, 255, 0.2);
    text-align: center;
    transition: transform 0.3s, border-color 0.3s;
}

.feature-box:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
}

.feature-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, rgba(0, 229, 255, 0.2), rgba(0, 184, 212, 0.2));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--primary-color);
}

.icon-hd {
    width: 35px;
    height: 25px;
    border: 2px solid var(--primary-color);
    border-radius: 4px;
    position: relative;
}

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

.icon-device {
    width: 30px;
    height: 20px;
    border: 2px solid var(--primary-color);
    border-radius: 3px;
}

.icon-device::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%);
    width: 15px;
    height: 2px;
    background-color: var(--primary-color);
}

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

.icon-globe::before {
    content: '';
    position: absolute;
    top: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 39px;
    background-color: var(--primary-color);
}

.icon-globe::after {
    content: '';
    position: absolute;
    top: 50%;
    left: -2px;
    transform: translateY(-50%);
    width: 39px;
    height: 2px;
    background-color: var(--primary-color);
}

.icon-speed {
    width: 35px;
    height: 35px;
    border: 3px solid var(--primary-color);
    border-radius: 50%;
    border-right-color: transparent;
    border-top-color: transparent;
    transform: rotate(-45deg);
}

.icon-vod {
    width: 35px;
    height: 25px;
    border: 2px solid var(--primary-color);
    border-radius: 4px;
    position: relative;
}

.icon-vod::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-40%, -50%);
    width: 0;
    height: 0;
    border-left: 10px solid var(--primary-color);
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
}

.icon-epg {
    width: 35px;
    height: 30px;
    border: 2px solid var(--primary-color);
    border-radius: 4px;
    position: relative;
}

.icon-epg::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 5px;
    width: 21px;
    height: 2px;
    background-color: var(--primary-color);
}

.icon-epg::after {
    content: '';
    position: absolute;
    top: 15px;
    left: 5px;
    width: 21px;
    height: 2px;
    background-color: var(--primary-color);
}

.feature-box h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-light);
}

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

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

.plan-card {
    background-color: rgba(0, 229, 255, 0.05);
    border: 1px solid rgba(0, 229, 255, 0.2);
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s, border-color 0.3s;
    position: relative;
}

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

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

.plan-featured:hover {
    transform: scale(1.08) translateY(-5px);
}

.plan-badge {
    position: absolute;
    top: 20px;
    right: -30px;
    background-color: var(--primary-color);
    color: var(--bg-dark);
    padding: 5px 40px;
    font-weight: 600;
    font-size: 14px;
    transform: rotate(45deg);
    z-index: 1;
}

.plan-header {
    padding: 30px;
    text-align: center;
    background: linear-gradient(135deg, rgba(0, 229, 255, 0.1), rgba(0, 184, 212, 0.1));
    border-bottom: 1px solid rgba(0, 229, 255, 0.2);
}

.plan-header h3 {
    font-size: 26px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.plan-period {
    font-size: 16px;
    color: var(--text-gray);
    margin-bottom: 10px;
}

.plan-discount {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--bg-dark);
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 14px;
    margin-top: 10px;
}

.plan-body {
    padding: 30px;
}

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

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

.plan-features li {
    padding: 12px 0;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid rgba(0, 229, 255, 0.1);
}

.plan-features li:last-child {
    border-bottom: none;
}

.check-icon {
    width: 20px;
    height: 20px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
}

.check-icon::before {
    content: '';
    position: absolute;
    width: 8px;
    height: 4px;
    border-left: 2px solid var(--bg-dark);
    border-bottom: 2px solid var(--bg-dark);
    transform: rotate(-45deg);
    margin-top: -2px;
}

.plan-footer {
    padding: 30px;
    text-align: center;
}

.plan-button {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--bg-dark);
    padding: 14px 30px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.plan-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 229, 255, 0.3);
}

.differentials-container {
    max-width: 900px;
    margin: 0 auto 50px;
}

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

.diff-number {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), #00b8d4);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    color: var(--bg-dark);
    flex-shrink: 0;
}

.diff-content h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-light);
}

.diff-content p {
    color: var(--text-gray);
    font-size: 16px;
}

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

.device-card {
    text-align: center;
    padding: 30px 20px;
    background-color: rgba(0, 229, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(0, 229, 255, 0.2);
    transition: transform 0.3s, border-color 0.3s;
}

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

.device-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, rgba(0, 229, 255, 0.2), rgba(0, 184, 212, 0.2));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--primary-color);
}

.icon-tv {
    width: 35px;
    height: 25px;
    border: 2px solid var(--primary-color);
    border-radius: 3px;
    position: relative;
}

.icon-tv::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 2px;
    background-color: var(--primary-color);
}

.icon-mobile {
    width: 20px;
    height: 32px;
    border: 2px solid var(--primary-color);
    border-radius: 4px;
    position: relative;
}

.icon-mobile::after {
    content: '';
    position: absolute;
    bottom: 3px;
    left: 50%;
    transform: translateX(-50%);
    width: 8px;
    height: 2px;
    background-color: var(--primary-color);
}

.icon-tablet {
    width: 28px;
    height: 35px;
    border: 2px solid var(--primary-color);
    border-radius: 4px;
    position: relative;
}

.icon-tablet::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 50%;
    transform: translateX(-50%);
    width: 10px;
    height: 2px;
    background-color: var(--primary-color);
}

.icon-computer {
    width: 35px;
    height: 22px;
    border: 2px solid var(--primary-color);
    border-radius: 2px;
    position: relative;
}

.icon-computer::before {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 6px;
    background-color: var(--primary-color);
}

.icon-computer::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 2px;
    background-color: var(--primary-color);
}

.icon-tvbox {
    width: 30px;
    height: 20px;
    border: 2px solid var(--primary-color);
    border-radius: 4px;
    position: relative;
}

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

.device-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--text-light);
}

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

@media (max-width: 768px) {
    .plans-grid {
        grid-template-columns: 1fr;
    }
    
    .plan-featured {
        transform: scale(1);
    }
    
    .plan-featured:hover {
        transform: translateY(-5px);
    }
    
    .differential-item {
        flex-direction: column;
        gap: 15px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
}

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

.review-card {
    background-color: rgba(0, 229, 255, 0.05);
    border: 1px solid rgba(0, 229, 255, 0.2);
    border-radius: 12px;
    padding: 25px;
    transition: transform 0.3s, border-color 0.3s;
}

.review-card:hover {
    transform: translateY(-3px);
    border-color: var(--primary-color);
}

.review-header {
    margin-bottom: 15px;
}

.review-header h3 {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 8px;
}

.review-stars {
    color: var(--primary-color);
    font-size: 18px;
    letter-spacing: 2px;
}

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

.faq-container {
    max-width: 900px;
    margin: 0 auto 50px;
}

.faq-item {
    background-color: rgba(0, 229, 255, 0.05);
    border: 1px solid rgba(0, 229, 255, 0.2);
    border-radius: 12px;
    margin-bottom: 15px;
    overflow: hidden;
    transition: border-color 0.3s;
}

.faq-item:hover {
    border-color: var(--primary-color);
}

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

.faq-question:hover {
    background-color: rgba(0, 229, 255, 0.08);
}

.faq-question h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-light);
    margin: 0;
}

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

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease-out;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 25px 25px;
}

.faq-answer p {
    color: var(--text-gray);
    font-size: 16px;
    line-height: 1.7;
    margin: 0;
}

.cta-final-content {
    text-align: center;
    padding: 60px 20px;
}

.cta-final-content h2 {
    font-size: 42px;
    margin-bottom: 20px;
}

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

.cta-large {
    font-size: 20px;
    padding: 20px 40px;
}

footer {
    background-color: var(--bg-darker);
    padding: 50px 0 20px;
    border-top: 1px solid var(--border-color);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

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

.footer-links h3 {
    color: var(--primary-color);
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    text-align: left;
}

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

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

.footer-links ul li a {
    color: var(--text-gray);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links ul li a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(0, 229, 255, 0.2);
}

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

@media (max-width: 768px) {
    .reviews-grid {
        grid-template-columns: 1fr;
    }
    
    .faq-question h3 {
        font-size: 16px;
    }
    
    .cta-final-content h2 {
        font-size: 32px;
    }
    
    .cta-final-content p {
        font-size: 18px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}
