:root {
    --bg-color: #FFFFFF;
    --bg-secondary: #FFF8F8;
    --primary: #E50914;
    --primary-hover: #B20710;
    --accent: #FF3B30;
    --text-main: #1A1A24;
    --text-muted: #6B6B7B;
    --border: rgba(229, 9, 20, 0.1);
    --glass-bg: rgba(255, 255, 255, 0.85);
    --glass-border: rgba(229, 9, 20, 0.05);
}

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

body {
    font-family: 'Inter', sans-serif;
    background: radial-gradient(circle at 10% 20%, #FFFFFF, var(--bg-secondary) 100%);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

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

/* Announce Bar */
.announce {
    background: linear-gradient(90deg, var(--primary), var(--primary-hover));
    color: #fff;
    padding: 10px 0;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: default;
}

.marquee {
    display: inline-flex;
    animation: marquee 30s linear infinite;
    gap: 4rem;
}

.marquee span {
    display: inline-block;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-50% - 2rem)); }
}

.announce:hover .marquee {
    animation-play-state: paused;
}

/* Header */
header {
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.logo-icon {
    width: 36px;
    height: 36px;
    color: var(--primary);
}

.logo-text {
    font-family: 'Outfit', sans-serif;
    font-size: 1.8rem;
    font-weight: 900;
    letter-spacing: -0.5px;
    color: var(--text-main);
}

nav {
    display: flex;
    gap: 2rem;
    align-items: center;
}

nav a:not(.btn-primary) {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-main);
}

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

/* Buttons */
.btn-primary {
    background: var(--primary);
    color: #fff;
    padding: 0.75rem 1.5rem;
    border-radius: 30px;
    font-weight: 700;
    font-family: 'Outfit', sans-serif;
    box-shadow: 0 4px 15px rgba(0, 82, 255, 0.2);
}
.btn-primary:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 82, 255, 0.3);
    color: #fff;
}

.btn-large {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    font-family: 'Outfit', sans-serif;
}

.btn-whatsapp {
    background: #25D366;
    color: #fff;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.2);
}
.btn-whatsapp:hover {
    background: #1EBE5D;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
    color: #fff;
}

.btn-outline {
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    border: 2px solid var(--border);
    font-family: 'Outfit', sans-serif;
}
.btn-outline:hover {
    background: var(--bg-secondary);
    border-color: var(--primary);
    color: var(--primary);
}

/* Hero Section */
.hero {
    padding: 6rem 0 4rem;
    position: relative;
}

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

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 100%;
}

.hero-image-wrapper {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
}

.floating-tv {
    width: 100%;
    max-width: 650px;
    border-radius: 12px;
    box-shadow: 0 35px 70px rgba(229, 9, 20, 0.15);
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(2deg); }
    100% { transform: translateY(0px) rotate(0deg); }
}

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

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

.badge {
    display: inline-block;
    padding: 6px 16px;
    border-radius: 30px;
    background: rgba(0, 82, 255, 0.1);
    color: var(--primary);
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.hero h1 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--text-main);
}

.text-gradient {
    background: linear-gradient(to right, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
}

.hero-btns {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-bottom: 4rem;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    padding-top: 3rem;
    border-top: 1px solid var(--border);
}

.stat-item {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.stat-item strong {
    font-family: 'Outfit', sans-serif;
    font-size: 2rem;
    color: var(--primary);
}
.stat-item span {
    color: var(--text-muted);
    font-size: 0.95rem;
    font-weight: 600;
}

.hero-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 82, 255, 0.05) 0%, rgba(255, 255, 255, 0) 70%);
    z-index: 1;
    pointer-events: none;
}

/* Glassmorphism Classes */
.glass {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

/* Features */
.features {
    padding: 5rem 0;
    background: var(--bg-secondary);
}

.section-title {
    text-align: center;
    margin-bottom: 4rem;
}
.section-title h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-main);
}
.section-title p {
    color: var(--text-muted);
    font-size: 1.1rem;
}

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

.card {
    padding: 2.5rem;
    background: #FFFFFF;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 82, 255, 0.1);
}

.card-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--text-main);
}

.card p {
    color: var(--text-muted);
    font-size: 1rem;
}

/* CTA Section */
.cta-section {
    padding: 6rem 0;
    background: #FFFFFF;
}
.cta-box {
    text-align: center;
    padding: 4rem 2rem;
    max-width: 800px;
    margin: 0 auto;
    border: 1px solid rgba(0, 82, 255, 0.1);
    background: linear-gradient(145deg, #FFFFFF 0%, #F8F9FA 100%);
}
.cta-box h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-main);
}
.cta-box p {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
}

/* Footer */
footer {
    border-top: 1px solid #222;
    padding: 4rem 0 2rem;
    background: #0A0A0A;
    color: #FFFFFF;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-brand .logo-text {
    color: #FFFFFF;
}

.footer-brand p {
    color: #A0AEC0;
    max-width: 300px;
    margin-top: 1rem;
}

.footer-links strong {
    display: block;
    font-family: 'Outfit', sans-serif;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #FFFFFF;
}
.footer-links p {
    color: #A0AEC0;
    margin-bottom: 0.5rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #222;
    color: #A0AEC0;
    font-size: 0.9rem;
}

/* Tutorial & Downloads Section */
.downloads-section {
    padding: 5rem 0;
    background: var(--bg-color);
}

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

