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

body {
    font-family: 'Exo 2', sans-serif;
    background: url('5.png'), linear-gradient(135deg, rgba(10, 10, 10, 0.8) 0%, rgba(26, 26, 26, 0.8) 50%, rgba(10, 10, 10, 0.8) 100%);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: #ffffff;
    overflow-x: hidden;
    line-height: 1.6;
}

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

/* Cores e Variáveis */
:root {
    --blue-500: #3b82f6;
    --blue-600: #2563eb;
    --teal-400: #2dd4bf;
    --teal-500: #14b8a6;
    --dark-bg: #0a0a0a;
    --dark-gray: #1a1a1a;
    --light-gray: #2a2a2a;
    --cyan: #06b6d4;
    --white: #ffffff;
    --gradient-primary: linear-gradient(135deg, #2DAE49, #7BC371);
    --gradient-text: linear-gradient(135deg, var(--blue-500), var(--teal-400));
    --gradient-secondary: linear-gradient(135deg, var(--blue-600), var(--teal-500));
    --gradient-dark: linear-gradient(135deg, #0a0a0a, #1a1a1a);
}

/* Animações Base */
@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

@keyframes glow {
    0%, 100% { box-shadow: 0 0 20px var(--blue-500); }
    50% { box-shadow: 0 0 30px var(--teal-400), 0 0 40px var(--blue-500); }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

@keyframes circuit {
    0% { stroke-dashoffset: 1000; }
    100% { stroke-dashoffset: 0; }
}

/* Tipografia */
h1, h2, h3 {
    font-family: 'Orbitron', monospace;
    font-weight: 700;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 2px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

/* Botões */
.cta-button {
    font-family: 'Orbitron', monospace;
    font-weight: 600;
    padding: 15px 30px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

.cta-button.primary {
    background: linear-gradient(135deg, #2DAE49, #7BC371);
    color: var(--dark-bg);
    box-shadow: 0 0 20px rgba(45, 174, 73, 0.3);
}

.cta-button.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 25px rgba(0, 212, 255, 0.5);
    animation: glow 2s infinite;
}

.cta-button.secondary {
    background: linear-gradient(45deg, transparent, rgba(45, 212, 191, 0.1));
    color: var(--teal-400);
    border: 3px solid var(--teal-400);
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 25px rgba(45, 212, 191, 0.4);
    animation: pulse-border 3s infinite;
}

.cta-button.secondary::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(45, 212, 191, 0.3), transparent);
    transform: rotate(45deg);
    transition: all 0.6s ease;
    opacity: 0;
}

.cta-button.secondary:hover::before {
    opacity: 1;
    animation: shine 0.6s ease-in-out;
}

.cta-button.secondary:hover {
    background: linear-gradient(45deg, var(--teal-400), var(--cyan));
    color: var(--dark-bg);
    border-color: var(--cyan);
    box-shadow: 0 0 40px rgba(45, 212, 191, 0.8), 0 0 60px rgba(0, 255, 255, 0.4);
    transform: translateY(-3px) scale(1.05);
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

@keyframes pulse-border {
    0%, 100% {
        border-color: var(--teal-400);
        box-shadow: 0 0 25px rgba(45, 212, 191, 0.4);
    }
    50% {
        border-color: var(--cyan);
        box-shadow: 0 0 35px rgba(0, 255, 255, 0.6);
    }
}

@keyframes shine {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }
    100% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
    }
}

.cta-button.large {
    font-size: 1.2rem;
    padding: 20px 40px;
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: flex-start;
    position: relative;
    overflow: hidden;
    padding-top: 2rem;
}

.hero-bg-effects {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Background removed for desktop - will be added only for mobile */
}

.hero-logo {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    filter: drop-shadow(0 0 10px rgba(0, 255, 255, 0.3));
}

.hero-content {
    text-align: center;
    z-index: 2;
    position: relative;
    animation: slideInUp 1s ease-out;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 0;
    padding-top: 0;
}

.hero-headline {
    font-size: 3.125rem;
    font-weight: 900;
    margin-bottom: 1rem;
    margin-top: 140px;
    color: white;
    text-shadow: 0 0 30px rgba(59, 130, 246, 0.5);
}

.hero-subheadline {
    font-size: 1.75rem;
    margin-bottom: 2rem;
    color: white;
    font-weight: 300;
    text-shadow: 0 0 15px rgba(6, 182, 212, 0.3);
}

/* Hero CTA Button */
.hero-cta {
    margin-top: 1rem;
    box-shadow: 0 8px 32px rgba(59, 130, 246, 0.4);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(59, 130, 246, 0.3);
}

.hero-cta:hover {
    box-shadow: 0 12px 40px rgba(59, 130, 246, 0.6);
    transform: translateY(-3px);
}

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

.ai-interface {
    background: rgba(26, 26, 26, 0.8);
    border: 1px solid var(--blue-500);
    border-radius: 15px;
    padding: 2rem;
    backdrop-filter: blur(10px);
    box-shadow: 0 0 30px rgba(59, 130, 246, 0.3);
    animation: float 3s ease-in-out infinite;
}

.probability-display {
    text-align: center;
    margin-bottom: 1.5rem;
}

.prob-label {
    display: block;
    font-size: 0.9rem;
    color: var(--cyan);
    margin-bottom: 0.5rem;
}

.prob-value {
    font-family: 'Orbitron', monospace;
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--teal-400);
    text-shadow: 0 0 20px var(--teal-400);
}

.performance-bars {
    display: flex;
    gap: 10px;
    justify-content: center;
}

.bar {
    width: 60px;
    height: 8px;
    background: var(--dark-gray);
    border-radius: 4px;
    position: relative;
    overflow: hidden;
}

.bar::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: var(--width);
    background: var(--gradient-primary);
    border-radius: 4px;
    animation: slideInUp 2s ease-out;
}

