/* Arquivo styles.css - Replicando o layout e estilo do original com ajustes de ícones */

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

:root {
    /* Paleta de cores base mantida */
    --primary-color: #6F42C1; /* Roxo base */
    --secondary-color: #8B5CF6; /* Roxo secundário */
    --bg-dark: #000000;
    --bg-darker: #0a0a0a;
    --text-light: #e0e0e0;
    --text-gray: #b0b0b0;
    --gradient-start: #000000;
    --gradient-end: #6F42C1;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    background: var(--bg-dark);
    color: var(--text-light);
    line-height: 1.6;
    font-weight: 300;
}

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

/* Header & Navigation - Mantido */
header {
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(111, 66, 193, 0.2);
}

nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 20px;
}

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

.logo-icon {
    width: 40px;
    height: 40px;
    position: relative;
}

.tv-screen {
    width: 36px;
    height: 24px;
    background: linear-gradient(135deg, #1E90FF, #00BFFF); /* Azul no lugar do roxo */
    border-radius: 4px;
    position: relative;
    box-shadow: 0 0 20px rgba(30, 144, 255, 0.5);
}

.tv-screen::before {
    content: '';
    position: absolute;
    width: 8px;
    height: 8px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.tv-stand {
    width: 20px;
    height: 8px;
    background: #1E90FF; /* Azul no lugar do roxo */
    margin: 2px auto 0;
    border-radius: 0 0 4px 4px;
}

.logo-text {
    font-size: 1.4rem;
    font-weight: 600;
    color: #1E90FF; /* Azul */
    letter-spacing: 1px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

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

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

.btn-cta {
    background: var(--primary-color);
    color: white;
    padding: 0.7rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
}

.btn-cta:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(111, 66, 193, 0.4);
}

/* Hero Section - Mantido */
.hero {
    background: linear-gradient(180deg, var(--gradient-start) 0%, var(--gradient-end) 100%);
    padding: 150px 0 100px;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-content h1 {
    font-size: 3rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    font-weight: 300;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
    padding: 1rem 2rem;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-primary {
    background: var(--primary-color);
    color: white;
}

.btn-primary:hover {
    background: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(111, 66, 193, 0.5);
}

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

.btn-secondary:hover {
    background: var(--primary-color);
    color: white;
}

.hero-image {
    position: relative;
    height: 400px;
}

.floating-card {
    position: absolute;
    background: linear-gradient(135deg, rgba(30, 144, 255, 0.2), rgba(0, 191, 255, 0.1)); /* Azul */
    border: 1px solid rgba(30, 144, 255, 0.3); /* Azul */
    border-radius: 15px;
    backdrop-filter: blur(10px);
    animation: float 6s ease-in-out infinite;
}

.card-1 { width: 200px; height: 150px; top: 0; left: 0; animation-delay: 0s; }
.card-2 { width: 180px; height: 180px; top: 100px; right: 50px; animation-delay: 2s; }
.card-3 { width: 160px; height: 120px; bottom: 0; left: 100px; animation-delay: 4s; }

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

/* Seções, Títulos, Botões - Mantido */
section { padding: 80px 0; }
section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--primary-color);
    font-weight: 600;
}
.section-subtitle {
    text-align: center;
    color: var(--text-gray);
    font-size: 1.1rem;
    margin-bottom: 3rem;
    font-weight: 300;
}
.cta-center { text-align: center; margin-top: 3rem; }

/* How It Works - Mantido */
.how-it-works { background: var(--bg-darker); }
.steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-bottom: 3rem;
}
.step {
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(111, 66, 193, 0.1), rgba(0, 0, 0, 0.5));
    border-radius: 15px;
    border: 1px solid rgba(111, 66, 193, 0.2);
    transition: all 0.3s;
}
.step:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(111, 66, 193, 0.3);
}
.step-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
.step h3 { font-size: 1.5rem; margin-bottom: 1rem; color: var(--primary-color); font-weight: 500; }
.step p { color: var(--text-gray); line-height: 1.8; }

