:root {
    --bg-color: #0A0A0A;
    --accent-color: #B5E925;
    --text-color: #FFFFFF;
    --text-muted: #A0A0A0;
    --card-bg: rgba(26, 26, 26, 0.6);
    --border-color: rgba(181, 233, 37, 0.1);
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08);
    --glow-color: rgba(181, 233, 37, 0.2);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --container-width: 1100px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

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

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

.highlight {
    color: var(--accent-color);
}

/* Header */
.header {
    padding: 30px 0;
    position: absolute;
    width: 100%;
    z-index: 100;
}

.logo {
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-img {
    height: 40px;
    width: auto;
    display: block;
    filter: drop-shadow(0 0 10px rgba(181, 233, 37, 0.2));
}

/* Hero Section */
.hero {
    padding: 150px 0 100px;
    position: relative;
    text-align: center;
    overflow: hidden;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    line-height: 1.1;
    margin-bottom: 25px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.hero-description {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto 50px;
}

/* Video Player */
.video-container {
    max-width: 850px;
    margin: 0 auto 60px;
    position: relative;
    z-index: 2;
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 0 50px rgba(181, 233, 37, 0.15);
    border: 1px solid var(--border-color);
    background-color: #000;
}

.video-wrapper iframe,
.video-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    cursor: pointer;
}

.video-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #000;
}

.video-thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
    transition: var(--transition);
}

.video-placeholder:hover .video-thumb {
    opacity: 1;
    transform: scale(1.02);
}

.play-button {
    position: absolute;
    width: 80px;
    height: 80px;
    background: rgba(181, 233, 37, 0.9);
    color: var(--bg-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    padding-left: 5px; /* Visual center for triangle */
    transition: var(--transition);
    box-shadow: 0 0 30px rgba(181, 233, 37, 0.4);
    z-index: 5;
}

.video-placeholder:hover .play-button {
    transform: scale(1.1);
    box-shadow: 0 0 50px rgba(181, 233, 37, 0.6);
}

/* Pricing Card */
.pricing-card {
    border-radius: 24px;
    padding: 20px 0 40px;
    max-width: 500px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    background: transparent; /* Remove background card per user request */
}

.pricing-card:hover {
    transform: none;
}

.old-price {
    color: var(--text-color);
    font-size: 1.5rem;
    margin-bottom: 5px;
    font-weight: 400;
}

.old-price-value {
    color: #FF2E2E;
    text-decoration: line-through;
}

.new-price {
    color: #00FF00; /* Vibrant Green as per image */
    font-size: clamp(4rem, 8vw, 6rem);
    font-weight: 900;
    line-height: 1;
    margin-bottom: 20px;
    letter-spacing: -2px;
}

.savings-container {
    margin-bottom: 30px;
}

.savings-text {
    color: var(--text-color);
    font-size: 1.4rem;
    font-weight: 400;
}

.cta-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background-color: #FF0000; /* Vibrant Red as per image */
    color: #FFFFFF;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.4rem;
    padding: 24px 40px;
    border-radius: 12px;
    transition: var(--transition);
    width: 100%;
    max-width: 450px;
    margin: 0 auto 15px;
    box-shadow: 0 4px 15px rgba(255, 0, 0, 0.2);
}

.cta-button:hover {
    background-color: #e60000;
    transform: translateY(-2px);
}

.payment-footer {
    font-size: 1rem;
    color: #A0A0A0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.payment-footer i {
    font-size: 0.9rem;
}

/* Ticker Bands */
.ticker-wrap {
    width: 100%;
    overflow: hidden;
    padding: 220px 0;
    position: relative;
    z-index: 10;
    margin-top: -120px;
}

.ticker-band {
    position: absolute;
    top: 50%;
    left: -75vw;
    width: 250vw;
    background-color: var(--accent-color);
    color: var(--bg-color);
    padding: 25px 0;
    white-space: nowrap;
    overflow: hidden;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    transform-style: preserve-3d;
}

