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

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

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

/* Utilitários */
.gradient-text {
    background: linear-gradient(135deg, rgb(97, 216, 0), rgb(110, 32, 230));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background: #000000;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(110, 32, 230, 0.1) 0%, rgba(0, 0, 0, 0.9) 50%, rgba(97, 216, 0, 0.05) 100%);
}

.hero-decorations {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.decoration {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.3;
}

.decoration-1 {
    top: 80px;
    right: 80px;
    width: 200px;
    height: 200px;
    background: rgba(97, 216, 0, 0.2);
}

.decoration-2 {
    bottom: 120px;
    left: 80px;
    width: 150px;
    height: 150px;
    background: rgba(110, 32, 230, 0.3);
}

.decoration-3 {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    background: rgba(97, 216, 0, 0.1);
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 10;
}

.hero-text {
    color: white;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.badge {
    display: inline-flex;
    align-items: center;
    background: rgba(97, 216, 0, 0.2);
    color: rgb(97, 216, 0);
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 900;
    border: 1px solid rgba(97, 216, 0, 0.3);
    backdrop-filter: blur(10px);
    width: fit-content;
}

.badge .icon {
    width: 16px;
    height: 16px;
    margin-right: 8px;
}

.hero-title {
    font-size: 3rem ;
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: #d1d5db;
    line-height: 1.5;
    font-weight: 500;
    max-width: 500px;
}

.cta-button {
    background: linear-gradient(135deg, rgb(97, 216, 0), rgb(80, 180, 0));
    color: #000000;
    font-weight: 900;
    padding: 20px 40px;
    border-radius: 12px;
    font-size: 18px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    width: fit-content;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cta-button:hover {
    transform: scale(1.05);
    box-shadow: 0 20px 40px rgba(97, 216, 0, 0.5);
}

.cta-button .icon {
    transition: transform 0.3s ease;
}

.cta-button:hover .icon {
    transform: translateX(8px);
}

.hero-features {
    display: flex;
    gap: 32px;
    font-size: 14px;
    font-weight: 700;
    padding-top: 16px;
}

.feature {
    display: flex;
    align-items: center;
    color: rgb(97, 216, 0);
}

.feature .icon {
    width: 16px;
    height: 16px;
    margin-right: 8px;
}

.hero-image {
    position: relative;
    display: flex;
    justify-content: center;
}

.image-decorations {
    position: absolute;
    inset: 0;
}

.image-decoration {
    position: absolute;
    border-radius: 50%;
    filter: blur(40px);
}

.image-decoration-1 {
    top: -32px;
    right: -32px;
    width: 250px;
    height: 250px;
    background: linear-gradient(135deg, rgba(97, 216, 0, 0.2), rgba(110, 32, 230, 0.2));
}

.image-decoration-2 {
    bottom: -32px;
    left: -32px;
    width: 180px;
    height: 180px;
    background: linear-gradient(135deg, rgba(110, 32, 230, 0.25), rgba(97, 216, 0, 0.25));
}

.profile-image {
    width: 320px;
    height: 400px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(97, 216, 0, 0.2);
    position: relative;
    z-index: 10;
}

/* Results Section */
.results {
    padding: 96px 0;
    background: rgb(50, 50, 69);
    position: relative;
    overflow: hidden;
}

.results-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(110, 32, 230, 0.1) 0%, rgb(50, 50, 69) 50%, rgba(97, 216, 0, 0.05) 100%);
}

.results-decorations {
    position: absolute;
    inset: 0;
}

.decoration-4 {
    top: 40px;
    right: 40px;
    width: 200px;
    height: 200px;
    background: rgba(110, 32, 230, 0.1);
}

.decoration-5 {
    bottom: 40px;
    left: 40px;
    width: 150px;
    height: 150px;
    background: rgba(97, 216, 0, 0.1);
}

.results-content {
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

.section-title {
    font-size: 3.5rem;
    font-weight: 900;
    color: white;
    margin-bottom: 48px;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.section-subtitle {
    font-size: clamp(1.25rem, 3vw, 1.5rem);
    color: #d1d5db;
    margin-bottom: 80px;
    line-height: 1.6;
    font-weight: 500;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    margin-bottom: 80px;
}

.stat-card {
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: 24px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(97, 216, 0, 0.2);
}

.stat-decoration {
    position: absolute;
    top: 0;
    right: 0;
    width: 80px;
    height: 80px;
    background: rgba(97, 216, 0, 0.1);
    border-radius: 50%;
    filter: blur(20px);
}

.stat-icon {
    width: 64px;
    height: 64px;
    color: rgb(97, 216, 0);
    margin: 0 auto 24px;
    display: block;
}

.stat-number {
    font-size: 4rem;
    font-weight: 900;
    color: rgb(97, 216, 0);
    margin-bottom: 16px;
    line-height: 1;
}

.stat-label {
    color: #d1d5db;
    font-weight: 700;
    font-size: 18px;
    letter-spacing: 0.5px;
}

.urgency-banner {
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.2), rgba(185, 28, 28, 0.2));
    border: 1px solid rgba(220, 38, 38, 0.3);
    border-radius: 16px;
    padding: 32px;
    margin-bottom: 64px;
    backdrop-filter: blur(10px);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.urgency-icon {
    width: 32px;
    height: 32px;
    color: #fca5a5;
    margin: 0 auto 16px;
    display: block;
}

.urgency-text {
    color: #fca5a5;
    font-weight: 900;
    font-size: 24px;
    line-height: 1.3;
}

/* About Section */
.about {
    padding: 96px 0;
    background: #000000;
    position: relative;
    overflow: hidden;
}

.about-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(110, 32, 230, 0.1) 0%, rgba(0, 0, 0, 0.9) 50%, rgba(97, 216, 0, 0.05) 100%);
}