/* Icons CSS - Reutiliza a lógica de formas, mas adaptando o ícone de WhatsApp */
.icon-click::before { content: ''; width: 30px; height: 30px; border: 3px solid white; border-radius: 50%; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); }
.icon-click::after { content: ''; width: 10px; height: 10px; background: white; border-radius: 50%; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); }
.icon-robot::before { content: ''; width: 35px; height: 35px; border: 3px solid white; border-radius: 8px; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); }
.icon-robot::after { content: ''; width: 20px; height: 3px; background: white; position: absolute; top: 55%; left: 50%; transform: translate(-50%, -50%); }
.icon-check::before { content: ''; width: 15px; height: 30px; border-right: 4px solid white; border-bottom: 4px solid white; position: absolute; top: 40%; left: 50%; transform: translate(-50%, -50%) rotate(45deg); }
.icon-whatsapp::before { content: ''; width: 20px; height: 20px; border: 2px solid white; border-radius: 50%; position: relative; display: inline-block; }
.icon-info::before { content: 'i'; color: white; font-weight: 700; font-size: 1.2rem; font-style: italic; position: relative; display: inline-block; }


/* Benefits Section - Mantido */
.benefits { background: var(--bg-dark); }
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}
.benefit-card {
    padding: 2rem;
    background: linear-gradient(135deg, rgba(111, 66, 193, 0.05), rgba(0, 0, 0, 0.8));
    border-radius: 15px;
    border: 1px solid rgba(111, 66, 193, 0.2);
    transition: all 0.3s;
}
.benefit-card:hover { border-color: var(--primary-color); transform: translateY(-5px); box-shadow: 0 10px 30px rgba(111, 66, 193, 0.2); }
.benefit-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border-radius: 12px;
    margin-bottom: 1.5rem;
    position: relative;
}
.icon-speed::before { content: ''; width: 0; height: 0; border-left: 15px solid transparent; border-right: 15px solid transparent; border-bottom: 25px solid white; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%) rotate(45deg); }
.icon-quality::before { content: ''; width: 25px; height: 25px; border: 3px solid white; border-radius: 50%; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); }
.icon-quality::after { content: ''; width: 10px; height: 10px; background: white; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); }
.icon-channels::before { content: ''; width: 30px; height: 20px; border: 3px solid white; border-radius: 4px; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); }
.icon-devices::before { content: ''; width: 25px; height: 18px; border: 3px solid white; border-radius: 3px; position: absolute; top: 45%; left: 50%; transform: translate(-50%, -50%); }
.icon-devices::after { content: ''; width: 10px; height: 3px; background: white; position: absolute; bottom: 15px; left: 50%; transform: translateX(-50%); }
.icon-automation::before { content: ''; width: 20px; height: 20px; border: 3px solid white; border-radius: 4px; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); }
.icon-support::before { content: ''; width: 25px; height: 25px; border: 3px solid white; border-radius: 50% 50% 50% 0; position: absolute; top: 45%; left: 50%; transform: translate(-50%, -50%) rotate(-45deg); }

/* Features Section - Aprimorado com texto nos ícones */
.features { background: var(--bg-darker); }
.features-list { display: grid; gap: 2rem; margin-bottom: 3rem; }
.feature-item {
    display: flex;
    gap: 2rem;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(111, 66, 193, 0.05), rgba(0, 0, 0, 0.8));
    border-radius: 15px;
    border: 1px solid rgba(111, 66, 193, 0.2);
    transition: all 0.3s;
}
.feature-item:hover { border-color: var(--primary-color); transform: translateX(10px); }
.feature-icon {
    width: 70px;
    height: 70px;
    min-width: 70px;
    background: var(--primary-color);
    border-radius: 12px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}
.feature-icon-text {
    color: white;
    font-weight: 700;
    font-size: 1.2rem;
    text-transform: uppercase;
}
.icon-hd .feature-icon-text { font-size: 1.2rem; }
.icon-vod .feature-icon-text { font-size: 1.1rem; }
.icon-sports .feature-icon-text { font-size: 1.1rem; }
.icon-guide .feature-icon-text { font-size: 1rem; }

.icon-hd::before, .icon-vod::before, .icon-sports::before, .icon-guide::before { content: none; } /* Remove ícones antigos */

.feature-content h3 { font-size: 1.4rem; margin-bottom: 0.8rem; color: var(--primary-color); font-weight: 500; }
.feature-content p { color: var(--text-gray); line-height: 1.8; }


/* Plans Section - Adaptado para Consultoria */
.plans { background: var(--bg-dark); }
.plans-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; margin-bottom: 3rem; }
.plan-card {
    background: linear-gradient(135deg, rgba(111, 66, 193, 0.05), rgba(0, 0, 0, 0.9));
    border: 1px solid rgba(111, 66, 193, 0.2);
    border-radius: 20px;
    padding: 2.5rem;
    transition: all 0.3s;
    position: relative;
}
.plan-card.featured {
    border-color: var(--primary-color);
    border-width: 2px;
    background: linear-gradient(135deg, rgba(111, 66, 193, 0.15), rgba(0, 0, 0, 0.9));
}
.plan-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}
.plan-header h3 { font-size: 1.8rem; color: var(--primary-color); margin-bottom: 1rem; font-weight: 600; }
.plan-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-color);
    border-radius: 50%;
    margin: 0 auto;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}