/* Como Funciona */
.how-it-works-section {
    padding: 5rem 0;
    background: var(--dark-gray);
    position: relative;
}

.how-it-works-image {
    text-align: center;
    margin-top: 3rem;
}

.how-it-works-image img {
    max-width: 50%;
    height: auto;
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.how-it-works-image img:hover {
    transform: scale(1.05);
}

.timeline {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gradient-primary);
    z-index: 1;
}

.step {
    text-align: center;
    position: relative;
    z-index: 2;
    background: var(--dark-gray);
    padding: 1rem;
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.step:hover {
    transform: translateY(-10px);
}

.step-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--gradient-text);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 2rem;
    color: var(--dark-bg);
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.5);
}

.step h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--blue-500);
}

.step p {
    font-size: 0.9rem;
    color: var(--white);
    opacity: 0.8;
}

/* Hero Bottom Image */
.hero-bottom-image {
    position: absolute;
    bottom: calc(-50% + 10px);
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    max-width: calc(100% - 160px);
    width: calc(100% - 160px);
    height: auto;
    display: block;
}

/* Mobile responsiveness for hero bottom image */
@media (max-width: 768px) {
    .hero-bottom-image {
        max-width: 95%;
        width: 95%;
        bottom: calc(-40% + 15px);
        display: block;
        visibility: visible;
    }
}

@media (max-width: 480px) {
    .hero-bottom-image {
        max-width: 90%;
        width: 90%;
        bottom: calc(-35% + 10px);
        display: block;
        visibility: visible;
    }
}

/* Hero Mobile Image - Only for mobile devices */
.hero-mobile-image {
    display: none;
    position: absolute;
    bottom: calc(-60% + 5px);
    left: 50%;
    transform: translateX(-50%);
    z-index: 0;
    max-width: 100%;
    width: 100%;
    height: auto;
}

@media (max-width: 768px) {
    .hero-mobile-image {
        display: block;
        max-width: 95%;
        width: 95%;
        bottom: calc(-55% + 210px);
    }
}

@media (max-width: 480px) {
    .hero-mobile-image {
        display: block;
        max-width: 90%;
        width: 90%;
        bottom: calc(-50% + 205px);
    }
}

/* Parceiros */
.partners-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--dark-bg) 0%, var(--dark-gray) 100%);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.partners-section .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.partners-section .section-title {
    margin-bottom: 2rem;
}

