/* 
  =======================================================================
  PROFESSIONAL HTML TEMPLATE
  =======================================================================
  Licença: Uso Comercial (Agência/Freelancer)
  Author: Envato User
  Site: #
  
  Licensed under Envato Elements Terms. 
  You are free to use this template for your commercial or personal projects.
  =======================================================================
*/

:root {
    --primary: #00ff88; /* Neon Green */
    --primary-dark: #00cc6a;
    --secondary: #7000ff; /* Neon Purple */
    --bg-dark: #0a0a0a;
    --bg-darker: #050505;
    --bg-card: #111;
    --text-white: #fff;
    --text-gray: #a0a0a0;
    --gradient: linear-gradient(135deg, #00ff88 0%, #7000ff 100%);
    --font-main: 'Inter', sans-serif;
    --font-display: 'Montserrat', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    background-color: var(--bg-dark);
    color: var(--text-white);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Utilities */
.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 20px;
}

.text-gradient {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-highlight {
    color: var(--primary);
}

.bg-darker {
    background-color: var(--bg-darker);
}

.section {
    padding: 80px 0;
}

.section-header {
    margin-bottom: 60px;
}

.section-title {
    font-family: var(--font-display);
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.section-desc {
    color: var(--text-gray);
    font-size: 1.1rem;
    max-width: 600px;
}

/* Buttons */
.btn-cta {
    display: inline-block;
    background: var(--gradient);
    color: white;
    padding: 18px 40px;
    border-radius: 50px;
    font-weight: 800;
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: 1px;
    box-shadow: 0 10px 30px rgba(0, 255, 136, 0.3);
    transition: transform 0.3s, box-shadow 0.3s;
    border: none;
    cursor: pointer;
}

.btn-cta:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 255, 136, 0.5);
}

.btn-large {
    font-size: 1.2rem;
    padding: 25px 60px;
    width: 100%;
    text-align: center;
}

.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(0, 255, 136, 0.7); }
    70% { box-shadow: 0 0 0 20px rgba(0, 255, 136, 0); }
    100% { box-shadow: 0 0 0 0 rgba(0, 255, 136, 0); }
}

/* Navbar */
.navbar {
    padding: 20px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    background: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.5rem;
    letter-spacing: -1px;
}

.btn-nav {
    background: transparent;
    border: 1px solid var(--primary);
    color: var(--primary);
    padding: 10px 25px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.btn-nav:hover {
    background: var(--primary);
    color: var(--bg-dark);
}

/* Hero */
.hero {
    padding-top: 160px;
    padding-bottom: 100px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-bg-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(112, 0, 255, 0.15) 0%, rgba(0,0,0,0) 70%);
    z-index: -1;
    pointer-events: none;
}

.badge {
    background: rgba(255, 255, 255, 0.1);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    color: var(--primary);
    border: 1px solid rgba(0, 255, 136, 0.3);
    display: inline-block;
    margin-bottom: 20px;
}

.headline {
    font-family: var(--font-display);
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 20px;
}

.subheadline {
    font-size: 1.2rem;
    color: var(--text-gray);
    max-width: 700px;
    margin: 0 auto 40px;
}

.vsl-container {
    max-width: 800px;
    margin: 0 auto 50px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
    border: 1px solid rgba(255,255,255,0.1);
}

.vsl-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 */
    height: 0;
}

.vsl-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.guarantee-text {
    margin-top: 20px;
    font-size: 0.9rem;
    color: var(--text-gray);
}

.guarantee-text i {
    color: var(--primary);
    margin-right: 5px;
}

/* Logos Strip */
.logos-strip {
    border-top: 1px solid rgba(255,255,255,0.05);
    border-bottom: 1px solid rgba(255,255,255,0.05);
    padding: 30px 0;
    text-align: center;
}

.logos-strip p {
    font-size: 0.8rem;
    color: var(--text-gray);
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.logos-grid {
    display: flex;
    justify-content: center;
    gap: 40px;
    font-size: 2rem;
    color: #333;
}

/* Grid Layouts */
.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

/* Cards */
.card {
    background: var(--bg-card);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.05);
    transition: 0.3s;
}

.card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
}

