/* Base Styles */
:root {
    --bg-color: #0b0f19;
    --bg-alt: #131826;
    --text-primary: #f8fafc;
    --text-secondary: #94a3b8;
    --accent-color: #eab308;
    --accent-hover: #ca8a04;
    --card-bg: rgba(30, 41, 59, 0.5);
    --card-border: rgba(255, 255, 255, 0.08);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    line-height: 1.2;
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); margin-bottom: 1rem; }
h2 { font-size: clamp(1.75rem, 4vw, 2.5rem); margin-bottom: 1.5rem; }
h3 { font-size: clamp(1.25rem, 3vw, 1.75rem); }

a { text-decoration: none; }
ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }

/* Layout Utilities */
.container {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 1.5rem;
    position: relative;
    z-index: 10;
}

.section-padding { padding: 5rem 0; }
.text-center { text-align: center; }
.mt-4 { margin-top: 1rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-8 { margin-top: 2rem; }
.mt-10 { margin-top: 2.5rem; }
.mt-12 { margin-top: 3rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-10 { margin-bottom: 2.5rem; }
.mb-0 { margin-bottom: 0; }
.w-full { width: 100%; }

.bg-alt { background-color: var(--bg-alt); }

/* Components */
.badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(234, 179, 8, 0.1);
    color: var(--accent-color);
    border: 1px solid rgba(234, 179, 8, 0.2);
    border-radius: 100px;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
}

.badge-accent {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-secondary);
    border-color: var(--card-border);
}

.btn-primary {
    display: inline-block;
    background: linear-gradient(135deg, var(--accent-color), var(--accent-hover));
    color: #0b0f19;
    font-weight: 800;
    font-size: 1.125rem;
    padding: 1rem 2.5rem;
    border-radius: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
    cursor: pointer;
    text-align: center;
    box-shadow: 0 10px 25px -5px rgba(234, 179, 8, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 35px -5px rgba(234, 179, 8, 0.5);
}

.btn-large {
    padding: 1.25rem 2rem;
    font-size: 1.25rem;
}

.glass-card {
    background: var(--card-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--card-border);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

/* Background Elements */
.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    z-index: 1;
    pointer-events: none;
}

.orb-1 {
    width: 400px;
    height: 400px;
    background: rgba(234, 179, 8, 0.15);
    top: -100px;
    left: -150px;
}

.orb-2 {
    width: 300px;
    height: 300px;
    background: rgba(59, 130, 246, 0.1);
    top: 20%;
    right: -100px;
}

.orb-3 {
    width: 500px;
    height: 500px;
    background: rgba(234, 179, 8, 0.1);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* Hero Section */
.hero {
    position: relative;
    padding: 6rem 0 4rem;
    text-align: center;
    overflow: hidden;
}

.hero h1 span {
    color: var(--accent-color);
}

.subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.mockup-container {
    max-width: 500px;
    margin: 0 auto;
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
    border: 1px solid var(--card-border);
}

/* Social Proof */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.testimonial-card img {
    border-radius: 12px;
    border: 1px solid var(--card-border);
    transition: transform 0.3s ease;
}

.testimonial-card:hover img {
    transform: scale(1.05);
}

/* Pain Points */
.masonry-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.quote-card {
    padding: 1.5rem;
    border-left: 4px solid rgba(255,255,255,0.1);
    transition: all 0.3s;
}
.quote-card:hover {
    border-left-color: var(--accent-color);
    transform: translateY(-5px);
}

.quote-card p {
    font-size: 1.125rem;
    font-style: italic;
    color: var(--text-secondary);
}

.highlight-box {
    background: rgba(234, 179, 8, 0.1);
    border: 1px solid rgba(234, 179, 8, 0.3);
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
    font-size: 1.25rem;
}

.highlight-box strong {
    color: var(--accent-color);
}

/* Diagnostic */
.reasons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.reason-card {
    text-align: left;
}

.reason-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.reason-card h3 {
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.reason-card p {
    color: var(--text-secondary);
    font-size: 0.9375rem;
}

.highlight-text {
    font-size: 1.5rem;
    color: var(--accent-color);
}

/* Steps */
.steps-timeline {
    max-width: 800px;
    margin: 3rem auto 0;
}

.step-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    padding: 1.5rem;
    border-radius: 12px;
    align-items: flex-start;
}

.step-number {
    font-family: 'Outfit', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    color: var(--bg-color);
    background: var(--accent-color);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    flex-shrink: 0;
}

.step-content h3 {
    margin-bottom: 0.5rem;
}

.step-content p {
    color: var(--text-secondary);
}

/* Deliverables & Target */
.check-list li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 1rem;
    font-size: 1.125rem;
    color: var(--text-primary);
    text-align: left;
}

.check-icon {
    position: absolute;
    left: 0;
    top: 2px;
    color: var(--accent-color);
    font-weight: bold;
}

.check-list-center {
    display: inline-block;
    text-align: left;
}

.target-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
    align-items: center;
}

