/* =========================================================================
   STYLE.CSS - COMANDO TI IPTV V2 (Wix-Killer)
   ========================================================================= */

:root {
    /* Cores mais vibrantes e neon */
    --bg-primary:   #0a0f1d;
    --bg-secondary: #121a2f;
    --bg-card:      #1a243d;
    --accent:       #00ff66; /* Verde Neon */
    --accent-dark:  #00cc52;
    --accent-purple:#8a2be2; /* Roxo vibrante para contraste */
    --text-primary: #ffffff;
    --text-muted:   #cbd5e1;
    --border:       #2d3748;
    --radius:       16px;
    --shadow:       0 15px 35px rgba(0, 0, 0, 0.6);
    --shadow-neon:  0 0 20px rgba(0, 255, 102, 0.4);
    --font-head:    'Sora', sans-serif;
    --font-body:    'Inter', sans-serif;
}

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

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

h1, h2, h3, h4, h5, h6, .logo-text {
    font-family: var(--font-head);
    font-weight: 800;
}

a {
    text-decoration: none;
    color: var(--accent);
    transition: all 0.3s ease;
}

a:hover {
    color: #fff;
    text-shadow: 0 0 10px var(--accent);
}

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

/* =======================================
   HEADER & NAVIGATION
   ======================================= */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(10, 15, 29, 0.95);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 2px solid var(--accent-purple);
    padding: 15px 0;
    box-shadow: 0 4px 30px rgba(138, 43, 226, 0.2);
}

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

