:root {
  /* App Colors */
  --primary-bg: #0B0F17;
  --surface-bg: #0F1522;
  --border-subtle: #1C2540;
  --text-primary: #D7E1F9;
  --text-soft: #9FB3D9;
  --text-muted: #7A8DAF;
  --accent-cyan: #22D3EE;
  --gradient-blue: #3B82F6;
  --gradient-teal: #2DD4BF;
  --shadow-color: rgba(34, 211, 238, 0.1);
}

/* Reset e configurações base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: var(--primary-bg);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    font-size: 16px;
}

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

@media (min-width: 1200px) {
    .container {
        max-width: 1200px;
    }
}

.section {
    padding: 48px 0;
}

@media (min-width: 768px) {
    .section {
        padding: 72px 0;
    }
}

/* Tipografia */
h1, h2, h3 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    background: linear-gradient(135deg, var(--text-primary), var(--accent-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--text-primary);
    font-weight: 600;
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    color: var(--text-primary);
    font-weight: 600;
}

p {
    font-size: 1.1rem;
    color: var(--text-soft);
    margin-bottom: 15px;
    line-height: 1.7;
}

/* Texto muted para elementos secundários */
.text-muted {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Destaque para valores e elementos importantes */
.highlight {
    color: var(--accent-cyan);
    font-weight: 600;
}

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

/* Gradientes base */
.gradient-primary {
    background: linear-gradient(to right, var(--gradient-blue), var(--gradient-teal));
}

.gradient-secondary {
    background: linear-gradient(to bottom right, var(--gradient-blue), var(--gradient-teal));
}

.gradient-vertical {
    background: linear-gradient(to bottom, var(--gradient-blue), var(--gradient-teal));
}

/* Bloco 1 - Hero Section */
.hero-section {
    background: var(--primary-bg);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, rgba(34, 211, 238, 0.05) 0%, transparent 70%);
    z-index: 1;
}

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

.badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--gradient-blue), var(--gradient-teal));
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;

    opacity: 0.9;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    margin-bottom: 40px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    line-height: 1.2;
}

.cta-button {
    display: inline-block;
    padding: 16px 32px;
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.25s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--gradient-blue), var(--gradient-teal));
    color: white;
    box-shadow: 0 4px 20px var(--shadow-color);

}

.primary-cta {
    background: linear-gradient(45deg, #00ffff, #00e5ff);
    color: #0f0f0f;
    font-weight: 700;
    box-shadow: 0 10px 30px rgba(0, 255, 255, 0.4);

}

.primary-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(34, 211, 238, 0.4);
    background: linear-gradient(135deg, var(--gradient-teal), var(--gradient-blue));
    filter: brightness(1.1);
}

.microcopy {
    margin-top: 20px;
    font-size: 14px;
    opacity: 0.8;
    font-style: italic;
}

/* Bloco 2 - Explicação */
.explanation-section {
    padding: 60px 0;
    background: var(--primary-bg);
}

.explanation-box {
    background: var(--surface-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-subtle);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.explanation-box p {
    font-size: 18px;
    line-height: 1.8;
    color: #e5e7eb;
}

/* Bloco 3 - Benefícios */
.benefits-section {
    padding: 80px 0;
    background: var(--primary-bg);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 50px;
}

@media (min-width: 768px) {
    .benefits-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.benefit-card {
    background: var(--surface-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-subtle);
    border-radius: 16px;
    padding: 30px;
    text-align: center;
    transition: all 0.25s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.benefit-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-cyan);
    box-shadow: 0 10px 40px var(--shadow-color);
}

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

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

.benefit-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-cyan);
    box-shadow: 0 10px 40px var(--shadow-color);
}

.benefit-icon {
    font-size: 2.5rem;
    color: #00ffff;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 8px rgba(0, 255, 255, 0.4));
}

.benefit-card h3 {
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    line-height: 1.4;
}

/* Bloco 4 - Valor */
.value-section {
    padding: 80px 0;
    background: var(--primary-bg);
}

.value-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    background: var(--surface-bg);
    padding: 40px;
    border-radius: 12px;
    border: 1px solid var(--border-subtle);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.value-content p {
    font-size: 24px;
    line-height: 1.6;
    color: #e5e7eb;
}

.value-content strong {
    color: var(--accent-cyan);
    font-weight: 800;
    text-shadow: 0 0 8px var(--shadow-color);
}

/* Bloco 5 - Oferta */
.offer-section {
    padding: 80px 0;
    background: var(--primary-bg);
    position: relative;
}

.offer-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, var(--shadow-color) 0%, transparent 70%);
}

.offer-content {
    position: relative;
    z-index: 2;
    text-align: center;
    background: var(--surface-bg);
    padding: 50px 40px;
    border-radius: 16px;
    border: 2px solid var(--accent-cyan);
    max-width: 700px;
    margin: 0 auto;
    box-shadow: 0 0 40px var(--shadow-color);
}

.offer-text {
    font-size: 20px;
    margin-bottom: 40px;
    color: #ffffff;
}

.price-highlight {
    margin: 40px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.price-arrow {
    font-size: 2rem;

}

.price {
    font-size: clamp(3rem, 8vw, 5rem);
    font-weight: 900;
    color: #00ffff;
    text-shadow: 0 0 20px rgba(0, 255, 255, 0.8);
    filter: drop-shadow(0 0 10px rgba(0, 255, 255, 0.5));
}

.price-subtitle {
    font-size: 18px;
    color: #ffffff;
    opacity: 0.9;
}

.secondary-cta {
    background: linear-gradient(45deg, #4AB647, #7BC371);
    color: white;
    font-weight: 700;
    box-shadow: 0 10px 30px rgba(74, 182, 71, 0.4);
    transition: all 0.3s ease;
}

.secondary-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(74, 182, 71, 0.6);
    filter: brightness(1.1);
}

.secondary-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(74, 182, 71, 0.6);
    filter: brightness(1.1);
}