.target-visual {
    height: 100%;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(135deg, rgba(234, 179, 8, 0.1), rgba(234, 179, 8, 0.05));
    border: 1px solid rgba(234, 179, 8, 0.2);
    position: relative;
    overflow: hidden;
}

.pulse-ring {
    position: absolute;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: rgba(234, 179, 8, 0.2);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 1; }
    100% { transform: scale(2.5); opacity: 0; }
}

.target-visual h3 {
    position: relative;
    z-index: 2;
    color: var(--accent-color);
}

.highlight-alert {
    background: rgba(234, 179, 8, 0.1);
    border-left: 4px solid var(--accent-color);
    padding: 1rem 1.5rem;
    border-radius: 0 8px 8px 0;
}

/* Offer */
.offer-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 900px;
    margin: 0 auto;
    align-items: center;
}

.value-list {
    margin-bottom: 1.5rem;
}

.value-list li {
    display: flex;
    justify-content: space-between;
    padding: 1rem 0;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.1);
    color: var(--text-secondary);
}

.value-list li.total-value {
    border-bottom: none;
    font-weight: 700;
    color: var(--text-primary);
    font-size: 1.25rem;
    margin-top: 0.5rem;
}

.total-value del {
    color: #ef4444;
}

.offer-price-card {
    text-align: center;
    background: linear-gradient(to bottom, var(--card-bg), rgba(30, 41, 59, 0.8));
    border: 1px solid rgba(234, 179, 8, 0.3);
}

.offer-subtitle {
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

.price-big {
    display: flex;
    flex-direction: column;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.installments {
    font-size: 1.25rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.amount {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--accent-color);
    font-family: 'Outfit', sans-serif;
}

.price-cash {
    color: var(--text-secondary);
}

.pulse-btn {
    animation: pulseBtn 2s infinite;
}

@keyframes pulseBtn {
    0% { box-shadow: 0 0 0 0 rgba(234, 179, 8, 0.4); }
    70% { box-shadow: 0 0 0 15px rgba(234, 179, 8, 0); }
    100% { box-shadow: 0 0 0 0 rgba(234, 179, 8, 0); }
}

.guarantee-box {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    padding: 1rem;
}

.g-items {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    align-items: center;
}

.g-items span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.inline-icon {
    width: 16px;
    height: 16px;
}

.how-it-works {
    max-width: 900px;
    margin: 3rem auto 0;
    text-align: center;
}

.hiw-steps {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.hiw-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    max-width: 200px;
}

.hiw-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--accent-color);
    color: #0b0f19;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Serious Talk */
.serious-text {
    max-width: 600px;
    margin: 0 auto;
    font-size: 1.25rem;
}

.serious-text p {
    margin-bottom: 1rem;
}

.divider {
    height: 1px;
    background: var(--card-border);
    margin: 2rem 0;
}

.highlight-p {
    font-size: 1.5rem;
}

/* Authority */
.authority-quote {
    font-size: 1.5rem;
    font-style: italic;
    font-family: 'Outfit', sans-serif;
    color: var(--accent-color);
    text-align: center;
    border-left: none;
    border-top: 1px solid var(--card-border);
    border-bottom: 1px solid var(--card-border);
    padding: 2rem 0;
}

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

.faq-item {
    margin-bottom: 1rem;
    border: 1px solid var(--card-border);
    border-radius: 8px;
    background: var(--card-bg);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    text-align: left;
    padding: 1.25rem 1.5rem;
    background: transparent;
    border: none;
    color: var(--text-primary);
    font-size: 1.125rem;
    font-weight: 600;
    font-family: 'Outfit', sans-serif;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--accent-color);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question::after {
    transform: rotate(45deg);
}

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

.faq-item.active .faq-answer {
    max-height: 200px;
    padding: 0 1.5rem 1.25rem;
}

.faq-answer p {
    color: var(--text-secondary);
}

/* Footer */
.footer {
    padding: 3rem 0;
    background: #06080d;
    color: var(--text-secondary);
    font-size: 0.875rem;
}

/* Animations */
.fade-in {
    opacity: 0;
    transition: opacity 0.8s ease-out;
}

.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.visible {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 { transition-delay: 0.2s; }
.delay-2 { transition-delay: 0.4s; }
.delay-3 { transition-delay: 0.6s; }

/* Responsive */
@media (max-width: 768px) {
    .target-grid, .offer-wrapper {
        grid-template-columns: 1fr;
    }
    
    .target-visual {
        min-height: 200px;
    }
    
    .hero {
        padding: 4rem 0 2rem;
    }
    
    .btn-primary {
        width: 100%;
        padding: 1rem;
    }
}
