/* Reset e Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #FFFFFF;
    background-color: #000000;
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Satoshi', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 600;
}

p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1rem;
}

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

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
    transform: translateY(0);
}

.header.hidden {
    transform: translateY(-100%);
    opacity: 0;
}

.header.compact {
    padding: 0.5rem 0;
    background: rgba(0, 0, 0, 0.98);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

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

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

.nav-link {
    color: #FFFFFF;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #39FF14;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #39FF14;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

/* CTA Buttons */
.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    background: #39FF14;
    color: #000000;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    background: #2EE000;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(57, 255, 20, 0.3);
}

.cta-primary {
    background: #39FF14;
    color: #000000;
}

.cta-secondary {
    background: transparent;
    color: #39FF14;
    border: 2px solid #39FF14;
}

.cta-secondary:hover {
    background: #39FF14;
    color: #000000;
}

.cta-header {
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
}

.cta-button.large {
    padding: 1.5rem 3rem;
    font-size: 1.2rem;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.7) 0%,
        rgba(0, 0, 0, 0.4) 50%,
        rgba(0, 0, 0, 0.8) 100%
    );
    z-index: -1;
}

.hero-content {
    text-align: center;
    max-width: 800px;
    z-index: 1;
    animation: fadeInUp 1s ease-out;
}