/* Bloco 6 - Garantia */
.guarantee-section {
    padding: 80px 0;
    background: var(--primary-bg);
}

.guarantee-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    background: var(--surface-bg);
    padding: 40px;
    border-radius: 12px;
    border: 1px solid var(--border-subtle);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.guarantee-icon {
    font-size: 4rem;
    color: var(--accent-cyan);
    margin-bottom: 30px;
    filter: drop-shadow(0 0 12px var(--shadow-color));
}

.guarantee-content p {
    font-size: 18px;
    line-height: 1.8;
    color: #e5e7eb;
}

/* Bloco 7 - Prova Social */
.social-proof-section {
    padding: 80px 0;
    background: var(--primary-bg);
}

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

.testimonial {
    text-align: center;
}

.testimonial-bubble {
    background: var(--surface-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-subtle);
    border-radius: 16px;
    padding: 30px;
    position: relative;
    transition: all 0.25s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}



.testimonial-bubble::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 8px solid var(--border-subtle);
}

.testimonial-bubble p {
    font-size: 16px;
    font-style: italic;
    color: #ffffff;
    margin: 0;
}

/* Bloco 8 - FAQ */
.faq-section {
    padding: 80px 0;
    background: var(--primary-bg);
}

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

.faq-item {
    margin-bottom: 20px;
    border-radius: 16px;
    overflow: hidden;
    background: var(--surface-bg);
    border: 1px solid var(--border-subtle);
    transition: all 0.25s ease;
}

.faq-question:hover {
    background: rgba(59, 130, 246, 0.1);
    border-color: var(--accent-cyan);
}

.faq-question {
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--surface-bg);
    transition: all 0.25s ease;
}



.faq-question span {
    font-size: 18px;
    font-weight: 600;
    color: #e5e7eb;
}

.faq-question i {
    color: var(--accent-cyan);
    transition: transform 0.25s ease;
}

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

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

.faq-answer p {
    color: #e5e7eb;
    font-size: 16px;
    line-height: 1.6;
}

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

.faq-item.active {
    border-color: var(--accent-cyan);
    box-shadow: 0 4px 20px var(--shadow-color);
    background: linear-gradient(135deg, var(--surface-bg), rgba(59, 130, 246, 0.1));
}

/* Bloco 9 - CTA Final */
.final-cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(45, 212, 191, 0.05));
    position: relative;
    text-align: center;
}

.final-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, var(--shadow-color) 0%, transparent 70%);
}

.final-cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
    background: var(--surface-bg);
    padding: 60px 40px;
    border-radius: 24px;
    border: 2px solid var(--accent-cyan);
    max-width: 800px;
    margin: 0 auto;
    backdrop-filter: blur(15px);
    box-shadow: 0 20px 60px var(--shadow-color);
}

.final-cta-content h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.final-subtitle {
    font-size: 18px;
    margin-bottom: 40px;
    opacity: 0.9;
}

.final-cta {
    background: linear-gradient(45deg, #4AB647, #7BC371);
    color: white;
    font-weight: 700;
    box-shadow: 0 10px 30px rgba(74, 182, 71, 0.4);
    margin-bottom: 40px;
    transition: all 0.3s ease;
}

.final-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(74, 182, 71, 0.6);
    filter: brightness(1.1);
}

.final-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(74, 182, 71, 0.6);
    filter: brightness(1.1);
}

/* Timer */
.timer {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 30px;
}

.timer-item {
    background: rgba(0, 0, 0, 0.8);
    border-radius: 16px;
    padding: 20px;
    text-align: center;
    border: 2px solid var(--accent-cyan);

    box-shadow: 0 4px 20px var(--shadow-color);
    font-family: 'Courier New', monospace;
    animation: timer-pulse 2s ease-in-out infinite;
}

.timer-item span {
    display: block;
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--accent-cyan);
    text-shadow: 0 0 10px var(--shadow-color);
}

.timer-item label {
    font-size: 12px;
    color: #e5e7eb;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.timer-separator {
    font-size: 2rem;
    font-weight: 800;
    color: var(--accent-cyan);
    animation: blink 1s infinite;
}

/* Animações */
@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

@keyframes glow {
    0%, 100% {
        box-shadow: 0 0 5px rgba(0, 255, 255, 0.5);
    }
    50% {
        box-shadow: 0 0 20px rgba(0, 255, 255, 0.8), 0 0 30px rgba(0, 255, 255, 0.6);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

@keyframes pulse-glow {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 10px rgba(74, 182, 71, 0.3);
    }
    50% {
        transform: scale(1.02);
        box-shadow: 0 0 25px rgba(74, 182, 71, 0.6), 0 0 35px rgba(74, 182, 71, 0.4);
    }
}

@keyframes timer-pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 4px 20px var(--shadow-color);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 6px 30px var(--shadow-color), 0 0 20px rgba(0, 255, 255, 0.3);
    }
}

@keyframes blink {
    0%, 50% {
        opacity: 1;
    }
    51%, 100% {
        opacity: 0.7;
    }
}

/* Responsividade */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .cta-button {
        padding: 15px 30px;
        font-size: 16px;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .price-highlight {
        flex-direction: column;
        gap: 10px;
    }
    
    .timer {
        flex-direction: row;
        gap: 5px;
    }
    
    .timer-item {
        padding: 10px 15px;
    }
    
    .timer-item span {
        font-size: 1.5rem;
    }
    
    .testimonials {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .price {
        font-size: 3rem;
    }
    
    .final-cta-content h2 {
        font-size: 1.8rem;
    }
}