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

:root {
    --bg-dark: #2c2c2c;
    --bg-darker: #1a1a1a;
    --pink: #ff69b4;
    --pink-light: #ffb6d9;
    --pink-dark: #d4478f;
    --text-light: #ffffff;
    --text-gray: #cccccc;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
}

#particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

header {
    background-color: rgba(26, 26, 26, 0.95);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(255, 105, 180, 0.3);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 26px;
    font-weight: 800;
    color: var(--text-light);
    font-family: 'Arial Black', 'Arial Bold', sans-serif;
    letter-spacing: 1px;
}

.logo span {
    background: linear-gradient(135deg, var(--pink), var(--pink-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
}

.logo-icon {
    width: 50px;
    height: 50px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.08);
    }
}

.logo-icon::before {
    content: '';
    position: absolute;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--pink), var(--pink-dark));
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(255, 105, 180, 0.5);
    animation: glow 2s ease-in-out infinite;
}

@keyframes glow {
    0%, 100% {
        box-shadow: 0 5px 20px rgba(255, 105, 180, 0.5);
    }
    50% {
        box-shadow: 0 5px 30px rgba(255, 105, 180, 0.8), 0 0 40px rgba(255, 105, 180, 0.4);
    }
}

.logo-icon::after {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 12px 0 12px 20px;
    border-color: transparent transparent transparent var(--text-light);
    z-index: 1;
    animation: playPulse 1.5s ease-in-out infinite;
    margin-left: 3px;
}

@keyframes playPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.9;
    }
}

.logo-icon .signal {
    position: absolute;
    width: 8px;
    height: 8px;
    background: var(--pink-light);
    border-radius: 50%;
    top: 8px;
    right: 8px;
    z-index: 2;
    animation: blink 1s ease-in-out infinite;
}

@keyframes blink {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.3;
        transform: scale(0.8);
    }
}

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

.menu-toggle span {
    width: 28px;
    height: 3px;
    background: var(--pink);
    border-radius: 3px;
    transition: all 0.3s;
}

.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);
}

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

.nav-menu a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: var(--pink);
}

section {
    padding: 80px 0;
    position: relative;
}

h1 {
    font-size: 48px;
    margin-bottom: 20px;
    color: var(--text-light);
}

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

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

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.hero-card {
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.9), rgba(44, 44, 44, 0.9));
    padding: 60px;
    border-radius: 30px;
    text-align: center;
    box-shadow: inset 0 0 20px rgba(255, 105, 180, 0.4), 0 10px 40px rgba(0, 0, 0, 0.5);
    animation: heroSlide 1s ease-out;
    max-width: 800px;
}

@keyframes heroSlide {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

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

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

.btn {
    display: inline-block;
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s;
    cursor: pointer;
    border: none;
    font-size: 16px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--pink), var(--pink-dark));
    color: var(--text-light);
    box-shadow: 0 5px 15px rgba(255, 105, 180, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 105, 180, 0.6);
}

.btn-secondary {
    background: transparent;
    color: var(--pink);
    border: 2px solid var(--pink);
}

.btn-secondary:hover {
    background: var(--pink);
    color: var(--text-light);
}

.btn-large {
    padding: 20px 50px;
    font-size: 18px;
}

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

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

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

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

.card {
    background: rgba(26, 26, 26, 0.8);
    padding: 40px;
    border-radius: 25px;
    box-shadow: inset 0 0 8px rgba(255, 105, 180, 0.3), 0 5px 20px rgba(0, 0, 0, 0.3);
    transition: all 0.3s;
    text-align: center;
}

.card:hover {
    transform: scale(1.05);
    box-shadow: inset 0 0 15px rgba(255, 105, 180, 0.5), 0 10px 30px rgba(0, 0, 0, 0.5);
}

.card p {
    color: var(--text-gray);
    line-height: 1.8;
}

.icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--pink), var(--pink-dark));
    box-shadow: 0 5px 15px rgba(255, 105, 180, 0.4);
    position: relative;
}

.icon::before {
    content: '';
    position: absolute;
    width: 40px;
    height: 40px;
    background: var(--text-light);
}

.icon-speed::before {
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
}

.icon-quality::before {
    clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
}

.icon-channels::before {
    border-radius: 5px;
    width: 35px;
    height: 25px;
}

.icon-auto::before {
    clip-path: polygon(20% 0%, 80% 0%, 100% 100%, 0% 100%);
}

.icon-device::before {
    border-radius: 3px;
    width: 30px;
    height: 35px;
}

.icon-stable::before {
    clip-path: polygon(0% 100%, 25% 0%, 50% 100%, 75% 0%, 100% 100%);
    width: 45px;
}