.partners-carousel {
    overflow: hidden;
    position: relative;
    width: 100%;
    max-width: 1000px;
    height: 90px;
    margin: 0 auto;
    mask: linear-gradient(90deg, transparent, white 10%, white 90%, transparent);
    -webkit-mask: linear-gradient(90deg, transparent, white 10%, white 90%, transparent);
}

.carousel-track {
    display: flex;
    align-items: center;
    white-space: nowrap;
    animation: scroll 25s linear infinite;
    width: calc(200% + 3rem);
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-50% - 5px)); }
}

.carousel-track:hover {
    animation-play-state: paused;
}

.partner-logo {
    font-family: 'Orbitron', monospace;
    font-size: 1rem;
    font-weight: 700;
    color: var(--white);
    padding: 1rem 1.8rem;
    border: 2px solid var(--white);
    border-radius: 10px;
    transition: all 0.3s ease;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-right: 1.5rem;
    min-width: 160px;
    max-width: 160px;
    justify-content: center;
    flex-shrink: 0;
    height: 60px;
    box-shadow: 0 3px 12px rgba(0, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
}

.partner-logo i {
    font-size: 1.5rem;
    color: var(--teal-400);
}

.partner-logo:hover {
    color: var(--blue-500);
    border-color: var(--blue-500);
    box-shadow: 0 0 15px rgba(59, 130, 246, 0.4);
    transform: scale(1.03);
    animation-play-state: paused;
    background: rgba(59, 130, 246, 0.1);
}

.partner-logo:hover i {
    color: var(--blue-500);
}



/* Benefícios */
.benefits-section {
    padding: 5rem 0;
    background: var(--dark-gray);
}

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

/* Centralizar o cartão de Suporte 24/7 */
.benefit-card:nth-child(5) {
    grid-column: 1 / -1;
    max-width: 400px;
    margin: 0 auto;
    justify-self: center;
}

.benefit-card {
    background: rgba(26, 26, 26, 0.8);
    border: 1px solid var(--light-gray);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.1), transparent);
    transition: left 0.5s ease;
}

.benefit-card:hover::before {
    left: 100%;
}

.benefit-card:hover {
    border-color: var(--blue-500);
    box-shadow: 0 5px 25px rgba(59, 130, 246, 0.2);
    transform: translateY(-5px);
}

.benefit-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--gradient-text);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
    color: var(--dark-bg);
}

.benefit-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--blue-500);
}

.benefit-card p {
    color: var(--white);
    opacity: 0.8;
}

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

/* Prova Social */
.social-proof-section {
    padding: 5rem 0;
    background: var(--dark-bg);
}

/* Image Carousel */
.image-carousel {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
    background: transparent;
}

.carousel-container {
    overflow: hidden;
    width: 100%;
    background: transparent;
    padding: 20px 0;
    min-height: 300px;
    display: flex;
    align-items: center;
}

.carousel-track {
    display: flex;
    gap: 6px;
    animation: scroll 20s linear infinite;
    will-change: transform;
    width: calc(200% + 30px);
}

.carousel-slide {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
}

.carousel-image {
    width: 300px;
    height: auto;
    max-height: 400px;
    object-fit: contain;
    display: block;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.carousel-image:hover {
    transform: scale(1.05);
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-50% - 15px));
    }
}

/* Responsividade para mobile */
@media (max-width: 768px) {
    .carousel-image {
        width: 250px;
        max-height: 300px;
    }
    
    .carousel-track {
        gap: 4px;
        width: calc(200% + 20px);
    }
    
    @keyframes scroll {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(calc(-50% - 10px));
        }
    }
}

@media (max-width: 480px) {
    .carousel-image {
        width: 200px;
        max-height: 250px;
    }
    
    .carousel-track {
        gap: 3px;
        width: calc(200% + 15px);
    }
    
    @keyframes scroll {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(calc(-50% - 7.5px));
        }
    }
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #333;
    transition: all 0.3s ease;
    z-index: 10;
}

.carousel-btn:hover {
    background: white;
    transform: translateY(-50%) scale(1.1);
}

.prev-btn {
    left: 20px;
}

.next-btn {
    right: 20px;
}

