:root {
    --primary: #893cf9; /* Roxo Gendo */
    --primary-hover: #7325d6;
    --secondary: #00dbbd; /* Verde Gendo */
    --dark: #1a1a1a;
    --gray: #666666;
    --light: #f5f7fa;
    --white: #ffffff;
}

* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Lato', sans-serif; }
body { background-color: var(--white); color: var(--dark); overflow-x: hidden; }

/* Navbar */
nav {
    display: flex; justify-content: space-between; align-items: center;
    padding: 15px 5%; background: rgba(255,255,255,0.95); 
    position: fixed; top: 0; width: 100%; z-index: 1000; 
    box-shadow: 0 2px 10px rgba(0,0,0,0.05); backdrop-filter: blur(5px);
}
.logo { font-size: 1.6rem; font-weight: 900; color: var(--primary); display: flex; align-items: center; gap: 5px; letter-spacing: -1px; }
.logo span { color: var(--dark); }
.nav-links { display: flex; gap: 30px; align-items: center; }
.nav-links a { text-decoration: none; color: var(--gray); font-weight: 600; font-size: 0.95rem; transition: 0.3s; }
.nav-links a:hover { color: var(--primary); }
.btn-nav {
    padding: 10px 25px; background: transparent; color: var(--primary); 
    border: 1px solid var(--primary); border-radius: 50px;
    text-decoration: none; font-weight: 700; transition: 0.3s; cursor: pointer;
}
.btn-nav:hover { background: var(--primary); color: white; }