.icon-support::before {
    clip-path: circle(40%);
}

.icon-test::before {
    clip-path: polygon(50% 0%, 100% 38%, 82% 100%, 18% 100%, 0% 38%);
}

.icon-easy::before {
    clip-path: polygon(50% 0%, 90% 20%, 100% 60%, 75% 100%, 25% 100%, 0% 60%, 10% 20%);
}

.icon-complete::before {
    border-radius: 50%;
    width: 35px;
    height: 35px;
}

.icon-decision::before {
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}

.icon-tv::before {
    border-radius: 5px;
    width: 40px;
    height: 30px;
}

.icon-movie::before {
    clip-path: polygon(0% 20%, 100% 20%, 100% 80%, 0% 80%);
    width: 40px;
}

.icon-series::before {
    clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
    width: 25px;
    height: 35px;
}

.icon-sports::before {
    clip-path: circle(50%);
    width: 35px;
    height: 35px;
}

.icon-hd::before {
    clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
}

.icon-server::before {
    border-radius: 3px;
    width: 35px;
    height: 40px;
}

.icon-update::before {
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 50% 60%, 0% 60%, 0% 40%, 50% 40%);
}

.icon-flexible::before {
    clip-path: polygon(30% 0%, 70% 0%, 100% 30%, 100% 70%, 70% 100%, 30% 100%, 0% 70%, 0% 30%);
}

.icon-real::before {
    clip-path: polygon(50% 0%, 65% 35%, 100% 35%, 75% 57%, 85% 100%, 50% 75%, 15% 100%, 25% 57%, 0% 35%, 35% 35%);
}

.icon-kids::before {
    clip-path: polygon(50% 0%, 80% 10%, 100% 40%, 90% 70%, 60% 90%, 40% 90%, 10% 70%, 0% 40%, 20% 10%);
}

.icon-news::before {
    border-radius: 2px;
    width: 32px;
    height: 38px;
}

.icon-doc::before {
    clip-path: polygon(0% 0%, 75% 0%, 100% 25%, 100% 100%, 0% 100%);
    width: 30px;
    height: 38px;
}

.icon-music::before {
    clip-path: circle(45%);
    width: 32px;
    height: 32px;
}

.icon-variety::before {
    clip-path: polygon(25% 0%, 75% 0%, 100% 25%, 100% 75%, 75% 100%, 25% 100%, 0% 75%, 0% 25%);
}

.beneficios {
    background: linear-gradient(180deg, var(--bg-dark), var(--bg-darker));
}

.steps {
    max-width: 800px;
    margin: 40px auto;
}

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

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--pink), var(--pink-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: bold;
    flex-shrink: 0;
    box-shadow: 0 5px 15px rgba(255, 105, 180, 0.4);
}

.step-content {
    flex: 1;
}

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

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

.diferenciais {
    background: var(--bg-darker);
}

.content-showcase {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 40px;
}

.content-card {
    background: rgba(26, 26, 26, 0.8);
    padding: 35px 25px;
    border-radius: 20px;
    text-align: center;
    box-shadow: inset 0 0 8px rgba(255, 105, 180, 0.3), 0 5px 20px rgba(0, 0, 0, 0.3);
    transition: all 0.3s;
    border: 1px solid rgba(255, 105, 180, 0.1);
}

.content-card:hover {
    transform: translateY(-8px);
    box-shadow: inset 0 0 15px rgba(255, 105, 180, 0.5), 0 10px 30px rgba(255, 105, 180, 0.3);
    border-color: rgba(255, 105, 180, 0.3);
}

.content-card .icon {
    margin-bottom: 20px;
}

.content-card h3 {
    margin-bottom: 12px;
    font-size: 20px;
}

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

@media (max-width: 1024px) {
    .content-showcase {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

.plan-card {
    position: relative;
    overflow: visible;
}

.plan-card.featured {
    transform: scale(1.05);
    box-shadow: inset 0 0 15px rgba(255, 105, 180, 0.5), 0 10px 40px rgba(255, 105, 180, 0.3);
}

.badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background: linear-gradient(135deg, var(--pink), var(--pink-dark));
    color: var(--text-light);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: bold;
    box-shadow: 0 3px 10px rgba(255, 105, 180, 0.5);
}

.plan-price {
    margin: 30px 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.discount {
    font-size: 24px;
    font-weight: bold;
    color: var(--pink);
}

.price-label {
    font-size: 18px;
    color: var(--text-gray);
}

.plan-features {
    list-style: none;
    margin: 30px 0;
    text-align: left;
}

.plan-features li {
    padding: 12px 0;
    color: var(--text-gray);
    border-bottom: 1px solid rgba(255, 105, 180, 0.2);
    position: relative;
    padding-left: 30px;
}

.plan-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--pink);
    font-weight: bold;
    font-size: 18px;
}

