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

body {
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background: #ffffff;
}

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

/* Barra de Notificação */
.notification-bar {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    transition: all 0.5s ease;
}

.notification-content {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 320px;
}

.notification-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #ff6b35;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 600;
}

.notification-bar p {
    font-size: 14px;
    color: #2c3e50;
}

.notification-bar strong {
    font-weight: 600;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #e0f2fe 0%, #bae6fd 50%, #e0f2fe 100%);
    padding: 80px 20px 100px;
    position: relative;
}

.hero-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.3));
}

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

.hero-badge {
    display: inline-block;
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    border-radius: 50px;
    padding: 8px 16px;
    margin-bottom: 24px;
}

.hero-badge p {
    font-size: 14px;
    font-weight: 600;
    color: #dc2626;
}

.hero-title {
    font-size: 48px;
    font-weight: 900;
    color: #1a202c;
    margin-bottom: 24px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 20px;
    color: #4b5563;
    margin-bottom: 32px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-video {
    max-width: 400px;
    margin: 0 auto 32px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

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

/* Botões */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-weight: 700;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
    border: 2px solid transparent;
}

.btn-primary {
    background: #ff6b35;
    color: white;
    border-color: #e55a2b;
}

.btn-primary:hover {
    background: #e55a2b;
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(255, 107, 53, 0.3);
}

.btn-outline {
    background: transparent;
    color: #ff6b35;
    border-color: #ff6b35;
}

.btn-outline:hover {
    background: #ff6b35;
    color: white;
}

.btn-lg {
    padding: 16px 32px;
    font-size: 18px;
}

/* Sections */
.section {
    padding: 80px 20px;
}

.section-alt {
    background: #f9fafb;
}

.section-title {
    font-size: 36px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 16px;
    color: #1a202c;
}

.section-subtitle {
    text-align: center;
    color: #6b7280;
    margin-bottom: 48px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    max-width: 1000px;
    margin: 0 auto;
}

.feature-card {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 32px;
    display: flex;
    gap: 16px;
}

.feature-icon {
    width: 64px;
    height: 64px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon.orange {
    background: #fed7aa;
    color: #f97316;
}

.feature-icon.blue {
    background: #bfdbfe;
    color: #3b82f6;
}

.feature-content h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #1a202c;
}

.feature-list {
    list-style: none;
}

.feature-list li {
    display: flex;
    gap: 8px;
    align-items: flex-start;
    margin-bottom: 8px;
    color: #6b7280;
}

.feature-list svg {
    flex-shrink: 0;
    color: #10b981;
    margin-top: 2px;
}

/* Gallery */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto;
}

.gallery-item {
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #e5e7eb;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: all 0.3s;
}

.gallery-item:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 16px rgba(0,0,0,0.15);
}

.gallery-item img {
    width: 100%;
    height: auto;
    display: block;
}

/* Benefits Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.benefit-card {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 32px;
    text-align: center;
    transition: all 0.3s;
}

.benefit-card:hover {
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
}

.benefit-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: #fed7aa;
    color: #f97316;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.benefit-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #1a202c;
}

.benefit-card p {
    font-size: 14px;
    color: #6b7280;
}

/* Countdown */
.countdown-container {
    text-align: center;
    margin-bottom: 48px;
}

.countdown-label {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 16px;
    color: #1a202c;
}

.countdown {
    display: flex;
    justify-content: center;
    gap: 16px;
}

.countdown-box {
    text-align: center;
}

.countdown-value {
    background: #dc2626;
    color: white;
    border-radius: 8px;
    padding: 12px 16px;
    min-width: 70px;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 8px;
}

.countdown-label-small {
    font-size: 12px;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Pricing */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    max-width: 1000px;
    margin: 0 auto;
}

.pricing-card {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 32px;
    position: relative;
}

.pricing-card-popular {
    border: 2px solid #ff6b35;
    box-shadow: 0 12px 24px rgba(255, 107, 53, 0.2);
    transform: scale(1.05);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #ff6b35;
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

.pricing-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #1a202c;
}