.plan-icon-text { color: white; font-weight: 700; font-size: 1.1rem; }
.icon-month .plan-icon-text { content: '3M'; }
.icon-quarter .plan-icon-text { content: '6M'; }
.icon-year .plan-icon-text { content: '12M'; }

.icon-month::before, .icon-quarter::before, .icon-year::before { content: none; }

.discount-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-weight: 600;
    margin-bottom: 1rem;
}
.price-label { display: block; color: var(--text-gray); font-size: 1.1rem; margin-top: 0.5rem; }
.plan-features li {
    padding: 0.8rem 0;
    color: var(--text-gray);
    display: flex;
    align-items: center;
    gap: 0.8rem;
}
.check-icon::before { content: '✓'; color: var(--primary-color); font-weight: 700; font-size: 1.2rem; }
.btn-plan {
    display: block;
    background: var(--primary-color);
    color: white;
    padding: 1rem 2rem;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
}
.btn-plan:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(111, 66, 193, 0.4);
}

/* Compatibility Section (Plataformas de Atuação) - Mantido */
.compatibility { background: var(--bg-darker); }
.devices-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; margin-bottom: 3rem; }
.device-card {
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(111, 66, 193, 0.05), rgba(0, 0, 0, 0.8));
    border-radius: 15px;
    border: 1px solid rgba(111, 66, 193, 0.2);
    transition: all 0.3s;
}
.device-card:hover { border-color: var(--primary-color); transform: translateY(-5px); }
.device-icon {
    width: 70px;
    height: 70px;
    background: var(--primary-color);
    border-radius: 12px;
    margin: 0 auto 1.5rem;
    position: relative;
}
.device-card h3 { font-size: 1.2rem; margin-bottom: 0.8rem; color: var(--primary-color); font-weight: 500; }
.device-card p { color: var(--text-gray); font-size: 0.95rem; }

.icon-smart-tv::before { content: ''; width: 40px; height: 28px; border: 3px solid white; border-radius: 4px; position: absolute; top: 45%; left: 50%; transform: translate(-50%, -50%); }
.icon-smart-tv::after { content: ''; width: 15px; height: 4px; background: white; position: absolute; bottom: 12px; left: 50%; transform: translateX(-50%); }
.icon-mobile::before { content: ''; width: 25px; height: 40px; border: 3px solid white; border-radius: 6px; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); }
.icon-mobile::after { content: ''; width: 8px; height: 2px; background: white; position: absolute; bottom: 18px; left: 50%; transform: translateX(-50%); }
.icon-computer::before { content: ''; width: 35px; height: 25px; border: 3px solid white; border-radius: 3px; position: absolute; top: 45%; left: 50%; transform: translate(-50%, -50%); }
.icon-computer::after { content: ''; width: 25px; height: 3px; background: white; position: absolute; bottom: 15px; left: 50%; transform: translateX(-50%); }
.icon-tvbox::before { content: ''; width: 35px; height: 25px; border: 3px solid white; border-radius: 6px; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); }
.icon-tvbox::after { content: ''; width: 8px; height: 8px; border: 2px solid white; border-radius: 50%; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); }

/* Differentials Section - Mantido */
.differentials { background: var(--bg-dark); }
.diff-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; margin-bottom: 3rem; }
.diff-item {
    padding: 2rem;
    background: linear-gradient(135deg, rgba(111, 66, 193, 0.05), rgba(0, 0, 0, 0.8));
    border-radius: 15px;
    border: 1px solid rgba(111, 66, 193, 0.2);
    transition: all 0.3s;
    position: relative;
    padding-left: 5rem;
}
.diff-item:hover { border-color: var(--primary-color); transform: translateX(10px); }
.diff-number {
    position: absolute;
    left: 2rem;
    top: 2rem;
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    opacity: 0.3;
}
.diff-item h3 { font-size: 1.4rem; margin-bottom: 1rem; color: var(--primary-color); font-weight: 500; }
.diff-item p { color: var(--text-gray); line-height: 1.8; }