.about-decorations {
    position: absolute;
    inset: 0;
}

.decoration-6 {
    top: 80px;
    left: 80px;
    width: 120px;
    height: 120px;
    background: rgba(97, 216, 0, 0.1);
}

.decoration-7 {
    bottom: 80px;
    right: 80px;
    width: 180px;
    height: 180px;
    background: rgba(110, 32, 230, 0.1);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 10;
}

.about-text {
    color: white;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.about-description {
    display: flex;
    flex-direction: column;
    gap: 24px;
    font-size: 18px;
    color: #d1d5db;
    line-height: 1.7;
    font-weight: 500;
}

.about-image {
    position: relative;
    display: flex;
    justify-content: center;
}

.about-image-decorations {
    position: absolute;
    inset: 0;
}

.about-decoration {
    position: absolute;
    border-radius: 50%;
    filter: blur(30px);
}

.about-decoration-1 {
    top: -24px;
    right: -24px;
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, rgba(97, 216, 0, 0.2), rgba(110, 32, 230, 0.2));
}

.about-decoration-2 {
    bottom: -24px;
    left: -24px;
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, rgba(110, 32, 230, 0.25), rgba(97, 216, 0, 0.25));
}

.about-profile-image {
    width: 300px;
    height: 360px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(97, 216, 0, 0.2);
    position: relative;
    z-index: 10;
}

/* Testimonials Section */
.testimonials {
    padding: 96px 0;
    background: rgb(50, 50, 69);
    position: relative;
    overflow: hidden;
}

.testimonials-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(110, 32, 230, 0.05) 0%, rgb(50, 50, 69) 100%);
}

.testimonials-decorations {
    position: absolute;
    inset: 0;
}

.decoration-8 {
    top: 0;
    left: 25%;
    width: 220px;
    height: 220px;
    background: rgba(110, 32, 230, 0.08);
}

.decoration-9 {
    bottom: 0;
    right: 25%;
    width: 180px;
    height: 180px;
    background: rgba(97, 216, 0, 0.08);
}

.testimonials-header {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
    z-index: 10;
}

.testimonials-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
    position: relative;
    z-index: 10;
}

/* Vídeo Depoimento */
.video-testimonial {
    position: sticky;
    top: 32px;
}

.video-container {
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    border-radius: 24px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    border: 2px solid rgba(110, 32, 230, 0.3);
    position: relative;
}