.logo-text {
    font-size: 1.8rem;
    color: #fff;
    letter-spacing: -0.5px;
    text-transform: uppercase;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.logo-text span {
    color: var(--accent);
}

.main-nav ul {
    display: flex;
    gap: 30px;
    list-style: none;
}

.main-nav a {
    color: #fff;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

/* =======================================
   BUTTONS (MASSIVE CTAS)
   ======================================= */
.btn-primary {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(45deg, var(--accent-dark), var(--accent));
    color: #000;
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 1.1rem;
    font-family: var(--font-head);
    box-shadow: var(--shadow-neon);
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 0 30px rgba(0, 255, 102, 0.6);
    color: #000;
    text-shadow: none;
}

.btn-large {
    padding: 20px 50px;
    font-size: 1.3rem;
    width: 100%;
    max-width: 400px;
}

.btn-wp {
    gap: 12px;
}

.btn-wp svg {
    fill: #000;
}

/* =======================================
   FLOATING WHATSAPP BUTTON
   ======================================= */
.floating-wp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 65px;
    height: 65px;
    background-color: #25D366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 10px 20px rgba(0,0,0,0.4), 0 0 20px rgba(37, 211, 102, 0.6);
    z-index: 9999;
    transition: transform 0.3s ease;
}

.floating-wp svg {
    width: 35px;
    height: 35px;
    fill: #fff;
}

.floating-wp:hover {
    transform: scale(1.15) rotate(10deg);
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(0, 255, 102, 0.7); }
    70% { box-shadow: 0 0 0 20px rgba(0, 255, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(0, 255, 102, 0); }
}

.animate-pulse {
    animation: pulse 2s infinite;
}

/* =======================================
   HERO SECTION
   ======================================= */
.hero-section {
    padding: 100px 0;
    background: radial-gradient(circle at top right, var(--bg-secondary) 0%, var(--bg-primary) 100%);
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -50%; left: -50%; width: 200%; height: 200%;
    background: radial-gradient(circle, rgba(138,43,226,0.1) 0%, transparent 50%);
    z-index: 0;
    pointer-events: none;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 25px;
    background: -webkit-linear-gradient(#fff, #cbd5e1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-content h1 span {
    background: -webkit-linear-gradient(var(--accent), #00b347);
    -webkit-background-clip: text;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 35px;
}

.badge-premium {
    display: inline-block;
    background: rgba(138, 43, 226, 0.2);
    color: #e2baff;
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 20px;
    border: 1px solid rgba(138, 43, 226, 0.5);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-badges {
    margin-top: 35px;
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.badge-item {
    background: rgba(255,255,255,0.05);
    padding: 10px 20px;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.1);
    font-weight: 600;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.badge-item i { color: var(--accent); }

.hero-image img {
    width: 100%;
    border-radius: var(--radius);
    box-shadow: 0 20px 50px rgba(0,0,0,0.8), 0 0 30px rgba(138,43,226,0.3);
    border: 2px solid rgba(255,255,255,0.1);
}

/* =======================================
   SECTIONS & TYPOGRAPHY
   ======================================= */
.section-dark { background-color: var(--bg-primary); padding: 100px 0; }
.section-light { background-color: var(--bg-secondary); padding: 100px 0; }
.section-purple { background: linear-gradient(135deg, #1a0b2e 0%, #0a0f1d 100%); padding: 100px 0; border-top: 1px solid rgba(138,43,226,0.3); border-bottom: 1px solid rgba(138,43,226,0.3); }

.section-title {
    font-size: 2.8rem;
    margin-bottom: 20px;
    color: #fff;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

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

/* =======================================
   CARDS (STEPS, DEVICES, REVIEWS)
   ======================================= */
.steps-grid, .devices-grid, .feature-grid, .reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.step-card, .device-card, .review-card {
    background: var(--bg-card);
    border: 1px solid rgba(255,255,255,0.05);
    padding: 40px 30px;
    border-radius: var(--radius);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.step-card::before, .device-card::before {
    content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 4px;
    background: linear-gradient(90deg, var(--accent), var(--accent-purple));
    transform: scaleX(0); transition: transform 0.4s ease; transform-origin: left;
}

.step-card:hover::before, .device-card:hover::before { transform: scaleX(1); }
.step-card:hover, .device-card:hover, .review-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
    background: #1f2a47;
}

.step-icon {
    width: 60px; height: 60px;
    background: linear-gradient(45deg, var(--accent-dark), var(--accent));
    color: #000;
    display: flex; align-items: center; justify-content: center;
    border-radius: 50%; font-size: 1.8rem; font-weight: 800;
    margin: 0 auto 25px; box-shadow: var(--shadow-neon);
}

.review-card .stars {
    color: #fbbf24; font-size: 1.2rem; margin-bottom: 15px; letter-spacing: 2px;
}

.review-card h4 { margin-bottom: 10px; color: #fff; }
.review-card p { font-style: italic; color: var(--text-muted); }

/* =======================================
   PRICING TABLE
   ======================================= */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.pricing-card {
    background: var(--bg-card);
    border: 2px solid rgba(255,255,255,0.05);
    border-radius: var(--radius);
    padding: 50px 30px;
    text-align: center;
    transition: transform 0.3s ease;
    position: relative;
}

.pricing-card.popular {
    border-color: var(--accent);
    transform: scale(1.05);
    background: linear-gradient(to bottom, #16243d 0%, var(--bg-card) 100%);
    box-shadow: 0 0 30px rgba(0, 255, 102, 0.1);
}

.popular-badge {
    position: absolute; top: -15px; left: 50%; transform: translateX(-50%);
    background: var(--accent); color: #000; font-weight: 800; text-transform: uppercase;
    padding: 5px 20px; border-radius: 20px; font-size: 0.85rem; letter-spacing: 1px;
}

.pricing-card h3 { font-size: 1.8rem; margin-bottom: 15px; }
.pricing-card .price { font-size: 3.5rem; font-weight: 800; color: #fff; margin-bottom: 20px; }
.pricing-card .price span { font-size: 1.2rem; color: var(--text-muted); }
.pricing-card ul { list-style: none; margin-bottom: 40px; text-align: left; }
.pricing-card li { margin-bottom: 15px; border-bottom: 1px solid rgba(255,255,255,0.05); padding-bottom: 15px; display: flex; align-items: center; gap: 10px; }
.pricing-card li::before { content: '✓'; color: var(--accent); font-weight: 900; }
.pricing-card .btn-primary { width: 100%; font-size: 1rem; padding: 15px 0; }

/* =======================================
   IMAGES & CONTENT
   ======================================= */
.content-text h3 { margin: 40px 0 20px; font-size: 1.8rem; color: #fff; }
.content-text p, .content-features p { margin-bottom: 20px; color: var(--text-muted); font-size: 1.1rem; }
.content-text ul { margin-left: 20px; color: var(--text-muted); margin-bottom: 20px; font-size: 1.1rem; }
.content-text li { margin-bottom: 10px; }
.content-image img { width: 100%; border-radius: var(--radius); box-shadow: var(--shadow); border: 1px solid rgba(255,255,255,0.1); }

/* =======================================
   FAQ ACCORDION
   ======================================= */
.faq-section { max-width: 900px; margin: 0 auto; }
.accordion-item {
    background: var(--bg-card); border: 1px solid rgba(255,255,255,0.05);
    border-radius: 10px; margin-bottom: 15px; overflow: hidden;
}
.accordion-header {
    width: 100%; text-align: left; padding: 25px; background: none; border: none;
    color: #fff; font-family: var(--font-head); font-weight: 700; font-size: 1.2rem;
    cursor: pointer; display: flex; justify-content: space-between; align-items: center;
}
.accordion-header::after {
    content: '+'; font-size: 2rem; color: var(--accent); transition: transform 0.3s ease;
}
.accordion-header.active::after { content: '-'; transform: rotate(180deg); }
.accordion-content { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; padding: 0 25px; color: var(--text-muted); font-size: 1.1rem; }
.accordion-content p { padding-bottom: 25px; }

/* =======================================
   GIANT CTA
   ======================================= */
.cta-section {
    padding: 120px 0;
    background: linear-gradient(135deg, rgba(0,255,102,0.1) 0%, rgba(138,43,226,0.1) 100%), var(--bg-card);
    border-top: 1px solid rgba(255,255,255,0.05);
}
.cta-section h2 { font-size: 3rem; margin-bottom: 25px; }
.cta-section p { font-size: 1.2rem; color: var(--text-muted); margin-bottom: 40px; }

/* =======================================
   MASSIVE FOOTER
   ======================================= */
.site-footer {
    background: #050810;
    padding: 80px 0 30px;
    border-top: 4px solid var(--accent-purple);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 50px;
    margin-bottom: 60px;
}

.footer-brand p { color: var(--text-muted); margin-top: 20px; font-size: 1rem; max-width: 350px; }
.footer-links h4, .footer-contact h4 { margin-bottom: 25px; font-family: var(--font-head); color: #fff; font-size: 1.3rem; }
.footer-links ul { list-style: none; }
.footer-links li { margin-bottom: 15px; }
.footer-links a { color: var(--text-muted); transition: padding-left 0.3s ease, color 0.3s ease; }
.footer-links a:hover { color: var(--accent); padding-left: 5px; }

.security-badges { margin-top: 25px; display: flex; gap: 10px; flex-wrap: wrap; }
.badge-pay { display: inline-block; padding: 5px 12px; border: 1px solid rgba(255,255,255,0.2); border-radius: 6px; font-size: 0.75rem; font-weight: 600; color: rgba(255,255,255,0.6); letter-spacing: 0.05em; }

.footer-bottom {
    text-align: center; padding-top: 30px; border-top: 1px solid rgba(255,255,255,0.05);
    color: #64748b; font-size: 0.95rem;
}

/* =======================================
   MEDIA QUERIES
   ======================================= */
@media (max-width: 1024px) {
    .pricing-card.popular { transform: none; }
    .hero-grid, .grid-2 { grid-template-columns: 1fr; }
    .hero-content { text-align: center; }
    .hero-badges { justify-content: center; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .pricing-grid { grid-template-columns: 1fr; max-width: 400px; }
}

@media (max-width: 768px) {
    .header-inner { flex-direction: column; gap: 15px; }
    .main-nav ul { flex-wrap: wrap; justify-content: center; gap: 15px; }
    .hero-content h1 { font-size: 2.3rem; }
    .section-title { font-size: 2rem; }
    .footer-grid { grid-template-columns: 1fr; text-align: center; }
    .footer-brand p { margin: 20px auto; }
    .security-badges { justify-content: center; }
    .btn-large { padding: 15px 30px; font-size: 1.1rem; }
    .floating-wp { width: 55px; height: 55px; bottom: 20px; right: 20px; }
}