/* Reviews Section - Mantido */
.reviews { background: var(--bg-darker); }
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; margin-bottom: 3rem; }
.review-card {
    padding: 2rem;
    background: linear-gradient(135deg, rgba(111, 66, 193, 0.05), rgba(0, 0, 0, 0.8));
    border-radius: 15px;
    border: 1px solid rgba(111, 66, 193, 0.2);
    transition: all 0.3s;
}
.review-card:hover { border-color: var(--primary-color); transform: translateY(-5px); }
.reviewer-avatar {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 1.1rem;
}
.reviewer-info h3 { font-size: 1.1rem; color: var(--primary-color); font-weight: 500; margin-bottom: 0.2rem; }
.reviewer-location { font-size: 0.9rem; color: var(--text-gray); }
.review-stars { color: var(--primary-color); font-size: 1.2rem; margin-bottom: 1rem; }
.review-text { color: var(--text-gray); line-height: 1.7; font-size: 0.95rem; }

/* FAQ Section - Mantido */
.faq { background: var(--bg-dark); }
.faq-list { max-width: 900px; margin: 0 auto 3rem; }
.faq-item {
    margin-bottom: 1rem;
    background: linear-gradient(135deg, rgba(111, 66, 193, 0.05), rgba(0, 0, 0, 0.8));
    border: 1px solid rgba(111, 66, 193, 0.2);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s;
}
.faq-item:hover { border-color: var(--primary-color); }
.faq-question {
    width: 100%;
    background: transparent;
    border: none;
    padding: 1.5rem 2rem;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-light);
    transition: all 0.3s;
}
.faq-question:hover { color: var(--primary-color); }
.faq-question h3 { font-size: 1.1rem; font-weight: 500; color: var(--primary-color); }
.faq-icon { font-size: 1.5rem; color: var(--primary-color); 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; }
.faq-item.active .faq-answer { max-height: 500px; }
.faq-answer p { padding: 0 2rem 1.5rem; color: var(--text-gray); line-height: 1.8; }

/* Final CTA Section - Mantido */
.final-cta {
    background: linear-gradient(180deg, var(--gradient-start) 0%, var(--gradient-end) 100%);
    text-align: center;
    padding: 100px 0;
}
.final-cta h2 { font-size: 2.5rem; margin-bottom: 1rem; }
.final-cta p { font-size: 1.2rem; color: var(--text-gray); margin-bottom: 2rem; }
.btn-large { font-size: 1.2rem; padding: 1.2rem 3rem; }

/* Footer - Mantido */
footer {
    background: var(--bg-darker);
    padding: 60px 0 30px;
    border-top: 1px solid rgba(111, 66, 193, 0.2);
}
.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    margin-bottom: 3rem;
}
.footer-section .footer-title {
    color: #9D6FD6;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    font-weight: 500;
}
.footer-section p { color: var(--text-gray); line-height: 1.8; }
.footer-section ul { list-style: none; }
.footer-section ul li { margin-bottom: 0.8rem; }
.footer-section ul li a {
    color: var(--text-gray);
    text-decoration: none;
    transition: color 0.3s;
}
.footer-section ul li a:hover {
    color: var(--primary-color);
}
.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 1rem;
}
.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(111, 66, 193, 0.1);
    color: var(--text-gray);
}

/* Responsive Design - Mantido */
@media (max-width: 1024px) {
    .hero .container { grid-template-columns: 1fr; }
    .hero-image { display: none; }
    .steps, .benefits-grid, .plans-grid { grid-template-columns: repeat(2, 1fr); }
    .devices-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-content { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .nav-menu { display: none; }
    .logo-icon { width: 32px; height: 32px; }
    .tv-screen { width: 28px; height: 20px; }
    .tv-stand { width: 16px; height: 6px; }
    .logo-text { font-size: 1.1rem; }
    .btn-cta { padding: 0.6rem 1rem; font-size: 0.9rem; }
    .hero-content h1 { font-size: 2rem; }
    .hero-subtitle { font-size: 1rem; }
    section h2 { font-size: 2rem; }
    .steps, .benefits-grid, .plans-grid, .devices-grid, .diff-grid, .reviews-grid { grid-template-columns: 1fr; }
    .feature-item { flex-direction: column; text-align: center; }
    .footer-content { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
    .hero-content h1 { font-size: 1.5rem; }
    .hero-buttons { flex-direction: column; }
    .btn-primary, .btn-secondary { width: 100%; justify-content: center; }
    section { padding: 50px 0; }
}