.video-decoration {
    position: absolute;
    inset: -4px;
    background: linear-gradient(135deg, rgba(110, 32, 230, 0.5), rgba(97, 216, 0, 0.5));
    border-radius: 24px;
    filter: blur(8px);
    opacity: 0.3;
    z-index: -1;
}

.video-header {
    background: linear-gradient(135deg, rgba(110, 32, 230, 0.8), rgba(97, 216, 0, 0.8));
    padding: 24px 32px;
    text-align: center;
}

.video-header h3 {
    font-size: 20px;
    font-weight: 900;
    color: white;
    letter-spacing: 0.5px;
}

.video-frame {
    padding: 32px;
    position: relative;
}

.video-placeholder {
    background: linear-gradient(135deg, rgb(50, 50, 69), #000000);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(110, 32, 230, 0.3);
    aspect-ratio: 9/16;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
}

.video-placeholder:hover {
    border-color: rgba(97, 216, 0, 0.5);
}

.play-icon {
    width: 80px;
    height: 80px;
    color: rgb(97, 216, 0);
    margin-bottom: 24px;
    filter: drop-shadow(0 0 20px rgba(97, 216, 0, 0.3));
}

.video-title {
    font-size: 20px;
    font-weight: 900;
    margin-bottom: 12px;
    letter-spacing: 0.5px;
}

.video-subtitle {
    font-size: 14px;
    color: #d1d5db;
    font-weight: 500;
}

.video-info {
    text-align: center;
    margin-top: 32px;
}

.video-quote {
    color: rgb(110, 32, 230);
    font-style: italic;
    font-weight: 500;
    font-size: 16px;
    margin-bottom: 16px;
    line-height: 1.6;
}

.video-author .author-name {
    font-weight: 900;
    color: white;
    font-size: 20px;
    margin-bottom: 4px;
}

.video-author .author-title {
    color: rgb(97, 216, 0);
    font-weight: 700;
    font-size: 14px;
}

/* Text Testimonials */
.text-testimonials {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.testimonial-card {
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    padding: 32px;
    border: 1px solid rgba(110, 32, 230, 0.2);
    position: relative;
    overflow: hidden;
}

.testimonial-decoration {
    position: absolute;
    top: 0;
    right: 0;
    width: 80px;
    height: 80px;
    background: rgba(110, 32, 230, 0.1);
    border-radius: 50%;
    filter: blur(20px);
}

.testimonial-content {
    display: flex;
    gap: 24px;
    align-items: flex-start;
    position: relative;
    z-index: 10;
}

.testimonial-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 2px solid rgb(97, 216, 0);
    flex-shrink: 0;
    object-fit: cover;
}

.testimonial-text {
    flex: 1;
}

.stars {
    display: flex;
    gap: 4px;
    margin-bottom: 16px;
}

.star {
    width: 20px;
    height: 20px;
    color: rgb(97, 216, 0);
}

.testimonial-quote {
    color: #e5e7eb;
    margin-bottom: 24px;
    font-style: italic;
    font-weight: 500;
    line-height: 1.6;
    font-size: 18px;
}

.testimonial-author .author-name {
    font-weight: 900;
    color: white;
    font-size: 18px;
    margin-bottom: 4px;
}

.testimonial-author .author-title {
    color: rgb(97, 216, 0);
    font-weight: 700;
    font-size: 14px;
}

/* Final CTA Section */
.final-cta {
    padding: 96px 0;
    background: #000000;
    position: relative;
    overflow: hidden;
}

.final-cta-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(110, 32, 230, 0.2) 0%, rgba(0, 0, 0, 0.9) 50%, rgba(110, 32, 230, 0.1) 100%);
}

.final-cta-decorations {
    position: absolute;
    inset: 0;
}

.decoration-10 {
    top: 40px;
    left: 40px;
    width: 150px;
    height: 150px;
    background: rgba(97, 216, 0, 0.1);
    animation: pulse 3s ease-in-out infinite;
}

.decoration-11 {
    bottom: 40px;
    right: 40px;
    width: 200px;
    height: 200px;
    background: rgba(110, 32, 230, 0.15);
}

.decoration-12 {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    background: rgba(97, 216, 0, 0.1);
}

