﻿:root {
    --orange-primary: #ff8c00;
    --orange-dark: #e94e1b;
    --orange-glow: rgba(255, 140, 0, 0.3);
    --gray-900: #1a1a1a;
    --gray-800: #2d2d2d;
    --gray-700: #404040;
    --gray-600: #525252;
    --gray-500: #6b6b6b;
    --gray-400: #8a8a8a;
    --gray-300: #a3a3a3;
    --gray-200: #d4d4d4;
    --gray-100: #f0f0f0;
    --gray-50: #f8f8f8;
    --surface: #ffffff;
    --text-primary: #1a1a1a;
    --text-secondary: #525252;
    --text-muted: #8a8a8a;
    --border: #d4d4d4;
    --error: #dc2626;
    --success: #16a34a;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'DM Sans', sans-serif;
    color: var(--text-primary);
    background-color: var(--surface);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

.page-wrapper {
    width: 100%;
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.25rem;
}

/* ===== HERO SECTION ===== */
.hero-section {
    padding: 3rem 0 2.5rem;
    background: linear-gradient(180deg, var(--gray-50) 0%, var(--surface) 100%);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, var(--orange-primary), var(--orange-dark));
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 50px;
    margin-bottom: 1.5rem;
}

    .hero-badge svg {
        width: 14px;
        height: 14px;
    }

.hero-title {
    font-family: 'Outfit', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 2rem;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.scenario-box {
    background: var(--surface);
    border: 2px solid var(--gray-200);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.scenario-time {
    font-family: 'Outfit', sans-serif;
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--orange-dark);
    margin-bottom: 1.25rem;
}

.scenario-text {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.scenario-description {
    color: var(--text-secondary);
    font-size: 0.9375rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.scenario-thought {
    background: var(--gray-50);
    border-left: 4px solid var(--orange-primary);
    padding: 1.25rem;
    border-radius: 8px;
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    font-style: italic;
    color: var(--text-secondary);
    font-size: 0.9375rem;
    line-height: 1.6;
}

    .scenario-thought svg {
        width: 24px;
        height: 24px;
        stroke: var(--orange-primary);
        flex-shrink: 0;
        margin-top: 0.125rem;
    }

/* ===== TRUTH SECTION ===== */
.truth-section {
    padding: 4rem 0;
    background: var(--surface);
}

.section-title {
    font-family: 'Outfit', sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 2rem;
    text-align: center;
    letter-spacing: -0.01em;
}

.truth-intro {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-primary);
    margin-bottom: 2rem;
    text-align: center;
}

    .truth-intro strong {
        color: var(--orange-dark);
        font-weight: 700;
    }

.truth-reality {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 1.25rem;
}

.truth-list {
    list-style: none;
    margin-bottom: 2rem;
}

    .truth-list li {
        display: flex;
        align-items: flex-start;
        gap: 0.75rem;
        padding: 1rem;
        background: var(--gray-50);
        border-radius: 10px;
        margin-bottom: 0.75rem;
        color: var(--text-secondary);
        font-size: 0.9375rem;
    }

        .truth-list li svg {
            width: 20px;
            height: 20px;
            stroke: var(--orange-primary);
            flex-shrink: 0;
            margin-top: 0.125rem;
        }

.truth-highlight {
    background: linear-gradient(135deg, rgba(255, 140, 0, 0.1), rgba(233, 78, 27, 0.1));
    border-left: 4px solid var(--orange-dark);
    padding: 1.5rem;
    border-radius: 10px;
    margin-bottom: 1.5rem;
    font-size: 1.0625rem;
}

.scaling-questions {
    margin-bottom: 1.5rem;
}

    .scaling-questions p {
        color: var(--text-secondary);
        font-size: 0.9375rem;
        font-style: italic;
        margin-bottom: 0.5rem;
        padding-left: 1rem;
        border-left: 3px solid var(--gray-200);
    }

.truth-conclusion {
    font-size: 1.0625rem;
    font-weight: 600;
    color: var(--text-primary);
    text-align: center;
    padding: 1.5rem;
    background: var(--gray-50);
    border-radius: 10px;
}

/* ===== SOLUTION SECTION ===== */
.solution-section {
    padding: 4rem 0;
    background: linear-gradient(180deg, var(--gray-50) 0%, var(--surface) 100%);
}

.imagine-box {
    background: var(--surface);
    border: 2px solid var(--gray-200);
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.imagine-intro {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-primary);
    margin-bottom: 2rem;
    text-align: center;
}

    .imagine-intro strong {
        color: var(--orange-dark);
        font-weight: 700;
    }

.benefits-list {
    list-style: none;
    margin-bottom: 2.5rem;
}

    .benefits-list li {
        display: flex;
        align-items: center;
        gap: 1rem;
        padding: 1.25rem;
        background: var(--gray-50);
        border-radius: 12px;
        margin-bottom: 1rem;
        font-size: 1rem;
        color: var(--text-primary);
        transition: all 0.3s ease;
    }

        .benefits-list li:hover {
            transform: translateX(8px);
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
        }

.benefit-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--orange-primary), var(--orange-dark));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

    .benefit-icon svg {
        width: 20px;
        height: 20px;
        stroke: white;
        stroke-width: 3;
    }

