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

body {
    font-family: 'Inter', sans-serif;
    background: #0a0a0a;
    color: #ffffff;
    line-height: 1.6;
}

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

/* Typography */
.highlight {
    color: #006CFF;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 1.125rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #b3b3b3;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Hero Section */
.hero {
    background: 
        linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), /* overlay preta */
        url("p.JPG") no-repeat center center;
    background-size: cover;
    padding: 2rem 0 4rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}


.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, rgba(0, 108, 255, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #006CFF;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.875rem;
    margin-bottom: 2rem;
    text-transform: uppercase;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-subtitle {
    color: #006CFF;
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-title {
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #ffffff 0%, #006CFF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.cta-button {
    background: linear-gradient(135deg, #006CFF 0%, #5C3DFF 100%);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-size: 1.125rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    min-width: 200px;
}

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

.price-info {
    margin-top: 1rem;
    font-size: 1rem;
    color: #b3b3b3;
}

.price {
    color: #00ff88;
    font-weight: 700;
    font-size: 1.125rem;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: #006CFF;
    line-height: 1;
}

.stat-label {
    font-size: 0.875rem;
    color: #b3b3b3;
    margin-top: 0.5rem;
}

/* Mentor Section */
.mentor {
    padding: 4rem 0;
    background: #111111;
}

.mentor-card {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a1a1a 100%);
    border: 1px solid #333;
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    max-width: 500px;
    margin: 0 auto 1rem;
    position: relative;
}

.mentor-image {
    position: relative;
    display: inline-block;
    margin-bottom: 1rem;
}

.mentor-image img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 3px solid #006CFF;
}

.mentor-badge {
    position: absolute;
    bottom: 0;
    right: 0;
    background: #006CFF;
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    border: 3px solid #111;
}

.mentor-name {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.mentor-handle {
    color: #006CFF;
    margin-bottom: 1rem;
}

.mentor-description {
    color: #b3b3b3;
    line-height: 1.6;
}

.mentor-continuation {
    text-align: center;
    color: #b3b3b3;
    margin-bottom: 2rem;
}

.mentor-achievements {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.achievement {
    text-align: center;
}

.achievement-number {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.achievement-label {
    color: #b3b3b3;
    font-size: 0.875rem;
}

.mentor-quote {
    text-align: center;
    font-style: italic;
    font-size: 1.125rem;
    color: #b3b3b3;
    margin-top: 2rem;
}

/* Learning Section */
.learning {
    padding: 4rem 0;
    background: #0a0a0a;
}

.modules-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.module-card {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a1a1a 100%);
    border: 1px solid #333;
    border-radius: 12px;
    padding: 1.5rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    transition: all 0.3s ease;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.module-card:hover {
    transform: translateY(-2px);
    border-color: #006CFF;
    box-shadow: 0 8px 25px rgba(0, 108, 255, 0.1);
}

.module-icon {
    background: #006CFF;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.module-content h3 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #ffffff;
}

.module-content p {
    color: #b3b3b3;
    font-size: 0.875rem;
    line-height: 1.5;
}

.module-check {
    color: #00ff88;
    font-size: 1.25rem;
    flex-shrink: 0;
}

/* Bonus Section */
.bonus {
    padding: 4rem 0;
    background: #111111;
}

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

.bonus-item {
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a1a1a 100%);
    border: 1px solid #333;
    border-radius: 12px;
}

.bonus-item h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #ffffff;
}

.bonus-item p {
    color: #b3b3b3;
    line-height: 1.6;
}

/* Packages Section */
.packages {
    padding: 4rem 0;
    background: #0a0a0a;
}

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

.package-card {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a1a1a 100%);
    border: 1px solid #333;
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
}

.package-card:hover {
    transform: translateY(-5px);
    border-color: #006CFF;
    box-shadow: 0 15px 40px rgba(0, 108, 255, 0.2);
}

.package-icon {
    background: #006CFF;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
}

.package-badge {
    background: #006CFF;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 1rem;
    display: inline-block;
}

.package-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.package-price {
    margin-bottom: 1rem;
}

.current-price {
    font-size: 2rem;
    font-weight: 800;
    color: #00ff88;
}

.old-price {
    font-size: 1rem;
    color: #666;
    text-decoration: line-through;
    margin-left: 0.5rem;
}

.package-description {
    color: #b3b3b3;
    margin-bottom: 2rem;
    line-height: 1.6;
}

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

.feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: #b3b3b3;
}

