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

html {
    scroll-behavior: smooth;
}

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

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

/* Hero Section */
.hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #2a2a2a 100%);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 80%, rgba(255, 215, 0, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(0, 255, 0, 0.1) 0%, transparent 50%);
    animation: pulse 4s ease-in-out infinite alternate;
}

@keyframes pulse {
    0% { opacity: 0.5; }
    100% { opacity: 1; }
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    width: 100%;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.3);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    color: #FFD700;
    margin-bottom: 24px;
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    0% { box-shadow: 0 0 5px rgba(255, 215, 0, 0.3); }
    100% { box-shadow: 0 0 20px rgba(255, 215, 0, 0.6); }
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background: #FFD700;
    border-radius: 50%;
    animation: pulse-dot 1.5s ease-in-out infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.2); }
}

.hero-title {
    font-family: 'Inter', sans-serif;
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 24px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.highlight-money {
    color: #FFD700;
    text-shadow: 0 0 30px rgba(255, 215, 0, 0.5);
}

.highlight-profit {
    color: #00FF00;
    text-shadow: 0 0 30px rgba(0, 255, 0, 0.5);
}

.highlight-time {
    color: #FF6B35;
    text-shadow: 0 0 30px rgba(255, 107, 53, 0.5);
}

.roi-highlight {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin: 24px 0;
    padding: 16px 24px;
    background: rgba(255, 215, 0, 0.1);
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 16px;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.roi-label {
    font-size: 1rem;
    font-weight: 600;
    color: #FFD700;
}

.roi-number {
    font-family: 'Inter', sans-serif;
    font-size: 3rem;
    font-weight: 900;
    color: #00FF00;
    text-shadow: 0 0 20px rgba(0, 255, 0, 0.5);
}

.roi-percent {
    font-size: 1.2rem;
    font-weight: 600;
    color: #00FF00;
}

.hero-subtitle {
    font-size: clamp(1.1rem, 3vw, 1.4rem);
    margin-bottom: 40px;
    color: #cccccc;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.highlight-text {
    color: #FFD700;
    font-weight: 600;
}

/* CTA Buttons */
.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    padding: 20px 40px;
    border-radius: 12px;
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    margin: 10px;
    position: relative;
    overflow: hidden;
}

.cta-primary {
    background: linear-gradient(45deg, #FFD700, #FFA500);
    color: #000000;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.4);
}

.cta-secondary {
    background: linear-gradient(45deg, #00FF00, #32CD32);
    color: #000000;
    box-shadow: 0 10px 30px rgba(0, 255, 0, 0.4);
}

.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 {
    transform: translateY(-3px);
}

.cta-primary:hover {
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.6);
}

.cta-secondary:hover {
    box-shadow: 0 15px 40px rgba(0, 255, 0, 0.6);
}

.cta-arrow {
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.cta-button:hover .cta-arrow {
    transform: translateX(5px);
}

.large {
    padding: 24px 48px;
    font-size: 1.2rem;
}

/* Trust Indicators */
.trust-indicators {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: #cccccc;
}

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

/* Section Titles */
.section-title {
    font-family: 'Inter', sans-serif;
    font-size: clamp(2rem, 6vw, 3.5rem);
    font-weight: 800;
    text-align: center;
    margin-bottom: 40px;
    line-height: 1.2;
}

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

.highlight {
    color: #FFD700;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
}

/* Proof Section */
.proof {
    padding: 100px 0;
    background: linear-gradient(180deg, #0a0a0a 0%, #1a1a1a 100%);
}

.proof-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.proof-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.proof-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 215, 0, 0.3);
    box-shadow: 0 20px 40px rgba(255, 215, 0, 0.1);
}

.highlight-card {
    border-color: rgba(0, 255, 0, 0.3);
    background: rgba(0, 255, 0, 0.05);
}

.highlight-card:hover {
    border-color: rgba(0, 255, 0, 0.5);
    box-shadow: 0 20px 40px rgba(0, 255, 0, 0.2);
}

.proof-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.proof-number {
    font-family: 'Inter', sans-serif;
    font-size: 2.5rem;
    font-weight: 900;
    color: #FFD700;
    margin-bottom: 10px;
}

.highlight-card .proof-number {
    color: #00FF00;
}

.proof-label {
    font-size: 1rem;
    color: #cccccc;
    font-weight: 500;
}

.proof-statement {
    text-align: center;
    font-size: 1.1rem;
    color: #cccccc;
    margin-top: 40px;
}

/* Discovery Section */
.discovery {
    padding: 100px 0;
    background: linear-gradient(180deg, #1a1a1a 0%, #0a0a0a 100%);
}

.discovery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.discovery-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px 30px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.discovery-item:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 215, 0, 0.3);
    box-shadow: 0 15px 30px rgba(255, 215, 0, 0.1);
}

.discovery-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.discovery-item h3 {
    font-family: 'Inter', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: #FFD700;
}

.discovery-item p {
    color: #cccccc;
    line-height: 1.6;
}

/* Exclusivity Section */
.exclusivity {
    padding: 100px 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
}

.exclusivity-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.exclusivity-text {
    font-size: 1.2rem;
    color: #cccccc;
    margin-bottom: 30px;
    line-height: 1.6;
}

.exclusivity-highlight {
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 16px;
    padding: 30px;
    margin: 40px 0;
}

.exclusivity-highlight p {
    font-size: 1.1rem;
    color: #FFD700;
    margin: 0;
}

/* Urgency Section */
.urgency {
    padding: 100px 0;
    background: linear-gradient(135deg, #FF6B35 0%, #FF4500 100%);
    text-align: center;
}

.urgency-title {
    font-family: 'Inter', sans-serif;
    font-size: clamp(2rem, 6vw, 3.5rem);
    font-weight: 900;
    margin-bottom: 30px;
    color: #ffffff;
}

.urgency-text {
    font-size: 1.2rem;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.countdown {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 40px 0;
    flex-wrap: wrap;
}

.countdown-item {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 15px;
    padding: 20px;
    min-width: 100px;
    backdrop-filter: blur(10px);
}

.countdown-number {
    display: block;
    font-family: 'Inter', sans-serif;
    font-size: 2.5rem;
    font-weight: 900;
    color: #ffffff;
}

.countdown-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: #cccccc;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.vagas-counter {
    margin-top: 30px;
    font-size: 1.2rem;
    font-weight: 600;
}

.vagas-number {
    font-family: 'Inter', sans-serif;
    font-size: 2rem;
    font-weight: 900;
    color: #FFD700;
    margin: 0 8px;
}

/* Investment Section */
.investment {
    padding: 100px 0;
    background: linear-gradient(180deg, #0a0a0a 0%, #1a1a1a 100%);
}

.investment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 60px;
    margin-top: 60px;
}

.price-section {
    text-align: center;
    margin-bottom: 40px;
}

.price-label {
    font-size: 1.2rem;
    color: #cccccc;
    margin-bottom: 10px;
}

.price-current {
    font-family: 'Inter', sans-serif;
    font-size: 4rem;
    font-weight: 900;
    color: #FFD700;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
    margin-bottom: 10px;
}

.currency {
    font-size: 2rem;
    vertical-align: top;
}

.price-installments {
    font-size: 1rem;
    color: #00FF00;
    font-weight: 600;
}

.investment-includes h3 {
    font-family: 'Inter', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #FFD700;
}

.investment-includes ul {
    list-style: none;
    padding: 0;
}

.investment-includes li {
    padding: 8px 0;
    font-size: 1.1rem;
    color: #cccccc;
}

.value-comparison h3 {
    font-family: 'Inter', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #FFD700;
}

.comparison-item {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.comparison-service {
    color: #cccccc;
}

.comparison-price {
    color: #ffffff;
    font-weight: 600;
}

.comparison-highlight {
    background: rgba(255, 215, 0, 0.1);
    border-radius: 8px;
    padding: 16px;
    margin-top: 20px;
}

.comparison-highlight .comparison-price.highlight {
    color: #FFD700;
    font-size: 1.2rem;
    font-weight: 900;
}

.guarantee-section {
    text-align: center;
    margin-top: 60px;
    padding: 40px;
    background: rgba(0, 255, 0, 0.1);
    border: 1px solid rgba(0, 255, 0, 0.3);
    border-radius: 20px;
}

.guarantee-badge {
    background: rgba(0, 255, 0, 0.2);
    border: 1px solid rgba(0, 255, 0, 0.3);
    color: #00FF00;
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 600;
    margin-bottom: 20px;
    display: inline-block;
}

/* Final CTA Section */
.final-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
    text-align: center;
}

.final-cta-title {
    font-family: 'Inter', sans-serif;
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 900;
    margin-bottom: 30px;
}

.final-cta-text {
    font-size: 1.2rem;
    color: #cccccc;
    margin-bottom: 50px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.final-cta-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin-bottom: 40px;
}

.final-trust {
    font-size: 0.9rem;
    color: #cccccc;
}

/* Footer */
.footer {
    background: #000000;
    padding: 40px 0;
    text-align: center;
}

.footer-disclaimer {
    font-size: 0.9rem;
    color: #888888;
    margin-bottom: 20px;
    line-height: 1.6;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.footer-copyright {
    font-size: 0.8rem;
    color: #666666;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        min-height: 90vh;
        padding: 40px 0;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .roi-highlight {
        flex-direction: column;
        gap: 8px;
    }
    
    .roi-number {
        font-size: 2.5rem;
    }
    
    .cta-button {
        padding: 16px 32px;
        font-size: 1rem;
    }
    
    .large {
        padding: 20px 40px;
        font-size: 1.1rem;
    }
    
    .proof-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 20px;
    }
    
    .discovery-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .investment-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .countdown {
        gap: 15px;
    }
    
    .countdown-item {
        min-width: 80px;
        padding: 15px;
    }
    
    .countdown-number {
        font-size: 2rem;
    }
    
    .trust-indicators {
        gap: 20px;
    }
    
    .final-cta-buttons {
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .hero-badge {
        font-size: 10px;
        padding: 6px 12px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .price-current {
        font-size: 3rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .discovery-grid {
        grid-template-columns: 1fr;
    }
    
    .discovery-item {
        padding: 30px 20px;
    }
    
    .countdown {
        gap: 10px;
    }
    
    .countdown-item {
        min-width: 70px;
        padding: 12px;
    }
    
    .countdown-number {
        font-size: 1.5rem;
    }
    
    .trust-indicators {
        flex-direction: column;
        gap: 15px;
    }
}

/* Animações de entrada */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content > * {
    animation: fadeInUp 0.8s ease-out forwards;
}

.hero-badge { animation-delay: 0.1s; }
.hero-title { animation-delay: 0.2s; }
.roi-highlight { animation-delay: 0.3s; }
.hero-subtitle { animation-delay: 0.4s; }
.cta-button { animation-delay: 0.5s; }
.trust-indicators { animation-delay: 0.6s; }



/* Proof Image */
.proof-image {
    text-align: center;
    margin-top: 60px;
}

.dashboard-img {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 215, 0, 0.2);
}

@media (max-width: 768px) {
    .dashboard-img {
        border-radius: 10px;
    }
}



/* Proof Images Grid */
.proof-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 60px;
}

.proof-image h3 {
    color: #FFD700;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 20px;
    text-align: center;
}

/* Curiosity Highlight */
.curiosity-highlight {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(255, 69, 0, 0.1));
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 15px;
    padding: 30px;
    margin-top: 50px;
    text-align: center;
}

.curiosity-highlight p {
    font-size: 1.1rem;
    color: #FFD700;
    margin: 0;
}

@media (max-width: 768px) {
    .proof-images {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .curiosity-highlight {
        padding: 20px;
        margin-top: 30px;
    }
    
    .curiosity-highlight p {
        font-size: 1rem;
    }
}