.orbbe-intro {
    text-align: center;
    padding-top: 2rem;
    border-top: 2px solid var(--gray-200);
}

    .orbbe-intro p {
        font-size: 1.0625rem;
        margin-bottom: 0.75rem;
        color: var(--text-primary);
    }

    .orbbe-intro strong {
        color: var(--orange-dark);
        font-weight: 700;
    }

.simple-tagline {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--orange-primary);
    margin-top: 1.5rem;
}

/* ===== HOW IT WORKS SECTION ===== */
.how-section {
    padding: 4rem 0;
    background: var(--surface);
}

.steps-wrapper {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.step-item {
    display: flex;
    gap: 1.25rem;
    background: var(--gray-50);
    border: 2px solid var(--gray-200);
    border-radius: 12px;
    padding: 1.5rem;
    transition: all 0.3s ease;
    min-height: 120px;
    align-items: center;
}

    .step-item:hover {
        border-color: var(--orange-primary);
        box-shadow: 0 4px 20px rgba(255, 140, 0, 0.15);
    }

.step-number {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--orange-primary), var(--orange-dark));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Outfit', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

    .step-content h3 {
        font-family: 'Outfit', sans-serif;
        font-size: 1.0625rem;
        font-weight: 600;
        color: var(--text-primary);
        margin-bottom: 0.5rem;
        line-height: 1.3;
    }

    .step-content p {
        font-size: 0.9375rem;
        color: var(--text-secondary);
        line-height: 1.5;
    }

.step-arrow {
    display: none;
    font-size: 2rem;
    color: var(--orange-primary);
    text-align: center;
    font-weight: 700;
}

.result-box {
    background: linear-gradient(135deg, rgba(255, 140, 0, 0.1), rgba(233, 78, 27, 0.1));
    border: 2px solid var(--orange-primary);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
}

.result-label {
    font-family: 'Outfit', sans-serif;
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--orange-dark);
    margin-bottom: 1rem;
}

.result-text {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    line-height: 1.6;
}

/* ===== COST SECTION ===== */
.cost-section {
    padding: 4rem 0;
    background: linear-gradient(180deg, var(--gray-50) 0%, var(--surface) 100%);
}

.cost-intro {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-primary);
    margin-bottom: 2rem;
    text-align: center;
}

.cost-list {
    list-style: none;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

    .cost-list li {
        display: flex;
        align-items: flex-start;
        gap: 0.75rem;
        padding: 1rem;
        background: var(--surface);
        border: 2px solid var(--gray-200);
        border-radius: 10px;
        margin-bottom: 0.75rem;
        color: var(--text-secondary);
        font-size: 0.9375rem;
    }

        .cost-list li svg {
            width: 20px;
            height: 20px;
            stroke: var(--error);
            flex-shrink: 0;
            margin-top: 0.125rem;
        }

.cost-conclusion {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    text-align: center;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(255, 140, 0, 0.1), rgba(233, 78, 27, 0.1));
    border-radius: 12px;
}

/* ===== CTA SECTION ===== */
.cta-section {
    padding: 4rem 0;
    background: var(--surface);
}

.cta-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.cta-header {
    text-align: center;
    margin-bottom: 3rem;
}

.cta-subtitle {
    font-size: 1.0625rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-top: 1rem;
}