.ticker-track {
    display: flex;
    width: max-content;
    animation: ticker-roll 60s linear infinite;
    will-change: transform;
}

.ticker-group {
    display: flex;
    flex-shrink: 0;
}

.ticker-group span {
    display: inline-block;
    font-size: 1.6rem;
    font-weight: 900;
    font-family: 'Outfit', sans-serif;
    padding-right: 80px;
    text-transform: uppercase;
}

.band-1 {
    transform: translateY(-50%) rotate(-10deg);
    z-index: 11;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.6);
}

.band-2 {
    transform: translateY(-50%) rotate(8deg);
    z-index: 12;
    background-color: #d4f964;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.6);
}

.band-2 .ticker-track {
    animation-duration: 50s;
    animation-direction: reverse;
}

@keyframes ticker-roll {
    0% { transform: translate3d(0, 0, 0); }
    100% { transform: translate3d(-50%, 0, 0); }
}

/* Background Glows & Lines */
.hero-lines {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: var(--container-width);
    height: 100%;
    display: flex;
    justify-content: space-between;
    pointer-events: none;
    z-index: 1;
    opacity: 0.4;
}

.hero-lines span {
    width: 1px;
    height: 100%;
    background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.1) 50%, transparent 50%);
    background-size: 1px 20px; /* Dash size and spacing */
}

.glow-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 50% 30%, rgba(181, 233, 37, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(181, 233, 37, 0.05) 0%, transparent 40%),
        radial-gradient(circle at 20% 80%, rgba(181, 233, 37, 0.05) 0%, transparent 40%);
    z-index: -2;
    pointer-events: none;
    mask-image: linear-gradient(180deg, rgba(0,0,0,1) 70%, rgba(0,0,0,0) 100%);
    -webkit-mask-image: linear-gradient(180deg, rgba(0,0,0,1) 70%, rgba(0,0,0,0) 100%);
}

/* Sections General */
.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    text-align: center;
    margin-bottom: 60px;
    line-height: 1.2;
}

/* Features Section */
.features {
    padding: 100px 0;
    background: var(--bg-color);
}

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

.feature-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 24px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(181, 233, 37, 0.05), transparent);
    opacity: 0;
    transition: var(--transition);
}

.feature-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--accent-color);
    transform: translateY(-8px);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-icon {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 10;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    background: transparent;
    border: none;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    overflow: hidden;
    transition: var(--transition);
}

.feature-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
    border-radius: 16px;
}

.feature-card:hover .feature-icon img {
    transform: scale(1.05);
}

.feature-card:hover .feature-icon {
    box-shadow: 0 30px 60px rgba(181, 233, 37, 0.15);
}

.feature-card h3 {
    font-size: 1.6rem;
    color: #FFF;
    font-weight: 700;
    margin-bottom: 15px;
}

.feature-card p {
    font-size: 1.05rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.6);
}

/* About Section */
.about {
    padding: 100px 0;
    background: var(--bg-color);
}

.about-container {
    display: flex;
    align-items: center;
    gap: 80px;
    flex-wrap: wrap;
}

.about-image {
    flex: 1;
    min-width: 350px;
}

.profile-frame {
    position: relative;
    border-radius: 30px;
    padding: 15px;
    border: 1px solid var(--border-color);
    background: rgba(181, 233, 37, 0.05);
}

.profile-frame img {
    width: 100%;
    border-radius: 20px;
    display: block;
    filter: grayscale(20%);
    transition: var(--transition);
}

.profile-frame:hover img {
    filter: grayscale(0%);
}

.about-content {
    flex: 1.2;
    min-width: 350px;
}

.about-content .section-title {
    text-align: left;
}

.about-content p {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 20px;
}

/* FAQ Section */
.faq {
    padding: 100px 0;
    background: var(--bg-color);
}

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

.faq-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 10px;
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    color: var(--text-color);
    padding: 25px 0;
    text-align: left;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.faq-question:hover {
    color: var(--accent-color);
}