.feature i {
    color: #00ff88;
    font-size: 0.875rem;
}

.limited-offer {
    text-align: center;
    margin-top: 2rem;
    padding: 1rem;
    background: linear-gradient(135deg, #00ff88 0%, #00cc6a 100%);
    color: #0a0a0a;
    border-radius: 8px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

/* Preview Section */
.preview {
    padding: 4rem 0;
    background: #111111;
}

.preview-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-top: 3rem;
}

.preview-image img {
    width: 100%;
    border-radius: 12px;
    border: 1px solid #333;
}

.preview-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.preview-feature {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.feature-icon {
    background: #006CFF;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-content h3 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.feature-content p {
    color: #b3b3b3;
    line-height: 1.6;
}

.preview-cta {
    text-align: center;
    margin-top: 3rem;
    padding: 2rem;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a1a1a 100%);
    border: 1px solid #333;
    border-radius: 16px;
}

.preview-cta h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.preview-cta p {
    color: #b3b3b3;
    margin-bottom: 2rem;
}

.access-info {
    margin-top: 1rem;
    color: #b3b3b3;
    font-size: 0.875rem;
}

/* Results Section */
.results {
    padding: 4rem 0;
    background: #0a0a0a;
}

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

.testimonial {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a1a1a 100%);
    border: 1px solid #333;
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
}

.testimonial-image img {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.stars {
    color: #006CFF;
    margin-bottom: 1rem;
}

.testimonial-info p {
    color: #b3b3b3;
    line-height: 1.6;
}

/* Final Stats Section */
.final-stats {
    padding: 4rem 0;
    background: #111111;
}

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

.stat-card {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a1a1a 100%);
    border: 1px solid #333;
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
}

.stat-card .stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    display: block;
}

.stat-card .stat-label {
    color: #b3b3b3;
    font-size: 1rem;
}

/* Final Offer Section */
.final-offer {
    padding: 4rem 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%);
    text-align: center;
}

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

.offer-description {
    font-size: 1.25rem;
    margin-bottom: 3rem;
    color: #b3b3b3;
    line-height: 1.6;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 3rem 0;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.benefit-card {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    text-align: left;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.benefit-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(0, 108, 255, 0.2);
}

.benefit-icon {
    background: #006CFF;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.25rem;
}

.benefit-content h3 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #ffffff;
}

.benefit-content p {
    color: #b3b3b3;
    font-size: 0.875rem;
    line-height: 1.5;
}

.offer-price {
    margin: 3rem 0 2rem;
}

.price-highlight {
    font-size: 4rem;
    font-weight: 900;
    color: #00ff88;
    background: linear-gradient(135deg, #00ff88 0%, #006CFF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    margin-bottom: 2rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .section-title {
        font-size: 2.25rem;
    }
    
    .packages-grid {
        grid-template-columns: 1fr;
    }
    
    .preview-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .hero-stats {
        gap: 2rem;
    }
    
    .modules-grid {
        grid-template-columns: 1fr;
    }
    
    .module-card {
        min-width: auto;
    }
    
    .packages-grid {
        grid-template-columns: 1fr;
    }
    
    .preview-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .testimonials {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .mentor-achievements {
        gap: 2rem;
    }
    
    .bonus-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-description {
        font-size: 1.125rem;
    }
    
    .offer-description {
        font-size: 1.125rem;
    }
    
    .price-highlight {
        font-size: 3rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 10px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .mentor-achievements {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .price-highlight {
        font-size: 2.5rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .offer-description {
        font-size: 1rem;
    }
    
    .benefit-card {
        padding: 1rem;
    }
    
    .benefit-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .module-card {
        padding: 1rem;
    }
    
    .package-card {
        padding: 1.5rem;
    }
    
    .cta-button {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
    }
}

@media (max-width: 320px) {
    .hero-title {
        font-size: 1.75rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .modules-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .packages-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .module-card {
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .benefit-card {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .price-highlight {
        font-size: 2rem;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Animation for elements entering viewport */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.module-card,
.package-card,
.testimonial,
.stat-card {
    animation: fadeInUp 0.6s ease-out;
}

/* Loading animation for images */
img {
    transition: opacity 0.3s ease;
}

img:not([src]) {
    opacity: 0;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #1a1a1a;
}

::-webkit-scrollbar-thumb {
    background: #006CFF;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #5C3DFF;
}