.app-list {
    margin-top: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.app-item {
    background: var(--bg-secondary);
    padding: 1rem;
    border-radius: 12px;
    border: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.app-item strong {
    color: var(--primary);
    font-size: 1.1rem;
}

.app-item span {
    font-size: 0.9rem;
    color: var(--text-muted);
}

code {
    background: rgba(229, 9, 20, 0.1);
    color: var(--primary);
    padding: 2px 6px;
    border-radius: 4px;
    font-weight: 700;
}

.btn-link {
    display: inline-block;
    margin-top: 5px;
    color: var(--accent);
    font-weight: 700;
    font-size: 0.9rem;
}
.btn-link:hover {
    text-decoration: underline;
}

.mt-2 {
    margin-top: 2rem;
}

.tutorial-steps {
    padding: 3rem;
    border-radius: 20px;
    background: var(--bg-secondary);
}

.tutorial-steps h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--text-main);
    text-align: center;
}

.steps-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.steps-list li {
    font-size: 1.1rem;
    padding-left: 1.5rem;
    position: relative;
}

.steps-list li::before {
    content: '✅';
    position: absolute;
    left: 0;
    top: 2px;
}

/* FAQ Section */
.faq-section {
    padding: 5rem 0;
    background: var(--bg-secondary);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

details {
    padding: 1.5rem;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
}

summary {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-main);
    outline: none;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

summary::-webkit-details-marker {
    display: none;
}

summary::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--primary);
    font-weight: 400;
}

details[open] summary::after {
    content: '-';
}

details p {
    margin-top: 1rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Plans Section */
.plans-section {
    padding: 5rem 0;
    background: #FFFFFF;
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
    align-items: start;
    padding-top: 2rem;
}

.plan-card {
    padding: 2.5rem 2rem;
    border-radius: 20px;
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: transform 0.3s ease;
}

.plan-card:hover {
    transform: translateY(-5px);
}

.plan-card.featured {
    background: var(--bg-secondary);
    border-color: var(--primary);
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(229, 9, 20, 0.15);
    z-index: 2;
}

.plan-card.featured:hover {
    transform: scale(1.05) translateY(-5px);
}

.badge-featured, .badge-discount {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent);
    color: #fff;
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: 800;
    font-size: 0.85rem;
    letter-spacing: 1px;
    white-space: nowrap;
}

.badge-discount {
    background: var(--primary);
}

.plan-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border);
}

.plan-header h3 {
    font-size: 1.5rem;
    color: var(--text-main);
    margin-bottom: 1rem;
}

.plan-price {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 2px;
}

.plan-price span {
    color: var(--text-muted);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.plan-price strong {
    font-family: 'Outfit', sans-serif;
    font-size: 3rem;
    line-height: 1;
    color: var(--primary);
}

.plan-equivalent {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 5px;
    font-style: italic;
}

.plan-features {
    list-style: none;
    flex-grow: 1;
    margin-bottom: 2rem;
}

.plan-features li {
    padding: 10px 0;
    font-size: 0.95rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 10px;
}

.plan-features li::before {
    content: '✓';
    color: var(--primary);
    font-weight: 800;
}

.btn-full {
    width: 100%;
    text-align: center;
    display: block;
}

/* Modal Lead Capture */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1000;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(5px);
}

.modal-box {
    background: var(--bg-secondary);
    padding: 2.5rem;
    border-radius: 20px;
    max-width: 450px;
    width: 90%;
    position: relative;
    border: 2px solid var(--primary);
    box-shadow: 0 20px 50px rgba(229, 9, 20, 0.2);
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: var(--text-muted);
}

.modal-box h2 {
    color: var(--text-main);
    margin-bottom: 0.5rem;
}

.modal-box p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.input-group {
    margin-bottom: 1.2rem;
    text-align: left;
}

.input-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-main);
}

.input-group input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border);
    border-radius: 8px;
    background: var(--bg-color);
    font-family: inherit;
    font-size: 1rem;
    color: var(--text-main);
    transition: all 0.3s ease;
}

.input-group input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(229, 9, 20, 0.1);
}

/* Payment Section */
.payment-section {
    padding: 2rem 0 5rem;
    background: #FFFFFF;
}

.payment-box {
    max-width: 800px;
    margin: 0 auto;
    padding: 3rem 2rem;
    text-align: center;
    border: 2px solid var(--primary);
    background: linear-gradient(145deg, #FFFFFF 0%, #FFF5F5 100%);
    box-shadow: 0 15px 40px rgba(229, 9, 20, 0.1);
}

.payment-box h2 {
    font-size: 2.2rem;
    color: var(--text-main);
    margin-bottom: 1rem;
}

.payment-box p {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.pix-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.qr-code {
    border: 10px solid #FFFFFF;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    width: 200px;
    height: 200px;
}

.pix-details {
    display: flex;
    flex-direction: column;
    gap: 10px;
    text-align: left;
}

.pix-key-box {
    background: var(--bg-secondary);
    padding: 1rem 1.5rem;
    border-radius: 10px;
    border: 1px dashed var(--primary);
    display: flex;
    flex-direction: column;
}

.pix-key-box .label {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 5px;
}

.pix-key-box .key {
    font-size: 1.5rem;
    color: var(--primary);
    font-family: 'Outfit', sans-serif;
    letter-spacing: 1px;
}

.pix-name {
    font-weight: 600;
    color: var(--text-main);
    font-size: 1.1rem;
    padding-left: 5px;
}

.payment-alert {
    background: rgba(255, 193, 7, 0.1);
    color: #b38600;
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    border: 1px solid rgba(255, 193, 7, 0.3);
    font-size: 1.05rem;
}

@media (max-width: 968px) {
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    .hero-image-wrapper {
        margin-top: 2rem;
    }
    .hero-btns, .hero-stats {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    nav { display: none; }
    .hero h1 { font-size: 2.5rem; }
    .hero-btns { flex-direction: column; }
    .hero-stats { flex-direction: column; gap: 2rem; }
    .plan-card.featured { transform: scale(1); z-index: 1; margin: 1rem 0; }
    .plan-card.featured:hover { transform: translateY(-5px); }
}