.final-cta-content {
    text-align: center;
    position: relative;
    z-index: 10;
}

.final-title {
    font-size: 4.5rem;
    font-weight: 900;
    color: white;
    margin-bottom: 48px;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.final-subtitle {
    font-size: 24px;
    margin-bottom: 64px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    color: #d1d5db;
    font-weight: 500;
}

.final-urgency {
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.2), rgba(185, 28, 28, 0.2));
    border: 1px solid rgba(220, 38, 38, 0.4);
    border-radius: 16px;
    padding: 40px;
    margin-bottom: 64px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.urgency-pulse {
    position: absolute;
    inset: 0;
    background: rgba(220, 38, 38, 0.05);
    animation: pulse 2s ease-in-out infinite;
}

.final-urgency .urgency-icon {
    width: 64px;
    height: 64px;
    color: #fca5a5;
    margin: 0 auto 24px;
    display: block;
    position: relative;
    z-index: 10;
}

.final-urgency .urgency-text {
    color: #fca5a5;
    font-weight: 900;
    font-size: 28px;
    line-height: 1.3;
    position: relative;
    z-index: 10;
}

.final-cta-button {
    background: linear-gradient(135deg, rgb(97, 216, 0), rgb(80, 180, 0));
    color: #000000;
    font-weight: 900;
    padding: 32px 64px;
    border-radius: 16px;
    font-size: 24px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 48px;
}

.final-cta-button:hover {
    transform: scale(1.1);
    box-shadow: 0 25px 50px rgba(97, 216, 0, 0.5);
}

.final-cta-button .icon {
    width: 32px;
    height: 32px;
    transition: transform 0.3s ease;
}

.final-cta-button:hover .icon {
    transform: translateX(8px);
}

.final-note {
    color: #9ca3af;
    font-size: 18px;
    font-weight: 500;
}

/* Footer */
.footer {
    background: rgb(50, 50, 69);
    color: white;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.footer-decorations {
    position: absolute;
    inset: 0;
}

.decoration-13 {
    top: 0;
    left: 33%;
    width: 120px;
    height: 120px;
    background: rgba(97, 216, 0, 0.08);
}

.decoration-14 {
    bottom: 0;
    right: 33%;
    width: 100px;
    height: 100px;
    background: rgba(110, 32, 230, 0.08);
}

.footer-content {
    text-align: center;
    position: relative;
    z-index: 10;
}

.footer-brand {
    margin-bottom: 64px;
}

.footer-logo {
    font-size: 48px;
    font-weight: 900;
    background: linear-gradient(135deg, rgb(97, 216, 0), rgb(110, 32, 230));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.footer-tagline {
    color: #d1d5db;
    font-weight: 500;
    font-size: 20px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 64px;
}

.footer-copyright {
    color: #9ca3af;
    font-weight: 500;
    font-size: 18px;
}

/* Animations */
@keyframes pulse {
    0%, 100% {
        opacity: 0.3;
    }
    50% {
        opacity: 0.6;
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content,
    .about-content {
        grid-template-columns: 1fr;
        gap: 48px;
        text-align: center;
    }
    
    .testimonials-content {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .video-testimonial {
        position: static;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }
    
    .hero,
    .results,
    .about,
    .testimonials,
    .final-cta {
        padding: 64px 0;
    }
    
    .hero-features {
        flex-direction: column;
        gap: 16px;
        align-items: center;
    }
    
    .cta-button,
    .final-cta-button {
        padding: 16px 32px;
        font-size: 16px;
    }
    
    .final-cta-button {
        padding: 24px 48px;
        font-size: 18px;
    }
    
    .profile-image,
    .about-profile-image {
        width: 280px;
        height: auto;
    }
    
    .testimonial-content {
        flex-direction: column;
        text-align: center;
    }
    
    .testimonial-avatar {
        align-self: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .final-title {
        font-size: 2.5rem;
    }
    
    .stat-number {
        font-size: 3rem;
    }
    
    .urgency-text {
        font-size: 18px;
    }
    
    .final-urgency .urgency-text {
        font-size: 20px;
    }
}