.faq-question i {
    font-size: 0.9rem;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.faq-answer p {
    padding-bottom: 25px;
    color: var(--text-muted);
    font-size: 1.05rem;
}

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

/* Footer */
.footer {
    padding: 60px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    background: var(--bg-color);
}

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

.footer a {
    color: var(--text-muted);
    text-decoration: none;
    transition: var(--transition);
    font-weight: 600;
}

.footer a:hover {
    color: var(--accent-color);
}

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

/* Responsive */
@media (max-width: 768px) {
    .hero {
        position: relative;
        padding: 100px 0 0;
        text-align: center;
        min-height: 100vh;
        display: flex;
        flex-direction: column;
        align-items: center;
        background: linear-gradient(180deg, #0f0f0f 0%, var(--bg-color) 100%);
        overflow-x: hidden;
    }
    
    .about-container {
        gap: 40px;
        flex-direction: column;
    }
    
    .about-content .section-title {
        text-align: center;
    }
    
    .pricing-card {
        padding: 30px 20px;
    }
    
    .new-price {
        font-size: 2.8rem;
    }
}

/* Telas Pequenas (Mobile Refined) */
@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
        margin-bottom: 15px;
    }
    
    .hero-description {
        font-size: 1rem;
        margin-bottom: 30px;
    }
    
    .cta-button {
        font-size: 0.85rem;
        padding: 16px 8px;
        max-width: 100%;
        white-space: nowrap;
        display: flex;
        flex-wrap: nowrap;
        gap: 6px;
        letter-spacing: -0.02em;
    }
    
    .pricing-card {
        padding: 25px 15px;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
}

/* Testimonials Section */
.testimonials {
    background-color: #FFFFFF;
    padding: 100px 0;
    color: #1A1A1A;
    position: relative;
    z-index: 10;
}

.testimonials .container {
    max-width: 1200px;
}

.testimonial-header {
    text-align: center;
    margin-bottom: 60px;
}

.testimonial-header span {
    display: block;
    font-size: 1.1rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.testimonial-header h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    color: #666666;
    line-height: 1.2;
}

.testimonial-grid {
    display: flex;
    flex-wrap: nowrap;
    gap: 20px;
    overflow: hidden;
    padding: 20px 0;
    scroll-behavior: smooth;
}

.testimonial-card {
    background: #FFFFFF;
    border-radius: 20px;
    padding: 35px 25px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.06);
    display: flex;
    flex-direction: column;
    height: auto;
    min-height: 100%;
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.03);
    flex: 0 0 calc(25% - 15px); /* 4 cards per view */
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.quote-icon {
    font-size: 2rem;
    color: var(--accent-color);
    margin-bottom: 20px;
}

.testimonial-text {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #444444;
    margin-bottom: 30px;
    flex-grow: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: auto;
}

.author-img {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    object-fit: cover;
}

.author-info h4 {
    font-size: 1rem;
    font-weight: 700;
    color: #1A1A1A;
    margin-bottom: 2px;
}

.author-info p {
    font-size: 0.8rem;
    color: #888888;
}

/* Testimonials Responsive */
@media (max-width: 1024px) {
    .testimonial-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Testimonial navigation arrows */
.testimonial-nav {
    display: flex; /* Always show buttons */
    justify-content: center;
    gap: 30px;
    margin-top: 20px;
}

.nav-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 2px solid var(--accent-color);
    background: transparent;
    color: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    font-size: 1.1rem;
}

.nav-btn:hover {
    background: var(--accent-color);
    color: #000;
    box-shadow: 0 0 15px var(--glow-color);
}

/* Products Section */
.products {
    padding: 100px 0;
    background: var(--bg-color);
    position: relative;
    overflow: hidden;
}

.products::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(181, 233, 37, 0.05) 0%, transparent 70%);
    pointer-events: none;
    z-index: 1;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.product-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--glass-border);
    border-radius: 32px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.product-card:hover {
    border-color: var(--accent-color);
    background: rgba(181, 233, 37, 0.03);
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 20px rgba(181, 233, 37, 0.1);
}