.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background: #667eea;
    transform: scale(1.2);
}

.testimonials-carousel {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    padding: 1.5rem;
    position: relative;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.testimonial:hover {
    box-shadow: 0 5px 25px rgba(45, 212, 191, 0.2);
    transform: translateY(-5px);
}

.testimonial-header {
    margin-bottom: 1rem;
}

.testimonial-info {
    flex: 1;
}

.testimonial-name {
    font-weight: 700;
    color: var(--dark-bg);
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

.testimonial-location {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.testimonial-rating {
    display: flex;
    gap: 0.2rem;
}

.testimonial-rating i {
    color: var(--teal-400);
    font-size: 0.9rem;
}

.testimonial-content p {
    font-size: 1rem;
    color: #333;
    line-height: 1.5;
    margin: 0;
    font-style: normal;
}

.profit-display {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    background: var(--gradient-primary);
    color: var(--dark-bg);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 700;
    font-family: 'Orbitron', monospace;
}

/* Diferenciais */
.differentials-section {
    padding: 6rem 0;
    background: var(--dark-gray);
    position: relative;
    overflow: hidden;
}

.differentials-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, rgba(6, 182, 212, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.differentials-showcase {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.differential-card {
    background: linear-gradient(145deg, rgba(26, 26, 26, 0.95), rgba(15, 15, 15, 0.9));
    border: 2px solid transparent;
    border-radius: 20px;
    padding: 3rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    backdrop-filter: blur(10px);
    min-height: 320px;
    flex: 1;
    min-width: 300px;
    max-width: 380px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.differential-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, var(--cyan), var(--teal-400), var(--blue-500));
    border-radius: 20px;
    padding: 2px;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    opacity: 0;
    transition: opacity 0.4s ease;
}

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



.card-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(6, 182, 212, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.differential-card:hover .card-glow {
    opacity: 1;
    animation: pulse-glow 2s ease-in-out infinite;
}

.hologram-effect {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent 30%, rgba(0, 255, 255, 0.15) 50%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.differential-card:hover .hologram-effect {
    opacity: 1;
    animation: hologram-sweep 3s linear infinite;
}

.card-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--cyan), var(--teal-400));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    font-size: 2rem;
    color: var(--dark-bg);
    position: relative;
    z-index: 3;
    transition: all 0.4s ease;
    box-shadow: 0 5px 20px rgba(6, 182, 212, 0.3);
}

.differential-card:hover .card-icon {
    transform: scale(1.1) rotateY(360deg);
    box-shadow: 0 8px 30px rgba(6, 182, 212, 0.5);
}

.differential-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    color: var(--cyan);
    position: relative;
    z-index: 3;
    font-weight: 700;
    line-height: 1.3;
    transition: color 0.3s ease;
}

.differential-card:hover h3 {
    color: var(--teal-400);
    text-shadow: 0 0 10px rgba(45, 212, 191, 0.5);
}

.differential-card p {
    color: var(--white);
    opacity: 0.9;
    position: relative;
    z-index: 3;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    transition: opacity 0.3s ease;
}

.differential-card:hover p {
    opacity: 1;
}

.card-accent {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--cyan), var(--teal-400), var(--blue-500));
    border-radius: 0 0 20px 20px;
    transform: scaleX(0);
    transition: transform 0.4s ease;
    transform-origin: left;
}

.differential-card:hover .card-accent {
    transform: scaleX(1);
}

.differential-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 50px rgba(6, 182, 212, 0.25), 0 5px 20px rgba(45, 212, 191, 0.15);
}



@keyframes pulse-glow {
    0%, 100% {
        opacity: 0.3;
        transform: scale(1);
    }
    50% {
        opacity: 0.6;
        transform: scale(1.1);
    }
}

@keyframes hologram-sweep {
    0% {
        transform: translateX(-100%) skewX(-15deg);
    }
    100% {
        transform: translateX(200%) skewX(-15deg);
    }
}

/* Simulador */
.simulator-section {
    padding: 5rem 0;
    background: var(--dark-bg);
}