/* Hero */
.hero {
    padding: 140px 5% 80px; background: linear-gradient(180deg, #f9f6ff 0%, #ffffff 100%);
    min-height: 90vh; display: flex; flex-direction: column; align-items: center;
}
.hero-tabs {
    display: flex; background: white; padding: 5px; border-radius: 50px;
    box-shadow: 0 5px 20px rgba(137, 60, 249, 0.1); margin-bottom: 40px;
}
.hero-tab {
    padding: 12px 30px; border-radius: 40px; cursor: pointer; font-weight: 700; color: var(--gray);
    transition: 0.3s; display: flex; align-items: center; gap: 8px; border: none; background: transparent;
}
.hero-tab.active { background: var(--primary); color: white; box-shadow: 0 4px 15px rgba(137, 60, 249, 0.3); }
.hero-content {
    display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; max-width: 1200px; width: 100%;
    animation: fadeIn 0.5s ease;
}
.hero-text h1 { font-size: 3.2rem; line-height: 1.1; margin-bottom: 20px; color: var(--dark); font-weight: 900; }
.hero-text h1 span { color: var(--primary); }
.hero-text p { font-size: 1.1rem; color: var(--gray); margin-bottom: 30px; line-height: 1.6; }
.features-list { list-style: none; margin-bottom: 30px; }
.features-list li { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; font-weight: 600; color: var(--dark); }
.features-list i { color: var(--secondary); font-size: 1.2rem; }
.hero-image img { width: 100%; border-radius: 20px; box-shadow: 0 20px 60px rgba(0,0,0,0.15); border: 1px solid #eee; }

/* Botões e Features */
.btn-lg {
    padding: 18px 40px; font-size: 1.1rem; font-weight: 700; border-radius: 50px;
    border: none; cursor: pointer; transition: all 0.3s; text-decoration: none; 
    display: inline-flex; align-items: center; gap: 10px;
}
.btn-primary { background: var(--secondary); color: white; box-shadow: 0 10px 25px rgba(0, 219, 189, 0.3); }
.btn-primary:hover { transform: translateY(-3px); background: #00c2a8; }

.section { padding: 100px 5%; }
.bg-light { background-color: #f8f9fd; }
.section-title { text-align: center; margin-bottom: 60px; max-width: 800px; margin: 0 auto; }
.section-title h2 { font-size: 2.5rem; margin-bottom: 15px; font-weight: 800; }
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); gap: 30px; }
.feature-card {
    background: white; padding: 40px; border-radius: 24px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.03); border: 1px solid #eee;
    transition: 0.3s; position: relative; overflow: hidden;
}
.feature-card:hover { transform: translateY(-10px); border-color: var(--primary); box-shadow: 0 15px 40px rgba(137, 60, 249, 0.1); }
.feature-icon {
    width: 60px; height: 60px; background: rgba(137, 60, 249, 0.1); color: var(--primary);
    border-radius: 16px; display: flex; align-items: center; justify-content: center;
    font-size: 28px; margin-bottom: 25px;
}
.feature-card h3 { font-size: 1.3rem; margin-bottom: 12px; font-weight: 700; }

/* Pricing */
.pricing-section { background: #1a1a2e; color: white; text-align: center; padding-bottom: 150px; }
.price-card {
    background: white; color: var(--dark); max-width: 500px; margin: -100px auto 0;
    padding: 60px; border-radius: 30px; position: relative; z-index: 10;
    box-shadow: 0 30px 80px rgba(0,0,0,0.4);
}
.badge {
    background: var(--secondary); color: white; padding: 8px 20px; border-radius: 20px;
    font-weight: 800; text-transform: uppercase; font-size: 0.8rem; letter-spacing: 1px;
    position: absolute; top: -15px; left: 50%; transform: translateX(-50%);
}
.price-val { font-size: 4.5rem; font-weight: 900; color: var(--primary); line-height: 1; margin: 20px 0; }
.price-val span { font-size: 1.5rem; color: var(--gray); font-weight: 500; }
.check-list { text-align: left; margin: 30px 0; list-style: none; }
.check-list li { margin-bottom: 15px; display: flex; align-items: center; gap: 12px; font-size: 1.05rem; }
.check-icon { color: var(--secondary); font-size: 1.2rem; }

/* Modais & Admin */
.modal-overlay {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(26, 26, 46, 0.9); z-index: 2000; display: none;
    justify-content: center; align-items: center; backdrop-filter: blur(5px);
}
.modal-box {
    background: white; padding: 50px; border-radius: 24px; width: 90%; max-width: 450px;
    box-shadow: 0 25px 50px rgba(0,0,0,0.2); position: relative; animation: slideUp 0.4s ease;
}
.close-modal { position: absolute; top: 20px; right: 20px; cursor: pointer; font-size: 24px; color: var(--gray); }
.input-group { margin-bottom: 20px; text-align: left; }
.input-group label { display: block; margin-bottom: 8px; font-weight: 700; font-size: 0.9rem; color: var(--dark); }
.input-group input { 
    width: 100%; padding: 16px; border: 2px solid #e2e8f0; border-radius: 12px; 
    font-size: 1rem; outline: none; transition: 0.3s;
}
.input-group input:focus { border-color: var(--primary); }
.btn-full { width: 100%; padding: 16px; border-radius: 12px; font-size: 1.1rem; font-weight: 700; margin-top: 10px; }

.admin-panel { background: white; padding: 40px; border-radius: 20px; margin-top: 40px; border: 1px solid #eee; }
.admin-table { width: 100%; border-collapse: collapse; margin-top: 20px; }
.admin-table th { text-align: left; padding: 15px; border-bottom: 2px solid #eee; color: var(--gray); }
.admin-table td { padding: 15px; border-bottom: 1px solid #eee; }
.status-pill { padding: 5px 10px; border-radius: 20px; font-size: 0.8rem; font-weight: 700; }
.status-paid { background: #d1fae5; color: #065f46; }

/* Video Modal Fix */
.video-box { width: 95%; max-width: 1000px; background: #000; border-radius: 16px; overflow: hidden; }
.video-container { position: relative; width: 100%; padding-bottom: 56.25%; height: 0; }
.video-container iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: none; }

@keyframes slideUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.typewriter { color: var(--primary); }
.cursor { display: inline-block; width: 3px; height: 1em; background-color: var(--dark); animation: blink 1s infinite; margin-left: 2px; vertical-align: bottom;}
@keyframes blink { 50% { opacity: 0; } }

@media(max-width: 768px) {
    .hero h1 { font-size: 2.5rem; }
    .hero-content { grid-template-columns: 1fr; text-align: center; }
    .nav-links { display: none; }
}