.section-subtitle {
    text-align: center;
    color: var(--text-gray);
    font-size: 18px;
    margin-top: -20px;
    margin-bottom: 40px;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.review-card {
    background: rgba(26, 26, 26, 0.8);
    padding: 30px;
    border-radius: 20px;
    box-shadow: inset 0 0 8px rgba(255, 105, 180, 0.3), 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.3s;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: inset 0 0 12px rgba(255, 105, 180, 0.4), 0 8px 25px rgba(0, 0, 0, 0.4);
}

.stars {
    color: var(--pink);
    font-size: 20px;
    margin-bottom: 15px;
}

.review-card p {
    color: var(--text-gray);
    font-style: italic;
    margin-bottom: 15px;
    line-height: 1.6;
}

.review-card h3 {
    font-size: 16px;
    color: var(--pink-light);
    font-weight: normal;
}

.avaliacoes {
    background: linear-gradient(180deg, var(--bg-darker), var(--bg-dark));
}

.garantia {
    background: var(--bg-darker);
}

.faq {
    background: var(--bg-dark);
}

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

.faq-item {
    margin-bottom: 20px;
    background: rgba(26, 26, 26, 0.8);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: inset 0 0 8px rgba(255, 105, 180, 0.2), 0 3px 10px rgba(0, 0, 0, 0.3);
}

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

.faq-question:hover {
    background: rgba(255, 105, 180, 0.1);
}

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

.faq-icon {
    font-size: 28px;
    color: var(--pink);
    transition: transform 0.3s;
    margin-left: 20px;
}

.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;
    padding: 0 25px;
}

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

.faq-answer p {
    color: var(--text-gray);
    line-height: 1.8;
}

.cta-final {
    background: linear-gradient(135deg, var(--pink-dark), var(--pink));
    text-align: center;
    padding: 100px 0;
}

.cta-final h2 {
    color: var(--text-light);
    font-size: 42px;
}

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

footer {
    background: var(--bg-darker);
    padding: 40px 0 20px;
    border-top: 2px solid rgba(255, 105, 180, 0.3);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    flex-wrap: wrap;
    gap: 20px;
}

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

.footer-logo span {
    font-size: 20px;
    font-weight: 800;
    font-family: 'Arial Black', 'Arial Bold', sans-serif;
    letter-spacing: 1px;
    background: linear-gradient(135deg, var(--pink), var(--pink-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-logo-icon {
    width: 40px;
    height: 40px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.footer-logo-icon::before {
    content: '';
    position: absolute;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--pink), var(--pink-dark));
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(255, 105, 180, 0.4);
}

.footer-logo-icon::after {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 10px 0 10px 16px;
    border-color: transparent transparent transparent var(--text-light);
    z-index: 1;
    margin-left: 2px;
}

.footer-logo-icon .signal {
    position: absolute;
    width: 7px;
    height: 7px;
    background: var(--pink-light);
    border-radius: 50%;
    top: 6px;
    right: 6px;
    z-index: 2;
}

.footer-links {
    display: flex;
    gap: 30px;
}

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

.footer-links a:hover {
    color: var(--pink);
}

.footer-copy {
    text-align: center;
    color: var(--text-gray);
    font-size: 14px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 105, 180, 0.2);
}

@media (max-width: 768px) {
    h1 {
        font-size: 32px;
    }
    
    h2 {
        font-size: 28px;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 80px;
        right: -100%;
        width: 280px;
        height: calc(100vh - 80px);
        background: rgba(26, 26, 26, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        gap: 0;
        padding: 30px 0;
        transition: right 0.3s ease;
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.5);
        z-index: 100;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-menu a {
        padding: 20px 30px;
        border-bottom: 1px solid rgba(255, 105, 180, 0.1);
    }
    
    .nav-menu a:hover {
        background: rgba(255, 105, 180, 0.1);
    }
    
    .hero-card {
        padding: 40px 30px;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
        text-align: center;
    }
    
    .step {
        flex-direction: column;
        text-align: center;
    }
    
    .step-number {
        margin: 0 auto;
    }
    
    .grid, .grid-2, .grid-3, .grid-4 {
        grid-template-columns: 1fr;
    }
    
    .plan-card.featured {
        transform: scale(1);
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 15px;
    }
}

@media (max-width: 480px) {
    section {
        padding: 60px 0;
    }
    
    .card {
        padding: 30px 20px;
    }
    
    .hero-card {
        padding: 30px 20px;
    }
    
    h1 {
        font-size: 28px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
}

.fade-in {
    opacity: 0;
    animation: fadeIn 0.6s ease-out forwards;
}

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