/* Reset e configurações básicas */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background-color: #1a0a0a;
    overflow-x: hidden;
}

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

/* Header */
.header {
    background: rgba(0, 0, 0, 0.9);
    padding: 15px 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    backdrop-filter: blur(10px);
}

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

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

.logo-img {
    width: 40px;
    height: 40px;
    background: linear-gradient(45deg, #ff0000, #ff4444);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 16px;
}

.logo-text {
    font-size: 24px;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: 2px;
}

.btn-header {
    background: linear-gradient(45deg, #ff0000, #ff4444);
    color: white;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
}

.btn-header:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 0, 0, 0.3);
}

/* Top Banner */
.top-banner {
    background: linear-gradient(45deg, #ff0000, #ff4444);
    color: white;
    text-align: center;
    padding: 12px 0;
    font-weight: 600;
    margin-top: 70px;
    font-size: 14px;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #1a0a0a 0%, #2d1414 50%, #1a0a0a 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="%23ffffff" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

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

.hero-text h1 {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 24px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.highlight {
    color: #ff0000;
    background: linear-gradient(45deg, #ff0000, #ff4444);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-text p {
    font-size: 1.2rem;
    margin-bottom: 32px;
    color: #cccccc;
    line-height: 1.6;
}

.btn-primary {
    background: linear-gradient(45deg, #ff0000, #ff4444);
    color: white;
    padding: 18px 36px;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(255, 0, 0, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(255, 0, 0, 0.4);
}

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

.hero-image img {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.3));
}

/* Streaming Platforms */
.streaming-platforms {
    padding: 80px 0;
    background: #0f0f0f;
}

.streaming-platforms h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 60px;
    line-height: 1.2;
}

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

.platform-card {
    background: #1a1a1a;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.platform-card:hover {
    transform: translateY(-5px);
    border-color: #ff0000;
    box-shadow: 0 15px 35px rgba(255, 0, 0, 0.2);
}

.platform-card img {
    width: 100%;
    height: 280px;
    object-fit: cover;
}

.cta-section {
    text-align: center;
    margin: 60px 0;
}

/* Why CineTV */
.why-cinetv {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a0a0a 0%, #2d1414 50%, #1a0a0a 100%);
    text-align: center;
}

.why-cinetv h3 {
    color: #ff0000;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.why-cinetv h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 60px;
    line-height: 1.2;
}

.video-container {
    max-width: 800px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
}

.video-placeholder {
    width: 100%;
    height: auto;
    display: block;
}

/* Features */
.features {
    padding: 80px 0;
    background: #0f0f0f;
}

.features h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 60px;
}

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

.feature-card {
    background: #1a1a1a;
    border-radius: 16px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: #ff0000;
    box-shadow: 0 15px 35px rgba(255, 0, 0, 0.2);
}

.feature-image {
    margin-bottom: 24px;
    border-radius: 12px;
    overflow: hidden;
}

.feature-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.feature-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: #ffffff;
}

.feature-card p {
    color: #cccccc;
    line-height: 1.6;
}

/* Pricing Comparison */
.pricing-comparison {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a0a0a 0%, #2d1414 50%, #1a0a0a 100%);
}

.pricing-comparison h2 {
    text-align: center;
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 60px;
    line-height: 1.2;
}

.platforms-pricing {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
    margin-bottom: 60px;
}

.platform-price {
    background: #1a1a1a;
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    border: 2px solid #333;
    transition: all 0.3s ease;
}

.platform-price:hover {
    border-color: #ff0000;
    transform: translateY(-3px);
}

.platform-price img {
    width: 80px;
    height: 40px;
    object-fit: contain;
    margin-bottom: 12px;
    background: white;
    border-radius: 8px;
    padding: 8px;
}

.platform-price span {
    font-weight: 700;
    color: #ff0000;
    font-size: 1.1rem;
}

.total-comparison {
    text-align: center;
    margin: 60px 0;
}

.total-others {
    background: #ff0000;
    color: white;
    padding: 30px;
    border-radius: 16px;
    margin-bottom: 20px;
}

.total-others h3 {
    font-size: 1.8rem;
    font-weight: 800;
}

.total-cinetv {
    background: #00ff00;
    color: #000;
    padding: 30px;
    border-radius: 16px;
}

.total-cinetv h3 {
    font-size: 1.8rem;
    font-weight: 800;
}

/* Testimonials */
.testimonials {
    padding: 80px 0;
    background: #0f0f0f;
}

.testimonials h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 60px;
}

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