.hero-title {
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

.hero-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.cta-support {
    font-size: 0.9rem;
    opacity: 0.8;
    font-style: italic;
}

/* Launch Banner */
.launch-banner {
    background: linear-gradient(135deg, #39FF14, #2EE000);
    color: #000000;
    padding: 1.5rem 0;
    text-align: center;
}

.banner-content {
    max-width: 800px;
    margin: 0 auto;
}

.banner-title {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    font-weight: 900;
}

.banner-text {
    font-size: 1.1rem;
    font-weight: 500;
}

/* Section Styles */
section {
    padding: 5rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section-title {
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.2rem;
    opacity: 0.8;
    font-weight: 400;
}

/* Problem/Solution Section */
.problem-solution {
    background: #111111;
}

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

.problem-card,
.solution-card {
    background: #1A1A1A;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #333;
}

.problem-card:hover,
.solution-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.problem-icon,
.solution-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.problem-title,
.solution-title {
    color: #39FF14;
    margin-bottom: 1rem;
}

.transition-text {
    text-align: center;
    margin: 4rem 0;
    padding: 2rem;
    background: linear-gradient(135deg, #39FF14, #2EE000);
    color: #000000;
    border-radius: 12px;
}

.transition-text h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0;
}

/* How It Works Section */
.process-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.process-videos {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.process-video-container {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.process-video {
    width: 100%;
    height: auto;
    display: block;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.step {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.step-number {
    background: #39FF14;
    color: #000000;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.step-content {
    flex: 1;
}

.step-title {
    color: #39FF14;
    margin-bottom: 0.5rem;
}

.step-text {
    opacity: 0.9;
}

/* Portfolio Section */
.portfolio {
    background: #111111;
}

.portfolio-grid {
    display: grid;
    gap: 4rem;
    margin-bottom: 3rem;
}

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

.portfolio-title {
    color: #39FF14;
    margin-bottom: 2rem;
}

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

.portfolio-videos.single {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto 2rem;
}

.portfolio-video-container {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.portfolio-video {
    width: 100%;
    height: auto;
    display: block;
}

.video-label {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: #39FF14;
    color: #000000;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-weight: 700;
    font-size: 0.9rem;
}

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

/* CTA Magnetic Section */
.cta-magnetic {
    padding: 3rem 0;
    background: #1A1A1A;
}

.cta-content {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 3rem;
    align-items: center;
}

.cta-videos {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.cta-video-container {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.cta-video {
    width: 100%;
    height: auto;
    display: block;
}

/* Packages Section */
.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.package-card {
    background: #1A1A1A;
    border: 2px solid #333;
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
}

.package-card:hover {
    transform: translateY(-5px);
    border-color: #39FF14;
    box-shadow: 0 15px 40px rgba(57, 255, 20, 0.1);
}

.package-card.featured {
    border-color: #39FF14;
    background: linear-gradient(135deg, #1A1A1A, #2A2A2A);
    transform: scale(1.05);
}

.package-card.custom {
    background: linear-gradient(135deg, #39FF14, #2EE000);
    color: #000000;
    border-color: #39FF14;
}

.package-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: #39FF14;
    color: #000000;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
}

.package-title {
    color: #39FF14;
    margin-bottom: 1rem;
}

.package-card.custom .package-title {
    color: #000000;
}

.package-description {
    margin-bottom: 2rem;
    opacity: 0.9;
}

.package-features {
    list-style: none;
    margin-bottom: 2rem;
    text-align: left;
}

.package-features li {
    margin-bottom: 0.5rem;
    padding-left: 0.5rem;
}

.package-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    background: #39FF14;
    color: #000000;
    text-decoration: none;
    font-weight: 700;
    border-radius: 8px;
    transition: all 0.3s ease;
    width: 100%;
}

.package-cta:hover {
    background: #2EE000;
    transform: translateY(-2px);
}

.whatsapp-cta {
    background: #25D366;
    color: #FFFFFF;
    gap: 0.5rem;
}

.whatsapp-cta:hover {
    background: #20BA5A;
}

.whatsapp-icon {
    font-size: 1.2rem;
}

/* FAQ Section */
.faq {
    background: #111111;
}

.faq-grid {
    display: grid;
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: #1A1A1A;
    border-radius: 12px;
    padding: 2rem;
    border: 1px solid #333;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: #39FF14;
    box-shadow: 0 5px 20px rgba(57, 255, 20, 0.1);
}

.faq-question {
    color: #39FF14;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.faq-answer {
    opacity: 0.9;
    line-height: 1.7;
}

/* Final CTA Section */
.final-cta {
    background: linear-gradient(135deg, #1A1A1A, #000000);
    text-align: center;
    padding: 6rem 0;
}

.final-cta-content {
    max-width: 600px;
    margin: 0 auto;
}

.final-cta-title {
    margin-bottom: 1.5rem;
}

.final-cta-text {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    opacity: 0.9;
}

.final-cta-support {
    margin-top: 1rem;
    font-size: 0.9rem;
    opacity: 0.7;
}

/* Footer */
.footer {
    background: #111111;
    padding: 3rem 0 1rem;
    border-top: 1px solid #333;
}

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

.footer-logo {
    height: 60px;
    width: auto;
    margin-bottom: 1rem;
}

.footer-description {
    opacity: 0.8;
    line-height: 1.6;
}

.footer-title {
    color: #39FF14;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.contact-info p {
    margin-bottom: 0.5rem;
    opacity: 0.9;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.social-link {
    color: #FFFFFF;
    text-decoration: none;
    transition: color 0.3s ease;
}

.social-link:hover {
    color: #39FF14;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #333;
    opacity: 0.7;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.8s ease-out;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }
    
    .header {
        padding: 0.5rem 0;
    }
    
    .header.compact {
        padding: 0.25rem 0;
    }
    
    .header-content {
        flex-direction: column;
        gap: 0.5rem;
        align-items: center;
    }
    
    .logo-img {
        height: 30px;
    }
    
    .nav {
        order: 2;
        width: 100%;
        justify-content: center;
        gap: 1rem;
        flex-wrap: wrap;
    }
    
    .nav-link {
        font-size: 0.9rem;
        padding: 0.25rem 0.5rem;
    }
    
    .cta-header {
        order: 3;
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
        margin-top: 0.5rem;
    }
    
    .hero {
        height: 100vh;
    }
    
    .hero-content {
        padding: 0 1rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .process-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .cta-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .cta-videos {
        grid-template-columns: 1fr;
    }
    
    .portfolio-videos {
        grid-template-columns: 1fr;
    }
    
    .packages-grid {
        grid-template-columns: 1fr;
    }
    
    .package-card.featured {
        transform: none;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .social-links {
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
    }
}

@media (max-width: 480px) {
    .header {
        padding: 0.25rem 0;
    }
    
    .header.compact {
        padding: 0.15rem 0;
    }
    
    .header-content {
        gap: 0.25rem;
    }
    
    .logo-img {
        height: 25px;
    }
    
    .nav {
        gap: 0.5rem;
    }
    
    .nav-link {
        font-size: 0.8rem;
        padding: 0.2rem 0.4rem;
    }
    
    .cta-header {
        padding: 0.4rem 0.8rem;
        font-size: 0.75rem;
        margin-top: 0.25rem;
    }
    
    .hero {
        height: 100vh;
    }
    
    .hero-content {
        padding: 0 1rem;
    }
    
    .hero-title {
        font-size: 2rem;
        line-height: 1.1;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        line-height: 1.4;
    }
    
    .cta-button {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .step {
        flex-direction: column;
        text-align: center;
    }
    
    .step-number {
        align-self: center;
    }
}

/* Smooth scrolling and performance optimizations */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    html {
        scroll-behavior: auto;
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .cta-button {
        border: 2px solid currentColor;
    }
    
    .package-card,
    .faq-item,
    .problem-card,
    .solution-card {
        border-width: 2px;
    }
}