.pricing-subtext {
    font-size: 14px;
    color: #6b7280;
    margin-bottom: 16px;
}

.pricing-amount {
    margin-bottom: 24px;
}

.pricing-original {
    font-size: 20px;
    color: #9ca3af;
    text-decoration: line-through;
    margin-right: 12px;
}

.pricing-current {
    font-size: 48px;
    font-weight: 800;
    color: #10b981;
}

.pricing-subtitle {
    font-size: 14px;
    color: #6b7280;
    margin-top: 4px;
}

.pricing-features {
    list-style: none;
    margin-bottom: 32px;
}

.pricing-features li {
    display: flex;
    gap: 8px;
    align-items: flex-start;
    margin-bottom: 12px;
    color: #6b7280;
}

.pricing-features svg {
    flex-shrink: 0;
    color: #10b981;
    margin-top: 2px;
}

.pricing-features .feature-bonus {
    font-weight: 600;
    color: #1a202c;
}

/* Testimonials */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial-card {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 32px;
    text-align: center;
}

.testimonial-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin: 0 auto 16px;
    border: 2px solid rgba(255, 107, 53, 0.2);
}

.testimonial-stars {
    display: flex;
    justify-content: center;
    gap: 4px;
    margin-bottom: 16px;
}

.testimonial-quote {
    font-style: italic;
    color: #6b7280;
    margin-bottom: 16px;
    line-height: 1.7;
}

.testimonial-name {
    font-weight: 600;
    color: #1a202c;
    margin-bottom: 4px;
}

.testimonial-role {
    font-size: 14px;
    color: #6b7280;
}

/* Creator Section */
.creator-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 48px;
    max-width: 1000px;
    margin: 0 auto;
    align-items: center;
}

.creator-image img {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    border-radius: 12px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
    border: 2px solid rgba(255, 107, 53, 0.2);
}

.creator-name {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 8px;
    color: #1a202c;
}

.creator-title {
    font-size: 20px;
    color: #ff6b35;
    margin-bottom: 24px;
}

.creator-bio {
    color: #6b7280;
    margin-bottom: 16px;
    line-height: 1.8;
}

.creator-bio strong {
    color: #1a202c;
}

.creator-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 32px;
}

.creator-badge {
    background: #f3f4f6;
    color: #1a202c;
    padding: 10px 16px;
    border-radius: 8px;
    font-size: 14px;
}

.creator-badge strong {
    color: #ff6b35;
}

/* Guarantee */
.guarantee-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 48px;
    max-width: 900px;
    margin: 0 auto 48px;
}

.guarantee-step {
    text-align: center;
}

.guarantee-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(255, 107, 53, 0.1);
    color: #ff6b35;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    position: relative;
}

.guarantee-number {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #ff6b35;
    color: white;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
}

.guarantee-step h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #1a202c;
}

.guarantee-step p {
    color: #6b7280;
}

/* FAQ */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    margin-bottom: 16px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    background: transparent;
    border: none;
    padding: 20px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    color: #1a202c;
    text-align: left;
    transition: color 0.2s;
}

.faq-question:hover {
    color: #ff6b35;
}

.faq-question svg {
    flex-shrink: 0;
    transition: transform 0.3s;
}

.faq-question.active svg {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer p {
    padding: 0 24px 20px;
    color: #6b7280;
    line-height: 1.8;
}

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

/* Footer */
.footer {
    background: #1e3a8a;
    color: white;
    padding: 48px 20px;
}

.footer-content {
    text-align: center;
    margin-bottom: 32px;
}

.footer-content h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
}

.footer-content p {
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.8;
}

.footer-copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 32px;
    text-align: center;
}

.footer-copyright p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

/* Utility */
.text-center {
    text-align: center;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 32px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .pricing-card-popular {
        transform: scale(1);
    }
    
    .features-grid,
    .benefits-grid,
    .pricing-grid,
    .testimonials-grid,
    .creator-grid {
        grid-template-columns: 1fr;
    }
}