.testimonial-card {
    background: #1a1a1a;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(255, 0, 0, 0.2);
}

.testimonial-card img {
    width: 100%;
    height: auto;
}

/* Pricing Plan */
.pricing-plan {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a0a0a 0%, #2d1414 50%, #1a0a0a 100%);
    text-align: center;
}

.pricing-plan h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 60px;
}

.plan-card {
    max-width: 400px;
    margin: 0 auto;
    background: #1a1a1a;
    border: 3px solid #ff0000;
    border-radius: 20px;
    padding: 40px;
    position: relative;
    overflow: hidden;
}

.plan-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(45deg, #ff0000, #ff4444);
}

.plan-header h3 {
    color: #cccccc;
    font-size: 1.2rem;
    margin-bottom: 8px;
}

.plan-header h2 {
    color: #ff0000;
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 30px;
}

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

.plan-features li {
    padding: 8px 0;
    color: #cccccc;
    font-weight: 500;
}

.plan-price h2 {
    color: #ff0000;
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 30px;
}

.btn-buy {
    background: linear-gradient(45deg, #ff0000, #ff4444);
    color: white;
    padding: 18px 36px;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(255, 0, 0, 0.3);
}

.btn-buy:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(255, 0, 0, 0.4);
}

/* Guarantee */
.guarantee {
    padding: 80px 0;
    background: #0f0f0f;
}

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

.guarantee-badge img {
    width: 200px;
    height: 200px;
    background: linear-gradient(45deg, #ff0000, #ff4444);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 24px;
}

.guarantee-text h2 {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 24px;
    line-height: 1.2;
}

.guarantee-text p {
    color: #cccccc;
    margin-bottom: 16px;
    line-height: 1.6;
}

/* FAQ */
.faq {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a0a0a 0%, #2d1414 50%, #1a0a0a 100%);
}

.faq h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 60px;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 16px;
    border: 2px solid #333;
    border-radius: 12px;
    overflow: hidden;
    background: #1a1a1a;
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    color: white;
    padding: 20px;
    text-align: left;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.faq-question:hover {
    background: #2a2a2a;
}

.faq-question::after {
    content: '▼';
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question::after {
    transform: translateY(-50%) rotate(180deg);
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    background: #2a2a2a;
}

.faq-item.active .faq-answer {
    padding: 20px;
    max-height: 200px;
}

.faq-answer p {
    color: #cccccc;
    line-height: 1.6;
}

/* Support CTA */
.support-cta {
    padding: 60px 0;
    background: #ff0000;
    text-align: center;
}

.support-content h2 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 16px;
}

.support-content p {
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.btn-support {
    background: white;
    color: #ff0000;
    padding: 18px 36px;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    transition: all 0.3s ease;
}

.btn-support:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

/* Footer */
.footer {
    background: #0a0a0a;
    padding: 60px 0 30px;
}

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

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

.footer-logo img {
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, #ff0000, #ff4444);
    border-radius: 8px;
}

.footer-logo span {
    font-size: 28px;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: 2px;
}

.footer-section h3 {
    color: #ffffff;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.payment-methods, .security-badges {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(60px, 1fr));
    gap: 10px;
}

.payment-methods img, .security-badges img {
    width: 60px;
    height: 40px;
    object-fit: contain;
    background: white;
    border-radius: 6px;
    padding: 4px;
}

.footer-disclaimer {
    background: #1a1a1a;
    padding: 30px;
    border-radius: 12px;
    margin-bottom: 30px;
}

.footer-disclaimer p {
    color: #cccccc;
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 12px;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #333;
    color: #cccccc;
}

.footer-links {
    margin: 10px 0;
}

.footer-links a {
    color: #cccccc;
    text-decoration: none;
}

.footer-links a:hover {
    color: #ff0000;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-text h1 {
        font-size: 2.5rem;
    }
    
    .platforms-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .platforms-pricing {
        grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    }
    
    .guarantee-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .container {
        padding: 0 15px;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 2rem;
    }
    
    .btn-primary {
        padding: 15px 30px;
        font-size: 1rem;
    }
    
    .platforms-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        gap: 15px;
    }
    
    .platform-card img {
        height: 200px;
    }
}

