/* style.css - Premium IPTV Aesthetic */
:root {
    --bg-main: #0b0f1a;
    --bg-alt: #12182b;
    --bg-card: #1c243f;
    --primary: #ff3366;
    --primary-hover: #e62050;
    --secondary: #4facfe;
    --secondary-alt: #00f2fe;
    --text-main: #f8f9fa;
    --text-muted: #a0aec0;
    --border: rgba(255, 255, 255, 0.1);
}

* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Inter', sans-serif; }
html { scroll-behavior: smooth; }
body { background-color: var(--bg-main); color: var(--text-main); line-height: 1.6; font-size: 16px; overflow-x: hidden; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
a { text-decoration: none; color: inherit; transition: all 0.3s ease; }
ul { list-style: none; }

/* Buttons */
.btn { display: inline-flex; align-items: center; justify-content: center; padding: 12px 24px; border-radius: 8px; font-weight: 600; cursor: pointer; transition: all 0.3s ease; border: 2px solid transparent; text-align: center; }
.btn-lg { padding: 16px 32px; font-size: 1.1rem; }
.btn-primary { background: var(--primary); color: #fff; box-shadow: 0 4px 15px rgba(255, 51, 102, 0.3); }
.btn-primary:hover { background: var(--primary-hover); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(255, 51, 102, 0.4); }
.btn-ghost { background: rgba(255,255,255,0.1); color: #fff; border: 2px solid rgba(255,255,255,0.2); backdrop-filter: blur(5px); }
.btn-ghost:hover { background: rgba(255,255,255,0.2); }
.btn-outline { background: transparent; color: var(--primary); border-color: var(--primary); }
.btn-outline:hover { background: var(--primary); color: #fff; }
.btn-whatsapp { display: inline-block; background: #25D366; color: #fff; font-weight: 700; text-decoration: none; box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4); transition: transform 0.3s ease; }
.btn-whatsapp:hover { transform: scale(1.05); }

/* Header */
.header { background: rgba(11, 15, 26, 0.8); backdrop-filter: blur(10px); padding: 15px 0; border-bottom: 1px solid var(--border); position: sticky; top: 0; z-index: 1000; }
.nav-container { display: flex; justify-content: space-between; align-items: center; }
.logo img { height: 45px; }
.nav { display: flex; gap: 30px; }
.nav a { color: var(--text-main); font-weight: 500; font-size: 0.95rem; }
.nav a:hover { color: var(--primary); }

/* Hero Section */
.hero { position: relative; min-height: 80vh; display: flex; align-items: center; padding: 60px 0; overflow: hidden; }
.hero-bg { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0.2; z-index: 0; mask-image: linear-gradient(to bottom, black 50%, transparent 100%); -webkit-mask-image: linear-gradient(to bottom, black 50%, transparent 100%); }
.hero-grid { z-index: 1; display: grid; grid-template-columns: 1fr; gap: 40px; position: relative; }
.hero-content { max-width: 650px; }
.badge { display: inline-block; padding: 6px 12px; background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2); border-radius: 50px; font-size: 0.8rem; font-weight: 600; margin-bottom: 20px; color: var(--secondary-alt); letter-spacing: 0.5px; text-transform: uppercase; }
.hero h1 { font-size: 3.5rem; line-height: 1.1; margin-bottom: 20px; font-weight: 800; letter-spacing: -1px; }
.gradient { background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-alt) 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.lead { font-size: 1.25rem; color: var(--text-muted); margin-bottom: 30px; }
.hero-cta { display: flex; gap: 15px; margin-bottom: 40px; flex-wrap: wrap; }
.hero-checks { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
.hero-checks li { color: var(--text-muted); font-size: 0.95rem; display: flex; align-items: center; gap: 10px; }
.hero-checks li::before { content: '✓'; color: var(--primary); font-weight: bold; background: rgba(255,51,102,0.1); border-radius: 50%; width: 20px; height: 20px; display: flex; align-items: center; justify-content: center; font-size: 0.8rem; }

/* Stats */
.stats { background: var(--bg-alt); padding: 40px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; text-align: center; }
.stats-grid div { display: flex; flex-direction: column; }
.stats-grid strong { font-size: 2.5rem; font-weight: 800; color: #fff; line-height: 1; margin-bottom: 5px; }
.stats-grid span { color: var(--text-muted); font-size: 0.9rem; text-transform: uppercase; letter-spacing: 1px; font-weight: 600; }

/* Trust Bar */
.trust-bar { padding: 20px 0; background: rgba(28, 36, 63, 0.5); }
.trust-bar-grid { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 15px; }
.trust-bar span { font-size: 0.9rem; color: var(--text-muted); display: flex; align-items: center; gap: 8px; }
.trust-bar b { color: #fff; }

/* Sections */
.section { padding: 100px 0; }
.section-alt { background: var(--bg-alt); }
.section-head { text-align: center; max-width: 700px; margin: 0 auto 60px; }
.eyebrow { display: block; color: var(--primary); font-weight: 700; text-transform: uppercase; letter-spacing: 2px; font-size: 0.85rem; margin-bottom: 15px; }
.section-head h2 { font-size: 2.5rem; font-weight: 800; margin-bottom: 20px; letter-spacing: -0.5px; }
.section-head p { color: var(--text-muted); font-size: 1.1rem; }

/* Features */
.features-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px; }
.feature { background: var(--bg-card); padding: 40px; border-radius: 16px; border: 1px solid var(--border); transition: transform 0.3s ease, box-shadow 0.3s ease; }
.feature:hover { transform: translateY(-5px); box-shadow: 0 10px 30px rgba(0,0,0,0.5); border-color: rgba(255,255,255,0.2); }
.feature .icon { font-size: 2.5rem; margin-bottom: 20px; display: inline-block; background: rgba(255,255,255,0.05); padding: 15px; border-radius: 12px; }
.feature h3, .feature h4 { font-size: 1.3rem; margin-bottom: 15px; font-weight: 700; color: #fff; }
.feature p { color: var(--text-muted); }

/* Plans */
.plans-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.plan { background: var(--bg-card); padding: 40px; border-radius: 16px; border: 1px solid var(--border); position: relative; display: flex; flex-direction: column; transition: transform 0.3s ease; }
.plan:hover { transform: translateY(-10px); }
.plan.featured { border-color: var(--primary); box-shadow: 0 0 30px rgba(255,51,102,0.15); transform: scale(1.05); z-index: 2; }
.plan.featured:hover { transform: scale(1.05) translateY(-5px); }
.ribbon { position: absolute; top: 0; right: 20px; background: var(--primary); color: #fff; font-size: 0.75rem; font-weight: 700; padding: 5px 15px; border-radius: 0 0 8px 8px; text-transform: uppercase; letter-spacing: 1px; }
.plan h3 { font-size: 1.5rem; color: var(--text-main); margin-bottom: 5px; }
.price { margin: 20px 0 30px; display: flex; align-items: flex-start; }
.price span { font-size: 1.2rem; margin-top: 5px; color: var(--text-muted); }
.price strong { font-size: 3.5rem; font-weight: 800; line-height: 1; color: #fff; }
.price em { font-style: normal; color: var(--text-muted); align-self: flex-end; margin-bottom: 8px; margin-left: 5px; }
.plan ul { margin-bottom: 30px; flex-grow: 1; }
.plan li { padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,0.05); color: var(--text-muted); display: flex; align-items: center; gap: 10px; }
.plan li:last-child { border-bottom: none; }
.plan li::before { content: '✓'; color: var(--secondary-alt); font-weight: bold; }
.plan .btn { width: 100%; margin-top: auto; }

/* SEO Content */
.seo-content { padding: 80px 20px; border-top: 1px solid var(--border); }
.seo-content h2 { font-size: 2rem; color: #fff; margin-bottom: 25px; margin-top: 40px; font-weight: 800; }
.seo-content h3 { font-size: 1.5rem; color: var(--secondary); margin-bottom: 20px; margin-top: 30px; }
.seo-content p { color: var(--text-muted); margin-bottom: 20px; font-size: 1.05rem; }
.seo-content ul, .seo-content ol { color: var(--text-muted); margin-bottom: 25px; margin-left: 20px; }
.seo-content li { margin-bottom: 10px; }
.seo-content strong { color: #fff; }

/* Footer */
.site-footer { background: #05070c; border-top: 1px solid var(--border); padding: 60px 0 20px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer-info p { color: var(--text-muted); max-width: 300px; }
.footer-links h4 { color: #fff; margin-bottom: 20px; font-size: 1.1rem; }
.footer-links a { display: block; color: var(--text-muted); margin-bottom: 10px; }
.footer-links a:hover { color: var(--primary); padding-left: 5px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.05); padding-top: 20px; text-align: center; color: var(--text-muted); font-size: 0.9rem; }

/* Reviews / Depoimentos */
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 25px; }
.review-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: 16px; padding: 30px; display: flex; flex-direction: column; gap: 15px; transition: transform 0.3s ease; }
.review-card:hover { transform: translateY(-5px); }
.review-stars { font-size: 1.1rem; letter-spacing: 2px; }
.review-card p { color: var(--text-muted); font-style: italic; flex-grow: 1; line-height: 1.7; }
.review-card cite { display: flex; align-items: center; gap: 12px; font-style: normal; }
.review-card cite img { width: 45px; height: 45px; border-radius: 50%; object-fit: cover; border: 2px solid var(--primary); }
.review-card cite div { display: flex; flex-direction: column; }
.review-card cite strong { color: #fff; font-size: 0.95rem; }
.review-card cite span { color: var(--text-muted); font-size: 0.8rem; }

/* Compatibilidade */
.compat-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 15px; }
.compat-item { background: var(--bg-card); border: 1px solid var(--border); border-radius: 12px; padding: 20px 10px; display: flex; flex-direction: column; align-items: center; gap: 10px; font-size: 1.8rem; transition: all 0.3s ease; }
.compat-item:hover { border-color: var(--primary); transform: translateY(-3px); }
.compat-item span { font-size: 0.8rem; color: var(--text-muted); text-align: center; }

/* Steps */
.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; }
.step { text-align: center; padding: 30px 20px; background: var(--bg-card); border-radius: 16px; border: 1px solid var(--border); position: relative; }
.step-num { width: 55px; height: 55px; background: linear-gradient(135deg, var(--primary), #c0004c); color: #fff; font-size: 1.5rem; font-weight: 800; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; box-shadow: 0 4px 15px rgba(255,51,102,0.3); }
.step h3 { color: #fff; margin-bottom: 10px; font-size: 1.1rem; }
.step p { color: var(--text-muted); font-size: 0.9rem; }

/* FAQ Accordion */
.faq-list { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 10px; }
.faq-item { background: var(--bg-card); border: 1px solid var(--border); border-radius: 12px; overflow: hidden; }
.faq-q { width: 100%; background: none; border: none; color: #fff; font-size: 1rem; font-weight: 600; padding: 20px 25px; text-align: left; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 20px; transition: color 0.2s; }
.faq-q:hover { color: var(--primary); }
.faq-q span { font-size: 1.5rem; color: var(--primary); flex-shrink: 0; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.faq-a p { padding: 0 25px 20px; color: var(--text-muted); line-height: 1.7; }

/* CTA Banner */
.cta-banner { background: linear-gradient(135deg, #1c243f 0%, #0b0f1a 100%); border-top: 1px solid var(--primary); border-bottom: 1px solid var(--primary); padding: 80px 0; text-align: center; }
.cta-inner { max-width: 700px; margin: 0 auto; }
.cta-inner h2 { font-size: 2.2rem; font-weight: 800; margin-bottom: 20px; }
.cta-inner p { color: var(--text-muted); font-size: 1.1rem; }

/* Responsive */
@media (max-width: 992px) {
    .stats-grid { grid-template-columns: repeat(3, 1fr); gap: 30px; }
    .features-grid { grid-template-columns: repeat(2, 1fr) !important; }
    .plans-grid { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto; }
    .plan.featured { transform: scale(1); }
    .plan.featured:hover { transform: translateY(-5px); }
    .reviews-grid { grid-template-columns: repeat(2, 1fr); }
    .compat-grid { grid-template-columns: repeat(4, 1fr); }
    .steps-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    .nav { display: none; }
    .hero h1 { font-size: 2rem; }
    .hero-cta { flex-direction: column; }
    .hero-checks { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .trust-bar-grid { flex-direction: column; align-items: center; text-align: center; }
    .reviews-grid { grid-template-columns: 1fr; }
    .compat-grid { grid-template-columns: repeat(3, 1fr); }
    .steps-grid { grid-template-columns: 1fr 1fr; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .hero-checks { grid-template-columns: 1fr; }
}