.form-container {
    background: var(--gray-50);
    border: 2px solid var(--gray-200);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.prospect-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

    .form-group.full-width {
        width: 100%;
    }

.form-label {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

    .form-label svg {
        width: 16px;
        height: 16px;
        stroke: var(--gray-500);
    }

.form-input {
    width: 100%;
    padding: 1rem;
    font-family: 'DM Sans', sans-serif;
    font-size: 1rem;
    color: var(--text-primary);
    background: var(--surface);
    border: 2px solid var(--border);
    border-radius: 10px;
    transition: all 0.25s ease;
}

    .form-input::placeholder {
        color: var(--text-muted);
    }

    .form-input:focus {
        outline: none;
        border-color: var(--orange-primary);
        box-shadow: 0 0 0 3px var(--orange-glow);
    }

    .form-input.input-validation-error {
        border-color: var(--error);
    }

.text-danger {
    color: var(--error);
    font-size: 0.8125rem;
    margin-top: 0.25rem;
}

.form-divider {
    display: flex;
    align-items: center;
    text-align: center;
    margin: 1rem 0;
}

    .form-divider::before,
    .form-divider::after {
        content: '';
        flex: 1;
        border-bottom: 2px solid var(--gray-200);
    }

    .form-divider span {
        padding: 0 1rem;
        font-weight: 600;
        color: var(--text-secondary);
        font-size: 0.875rem;
    }

.btn-submit {
    width: 100%;
    padding: 1.125rem 2rem;
    font-family: 'DM Sans', sans-serif;
    font-size: 1.0625rem;
    font-weight: 600;
    color: #ffffff;
    background: linear-gradient(135deg, var(--orange-primary) 0%, var(--orange-dark) 100%);
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px -3px var(--orange-glow);
    margin-top: 0.5rem;
}

    .btn-submit::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;
    }

    .btn-submit:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 25px -5px rgba(233, 78, 27, 0.5);
    }

        .btn-submit:hover::before {
            left: 100%;
        }

    .btn-submit:active {
        transform: translateY(0);
    }

    .btn-submit svg {
        width: 20px;
        height: 20px;
        transition: transform 0.3s ease;
    }

    .btn-submit:hover svg {
        transform: translateX(4px);
    }

.error-message,
.success-message {
    display: none;
    padding: 1rem;
    border-radius: 10px;
    font-size: 0.9375rem;
    align-items: center;
    gap: 0.75rem;
    animation: slideIn 0.3s ease;
}

.error-message {
    background: rgba(220, 38, 38, 0.08);
    border: 2px solid rgba(220, 38, 38, 0.2);
    color: var(--error);
}

.success-message {
    background: rgba(22, 163, 74, 0.08);
    border: 2px solid rgba(22, 163, 74, 0.2);
    color: var(--success);
}

    .error-message.show,
    .success-message.show {
        display: flex;
    }

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.error-message svg,
.success-message svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.tagline {
    margin-top: 2rem;
    text-align: center;
    color: var(--text-muted);
    font-size: 0.9375rem;
    font-style: italic;
}

.btn-submit.loading {
    pointer-events: none;
    opacity: 0.9;
}

    .btn-submit.loading .btn-text,
    .btn-submit.loading .btn-icon {
        visibility: hidden;
    }

.spinner {
    display: none;
    position: absolute;
    width: 22px;
    height: 22px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top-color: #ffffff;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

.btn-submit.loading .spinner {
    display: block;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* ===== TABLET - 768px e acima ===== */
@media (min-width: 768px) {
    .container {
        padding: 0 2rem;
    }

    .hero-section {
        padding: 4rem 0 3rem;
    }

    .hero-title {
        font-size: 2.75rem;
    }

    .scenario-box {
        padding: 2.5rem;
    }

    .section-title {
        font-size: 2.25rem;
    }

    .form-row {
        flex-direction: row;
    }

    .form-group {
        flex: 1;
    }

    .steps-wrapper {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .step-item {
        min-height: 140px;
    }

    .step-arrow {
        display: none;
    }

    .form-container {
        padding: 2.5rem;
    }
}

/* ===== DESKTOP - 1024px e acima ===== */
@media (min-width: 1024px) {
    .hero-title {
        font-size: 3.25rem;
    }

    .section-title {
        font-size: 2.5rem;
    }

    .scenario-box {
        padding: 3rem;
    }

    .steps-wrapper {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }

    .step-item {
        min-height: 140px;
    }

    .step-arrow {
        display: none;
    }

    .imagine-box {
        padding: 3rem;
    }

    .benefits-list {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .form-container {
        padding: 3rem;
    }
}

/* ===== DESKTOP LARGE - 1280px e acima ===== */
@media (min-width: 1280px) {
    .hero-title {
        font-size: 3.5rem;
    }

    .section-title {
        font-size: 2.75rem;
    }
}