.icon-box {
    width: 60px;
    height: 60px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.icon-box.error {
    background: rgba(255, 50, 50, 0.1);
    color: #ff3232;
}

.pain-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.pain-card p {
    color: var(--text-gray);
    font-size: 0.95rem;
}

/* Solution Section */
.row {
    display: flex;
    align-items: center;
    gap: 50px;
}

.col-half {
    flex: 1;
}

.modules-list {
    margin-top: 40px;
}

.module-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.module-item:last-child {
    border-bottom: none;
}

.module-number {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 800;
    color: rgba(255,255,255,0.1);
    line-height: 1;
}

.module-info h4 {
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: var(--primary);
}

.module-info p {
    color: var(--text-gray);
    font-size: 0.9rem;
}

.mockup-container {
    position: relative;
}

.mockup-box {
    background: linear-gradient(45deg, #111, #222);
    border-radius: 20px;
    aspect-ratio: 4/3;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 30px 60px rgba(0,0,0,0.5);
}

.mockup-box i {
    font-size: 5rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.mockup-box span {
    font-family: var(--font-display);
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--text-gray);
}

/* Author */
.author-wrapper {
    display: flex;
    align-items: center;
    gap: 60px;
    background: var(--bg-card);
    border-radius: 30px;
    padding: 60px;
    border: 1px solid rgba(255,255,255,0.05);
}

.author-img {
    flex: 0 0 300px;
    height: 400px;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
}

.author-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-content h3 {
    color: var(--primary);
    font-size: 0.9rem;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.author-content h2 {
    font-family: var(--font-display);
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.author-content p {
    color: var(--text-gray);
    margin-bottom: 20px;
}

.stats {
    display: flex;
    gap: 40px;
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.stat-item strong {
    display: block;
    font-size: 2rem;
    color: var(--text-white);
}

.stat-item span {
    color: var(--text-gray);
    font-size: 0.9rem;
}

/* Testimonials */
.testimonial-card {
    background: var(--bg-dark);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid rgba(255,255,255,0.05);
}

.stars {
    color: #ffb700;
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.testimonial-card p {
    font-style: italic;
    color: var(--text-gray);
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.user {
    display: flex;
    align-items: center;
    gap: 15px;
}

.user img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
}

.user strong {
    display: block;
    font-size: 0.9rem;
}

.user span {
    font-size: 0.8rem;
    color: var(--text-gray);
}

/* Bonus Section */
.bonus-card {
    background: var(--bg-card);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.05);
    transition: 0.3s;
    text-align: center;
}

.bonus-card:hover {
    transform: translateY(-10px);
    border-color: var(--secondary);
}

.bonus-img {
    height: 150px;
    background: linear-gradient(45deg, #111, #222);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: var(--secondary);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.bonus-content {
    padding: 30px;
}

.bonus-content h4 {
    font-size: 0.8rem;
    color: var(--primary);
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.bonus-content h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.bonus-content p {
    font-size: 0.9rem;
    color: var(--text-gray);
    margin-bottom: 20px;
}

.bonus-price {
    display: block;
    font-size: 0.9rem;
    color: var(--text-white);
    font-weight: 600;
}

.bonus-price strike {
    color: var(--text-gray);
    margin-left: 5px;
}

/* Countdown */
.countdown-timer {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

.time-block {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.time-block span {
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-white);
    line-height: 1;
    font-family: var(--font-display);
}

.time-block small {
    font-size: 0.7rem;
    text-transform: uppercase;
    color: var(--text-gray);
    margin-top: 5px;
}

.separator {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
    margin-top: -5px;
}

/* Sticky Bar */
.sticky-bar {
    position: fixed;
    bottom: -100px;
    left: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    border-top: 1px solid var(--primary);
    padding: 15px 0;
    z-index: 999;
    transition: 0.5s;
    box-shadow: 0 -10px 30px rgba(0,0,0,0.5);
}

.sticky-bar.visible {
    bottom: 0;
}

.sticky-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.sticky-text {
    font-weight: 600;
    font-size: 1.1rem;
}

.sticky-text i {
    color: #ff3232;
    margin-right: 10px;
    animation: pulse 1s infinite;
}

.btn-small {
    padding: 10px 25px;
    font-size: 0.9rem;
}

/* Offer Section */
.offer-section {
    padding: 100px 0;
}

.offer-box {
    max-width: 600px;
    margin: 0 auto;
    background: var(--bg-card);
    border-radius: 30px;
    overflow: hidden;
    border: 2px solid var(--primary);
    box-shadow: 0 0 50px rgba(0, 255, 136, 0.1);
}

.offer-header {
    background: var(--bg-darker);
    padding: 30px;
    text-align: center;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.offer-header h3 {
    font-family: var(--font-display);
    font-size: 2rem;
    margin-bottom: 5px;
    color: var(--primary);
}

.offer-body {
    padding: 40px;
    text-align: center;
}

.price-container {
    margin-bottom: 30px;
}

.old-price {
    text-decoration: line-through;
    color: var(--text-gray);
    font-size: 1.2rem;
}

.current-price {
    font-size: 4rem;
    font-weight: 800;
    color: var(--text-white);
    line-height: 1;
    margin: 10px 0;
}

.currency {
    font-size: 1.5rem;
    vertical-align: top;
    position: relative;
    top: 10px;
}

.cents {
    font-size: 1.5rem;
}

.installments {
    color: var(--primary);
    font-weight: 600;
}

.benefits-list {
    list-style: none;
    text-align: left;
    margin: 0 auto 40px;
    max-width: 350px;
}

.benefits-list li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-gray);
}

.benefits-list li i {
    color: var(--primary);
}

.offer-body .btn-cta {
    background: var(--primary);
    color: var(--bg-darker);
    box-shadow: 0 10px 30px rgba(0, 255, 136, 0.2);
}

.offer-body .btn-cta:hover {
    background: var(--primary-dark);
    box-shadow: 0 15px 40px rgba(0, 255, 136, 0.4);
}

.secure-badges {
    margin-top: 20px;
    color: var(--text-gray);
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

/* FAQ */
.faq-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.faq-question {
    padding: 25px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-question h3 {
    font-size: 1.1rem;
    font-weight: 600;
}

.faq-question i {
    color: var(--primary);
    transition: 0.3s;
}

.faq-item.active .faq-question i {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: 0.3s;
}

.faq-answer p {
    padding-bottom: 25px;
    color: var(--text-gray);
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

/* Footer */
.footer {
    padding: 50px 0;
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-logo {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.footer p {
    color: var(--text-gray);
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.footer-links a {
    color: var(--text-gray);
    text-decoration: none;
    margin: 0 10px;
    font-size: 0.9rem;
    transition: 0.3s;
}

.footer-links a:hover {
    color: var(--primary);
}

/* Responsive */
@media (max-width: 768px) {
    .headline {
        font-size: 2.5rem;
    }
    
    .row {
        flex-direction: column;
    }
    
    .author-wrapper {
        flex-direction: column;
        padding: 30px;
    }
    
    .author-img {
        flex: auto;
        width: 100%;
        height: 300px;
    }
    
    .logos-grid {
        flex-wrap: wrap;
        gap: 20px;
    }
}