.simulator {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.simulator-input {
    margin-bottom: 3rem;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.simulator-input label {
    display: block;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--blue-500);
}

.simulator-input input {
    background: rgba(26, 26, 26, 0.8);
    border: 2px solid var(--blue-500);
    border-radius: 8px;
    padding: 1rem;
    font-size: 1.5rem;
    color: var(--white);
    text-align: center;
    width: 300px;
    font-family: 'Orbitron', monospace;
    margin: 0 auto;
    display: block;
}



.projection-chart {
    height: 200px;
    margin-bottom: 2rem;
    background: rgba(26, 26, 26, 0.8);
    border: 1px solid var(--light-gray);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 20px;
}

#projectionChart {
    max-width: 100%;
    max-height: 100%;
}

.projection-result {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(26, 26, 26, 0.8);
    border: 1px solid var(--teal-400);
    border-radius: 10px;
    padding: 1.5rem;
}

.result-label {
    font-size: 1.1rem;
    color: var(--white);
}

.result-value {
    font-family: 'Orbitron', monospace;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--teal-400);
    text-shadow: 0 0 15px var(--teal-400);
}

/* Preços */
.pricing-section {
    padding: 5rem 0;
    background: var(--dark-gray);
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.pricing-card {
    background: rgba(26, 26, 26, 0.8);
    border: 2px solid var(--light-gray);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
}

.pricing-card.featured {
    border-color: var(--teal-400);
    box-shadow: 0 0 30px rgba(45, 212, 191, 0.3);
    transform: scale(1.05);
}

.pricing-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.2);
}

.best-offer {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-text);
    color: var(--dark-bg);
    padding: 0.5rem 2rem;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.9rem;
}

.plan-header h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--blue-500);
}

.price {
    margin-bottom: 1rem;
}

.currency {
    font-size: 1.2rem;
    color: var(--cyan);
}

.amount {
    font-family: 'Orbitron', monospace;
    font-size: 3rem;
    font-weight: 900;
    color: var(--teal-400);
}

.period {
    font-size: 1rem;
    color: var(--white);
    opacity: 0.7;
}

.savings {
    background: var(--teal-400);
    color: var(--dark-bg);
    padding: 0.3rem 1rem;
    border-radius: 15px;
    font-size: 0.9rem;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 0.5rem;
}

.monthly-equivalent {
    color: var(--cyan);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

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

.plan-features li {
    padding: 0.5rem 0;
    color: var(--white);
    display: flex;
    align-items: center;
}

.plan-features i {
    color: var(--teal-400);
    margin-right: 0.5rem;
    width: 20px;
}

.plan-button {
    width: auto;
    padding: 0.8rem 2rem;
    background: var(--gradient-primary);
    color: var(--dark-bg);
    border: none;
    border-radius: 10px;
    font-family: 'Orbitron', monospace;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
}

.plan-button:hover {
    box-shadow: 0 5px 20px rgba(59, 130, 246, 0.4);
    transform: translateY(-2px);
}

.plan-button.featured {
    background: var(--teal-400);
    animation: pulse 2s infinite;
}

/* Garantia */
.guarantee-section {
    padding: 3rem 0;
    background: var(--dark-bg);
}

.guarantee-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.guarantee-shield {
    font-size: 4rem;
    color: var(--teal-400);
    animation: float 3s ease-in-out infinite;
}

.guarantee-text h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--teal-400);
}

.guarantee-text p {
    color: var(--white);
    opacity: 0.9;
    line-height: 1.6;
}

/* FAQ */
.faq-section {
    padding: 5rem 0;
    background: var(--dark-gray);
}

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

.faq-item {
    background: rgba(26, 26, 26, 0.8);
    border: 1px solid var(--light-gray);
    border-radius: 10px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--blue-500);
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: var(--white);
    transition: all 0.3s ease;
}

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

.faq-question i {
    color: var(--cyan);
    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;
}

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

.faq-answer p {
    padding: 0 1.5rem 1.5rem;
    color: var(--white);
    opacity: 0.8;
    line-height: 1.6;
}

/* CTA Final */
.final-cta-section {
    padding: 5rem 0;
    background: var(--dark-bg);
    text-align: center;
}

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