.badge-coming-soon {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--accent-color);
    color: var(--bg-color);
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 10;
}

.product-mockup {
    width: 100%;
    margin-bottom: 30px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: var(--transition);
}

.product-mockup img {
    width: 100%;
    height: auto;
    display: block;
    transition: var(--transition);
}

.product-card:hover .product-mockup img {
    transform: scale(1.05);
}

.product-card h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    text-align: center;
}

.product-checklist {
    list-style: none;
    width: 100%;
    margin-top: 10px;
}

.product-checklist li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.8);
}

.product-checklist li i {
    color: var(--accent-color);
    font-size: 1rem;
}

.product-card.dimmed {
    opacity: 0.7;
    filter: grayscale(0.5);
}

.product-card.dimmed:hover {
    opacity: 1;
    filter: grayscale(0);
}

/* Update Nav-btn for carousel visibility */
.nav-btn:active {
    transform: scale(0.95);
}

/* Floating CTA Button Base */
.floating-cta {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    align-items: center;
    background: rgba(15, 15, 15, 0.9);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 100px;
    padding: 8px 8px 8px 25px;
    z-index: 9999;
    transform: translateY(120px) scale(0.9);
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4), 0 5px 15px rgba(181, 233, 37, 0.05);
}

.floating-cta.active {
    transform: translateY(0) scale(1);
    opacity: 1;
}

.cta-logo {
    display: flex;
    align-items: center;
    margin-right: 20px;
    opacity: 0.8;
}

.cta-logo img {
    height: 18px;
    width: auto;
}

.cta-inner-btn {
    background: var(--accent-color);
    color: #000000;
    text-decoration: none;
    font-weight: 800;
    font-size: 0.85rem;
    padding: 12px 25px;
    border-radius: 100px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(181, 233, 37, 0.3);
}

.cta-inner-btn i {
    font-size: 0.9rem;
    transition: transform 0.3s ease;
}

.cta-inner-btn:hover {
    background: #c3f240;
    box-shadow: 0 6px 20px rgba(181, 233, 37, 0.4);
}

.cta-inner-btn:hover i {
    transform: translateX(3px);
}

/* Mobile Refinements (merged 480px) */
@media (max-width: 480px) {
    .testimonials {
        padding: 60px 0;
    }
    
    .testimonial-header {
        margin-bottom: 40px;
    }
    
    .testimonial-header h2 {
        font-size: 2rem;
    }

    .testimonial-grid {
        display: flex !important;
        flex-wrap: nowrap !important;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        padding: 20px 0 40px;
        margin: 0 -20px;
        gap: 15px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .testimonial-grid::-webkit-scrollbar {
        display: none;
    }

    .testimonial-card {
        flex: 0 0 calc(85% - 15px); /* Adjusted for better visibility of next card */
        min-width: 280px;
        scroll-snap-align: center;
        margin-left: 20px;
    }
    
    .testimonial-card:last-child {
        margin-right: 20px;
    }

    .testimonial-nav {
        display: flex !important;
        justify-content: center;
        gap: 30px;
        margin-top: 25px;
        position: relative;
        z-index: 100;
        pointer-events: auto;
    }

    .floating-cta {
        bottom: 15px;
        right: 15px;
        left: 15px;
        justify-content: space-between;
        padding: 5px 5px 5px 18px;
        border-radius: 20px; /* Square edges for mobile feels more modern sometimes, but sticking to rounded as per brand */
    }
    
    .cta-logo {
        margin-right: 12px;
    }

    .cta-logo img {
        height: 14px;
    }
    
    .cta-inner-btn {
        padding: 12px 15px;
        font-size: 0.75rem;
        flex: 1;
        justify-content: center;
        letter-spacing: 0;
    }

    .footer {
        padding-bottom: 140px; /* Extra space to ensure CTA doesn't overlap text when fully scrolled */
    }
}