.final-cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--blue-500);
}

.final-cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: var(--white);
    opacity: 0.8;
}

.scarcity-alert {
    margin-top: 1rem;
    padding: 1rem;
    background: rgba(255, 0, 0, 0.1);
    border: 1px solid #ff0000;
    border-radius: 8px;
    color: #ff6b6b;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    animation: pulse 2s infinite;
    white-space: nowrap;
    text-align: center;
}

.hero-scarcity {
    margin-top: 1.5rem;
    margin-bottom: 2rem;
    font-size: 0.95rem;
    background: rgba(255, 0, 0, 0.15);
    border: 2px solid #ff0000;
    box-shadow: 0 0 15px rgba(255, 0, 0, 0.3);
    order: 1;
    width: fit-content;
}

/* Rodapé */
.footer {
    background: var(--dark-gray);
    padding: 3rem 0 2rem;
    border-top: 1px solid var(--light-gray);
}

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

.footer-links {
    margin-bottom: 2rem;
}

.footer-links a {
    color: var(--cyan);
    text-decoration: none;
    margin: 0 1rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--blue-500);
}

.legal-notice {
    background: rgba(255, 255, 0, 0.1);
    border: 1px solid #ffeb3b;
    border-radius: 8px;
    padding: 1.5rem;
    color: #fff9c4;
    font-size: 0.9rem;
    line-height: 1.5;
}

.legal-notice strong {
    color: #ffeb3b;
}

/* Responsividade */
@media (max-width: 768px) {
    body {
        background: url('9.png') !important;
        background-size: cover !important;
        background-position: center top !important;
        background-repeat: no-repeat !important;
        background-attachment: fixed !important;
        margin: 0 !important;
        padding: 0 !important;
        padding-top: 100px !important;
    }
    
    html {
        background: none !important;
    }
    
    #hero, .hero-section {
        min-height: 90vh !important;
        background: transparent !important;
    }
    
    .hero-bg-effects {
        display: none !important;
    }
    
    .hero-logo {
        position: fixed !important;
        top: 20px !important;
        left: 50% !important;
        transform: translateX(-50%) !important;
        z-index: 1000 !important;
        width: 80px !important;
        height: auto !important;
        filter: drop-shadow(0 0 15px rgba(0, 255, 255, 0.5)) !important;
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
    
    * {
        box-sizing: border-box;
    }
    
    .hero-headline {
        font-size: 2.5rem;
    }
    
    .hero-subheadline {
        font-size: 1.2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .timeline {
        flex-direction: column;
        gap: 2rem;
    }
    
    .timeline::before {
        top: 0;
        bottom: 0;
        left: 50%;
        width: 2px;
        height: auto;
    }
    

    
    .partners-section {
        padding: 3rem 0;
    }
    
    .partners-carousel {
        height: 70px;
        max-width: 90%;
    }
    
    .carousel-track {
        animation-duration: 20s;
        width: calc(200% + 2rem);
    }
    
    .partner-logo {
        min-width: 130px;
        max-width: 130px;
        font-size: 0.9rem;
        padding: 0.8rem 1.2rem;
        height: 50px;
        margin-right: 1rem;
        gap: 0.6rem;
    }
    
    .partner-logo i {
        font-size: 1.2rem;
    }
    
    .guarantee-content {
        flex-direction: column;
        text-align: center;
    }
    
    .pricing-cards {
        grid-template-columns: 1fr;
    }
    
    .pricing-card.featured {
        transform: none;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-carousel {
        grid-template-columns: 1fr;
    }
    
    .differentials-showcase {
        flex-direction: column;
        gap: 2rem;
        align-items: center;
    }
    
    .differential-card {
        max-width: 100%;
        min-width: 280px;
    }
    
    .featured-card {
        transform: none;
        order: -1;
    }
    
    .featured-card:hover {
        transform: translateY(-10px) scale(1.02);
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-headline {
        font-size: 2rem;
    }
    
    .cta-button {
        padding: 12px 24px;
        font-size: 0.9rem;
    }
    
    .ai-interface {
        padding: 1.5rem;
    }
    
    .prob-value {
        font-size: 2rem;
    }
}