﻿: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;
}

.page-wrapper {
    width: 100%;
    overflow-x: hidden;
    font-family: 'DM Sans', sans-serif;
    color: var(--text-primary);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

    .page-wrapper *,
    .page-wrapper *::before,
    .page-wrapper *::after {
        box-sizing: border-box;
    }

    .page-wrapper .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;
}

/* ===== ELEPHANT BOX ===== */
.elephant-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);
}

.elephant-title {
    font-family: 'Outfit', sans-serif;
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--orange-dark);
    margin-bottom: 1.5rem;
}

.checklist {
    list-style: none;
    margin-bottom: 1.5rem;
    padding: 0;
}

    .checklist li {
        display: flex;
        align-items: center;
        gap: 0.75rem;
        padding: 0.75rem 0;
        color: var(--text-primary);
        font-size: 0.9375rem;
    }

    .checklist svg {
        width: 20px;
        height: 20px;
        min-width: 20px;
        stroke: var(--success);
        flex-shrink: 0;
    }

.then-why {
    border-top: 2px solid var(--gray-200);
    padding-top: 1.5rem;
}

.then-why-title {
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.then-why-list {
    list-style: none;
    padding: 0;
}

    .then-why-list li {
        display: flex;
        align-items: flex-start;
        gap: 0.75rem;
        padding: 0.5rem 0;
        color: var(--text-secondary);
        font-size: 0.875rem;
    }

    .then-why-list svg {
        width: 18px;
        height: 18px;
        min-width: 18px;
        stroke: var(--orange-primary);
        flex-shrink: 0;
        margin-top: 0.125rem;
    }

.conclusion {
    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.25rem;
    border-radius: 8px;
    margin-top: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
}

/* ===== SECTION TITLE ===== */
.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;
}

/* ===== PROBLEM SECTION ===== */
.problem-section {
    padding: 4rem 0;
    background: var(--surface);
}

.problem-intro {
    font-size: 1.0625rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.problem-grid {
    display: grid;
    gap: 1rem;
    margin-bottom: 2rem;
}

.problem-card {
    background: var(--gray-50);
    border: 2px solid var(--gray-200);
    border-radius: 12px;
    padding: 1.5rem;
}

    .problem-card h3 {
        font-family: 'Outfit', sans-serif;
        font-size: 1rem;
        font-weight: 600;
        color: var(--text-primary);
        margin-bottom: 0.75rem;
    }

    .problem-card p {
        font-size: 0.875rem;
        color: var(--text-secondary);
        line-height: 1.6;
    }

.problem-highlight {
    background: var(--surface);
    border: 2px solid var(--orange-primary);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
}

    .problem-highlight p {
        font-size: 1.125rem;
        font-weight: 600;
        color: var(--text-primary);
        margin-bottom: 0.5rem;
    }

    .problem-highlight .subtext {
        font-size: 0.9375rem;
        font-weight: 400;
        color: var(--text-secondary);
    }

/* ===== COMPARISON SECTION ===== */
.comparison-section {
    padding: 4rem 0;
    background: linear-gradient(180deg, var(--gray-50) 0%, var(--surface) 100%);
}

.comparison-wrapper {
    display: grid;
    gap: 2rem;
}

.cfo-card {
    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);
}

.cfo-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--gray-200);
}

.cfo-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;
}

.cfo-time {
    font-family: 'Outfit', sans-serif;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-primary);
}

.cfo-story {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

    .cfo-story p {
        margin-bottom: 0.75rem;
    }

.comparison-footer {
    text-align: center;
    margin-top: 2rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(255, 140, 0, 0.1), rgba(233, 78, 27, 0.1));
    border-radius: 12px;
}

    .comparison-footer p {
        font-size: 1.25rem;
        font-weight: 700;
        color: var(--text-primary);
    }

/* ===== PILLARS SECTION ===== */
.pillars-section {
    padding: 4rem 0;
    background: var(--surface);
}

.pillars-grid {
    display: grid;
    gap: 1.5rem;
}

.pillar-card {
    background: var(--gray-50);
    border: 2px solid var(--gray-200);
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.3s ease;
}

    .pillar-card:hover {
        border-color: var(--orange-primary);
        box-shadow: 0 4px 20px rgba(255, 140, 0, 0.15);
    }

.pillar-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.25rem;
}

.pillar-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--orange-primary), var(--orange-dark));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

    .pillar-icon svg {
        width: 28px;
        height: 28px;
        stroke: white;
        stroke-width: 2;
    }

.pillar-title {
    font-family: 'Outfit', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
}

.pillar-description {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.pillar-features {
    list-style: none;
    padding: 0;
}

    .pillar-features li {
        display: flex;
        align-items: flex-start;
        gap: 0.5rem;
        padding: 0.375rem 0;
        font-size: 0.875rem;
        color: var(--text-secondary);
    }

        .pillar-features li::before {
            content: "\2192";
            color: var(--orange-primary);
            font-weight: 700;
            flex-shrink: 0;
        }

/* ===== BEFORE/AFTER SECTION ===== */
.before-after-section {
    padding: 4rem 0;
    background: linear-gradient(180deg, var(--gray-50) 0%, var(--surface) 100%);
}

.ba-grid {
    display: grid;
    gap: 1.5rem;
}

.ba-card {
    background: var(--surface);
    border: 2px solid var(--gray-200);
    border-radius: 16px;
    padding: 2rem;
}

.ba-label {
    display: inline-block;
    padding: 0.375rem 0.875rem;
    background: var(--gray-200);
    color: var(--text-primary);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 20px;
    margin-bottom: 1.25rem;
}

.ba-card.after .ba-label {
    background: linear-gradient(135deg, var(--orange-primary), var(--orange-dark));
    color: white;
}

.ba-list {
    list-style: none;
    padding: 0;
}

    .ba-list li {
        display: flex;
        align-items: flex-start;
        gap: 0.75rem;
        padding: 0.75rem 0;
        font-size: 0.9375rem;
        color: var(--text-secondary);
    }

    .ba-list svg {
        width: 20px;
        height: 20px;
        min-width: 20px;
        flex-shrink: 0;
        margin-top: 0.125rem;
    }

.ba-card.before svg {
    stroke: var(--error);
}

.ba-card.after svg {
    stroke: var(--success);
}

/* ===== 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;
        min-width: 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;
    min-width: 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) {
    .page-wrapper .container {
        padding: 0 2rem;
    }

    .hero-section {
        padding: 4rem 0 3rem;
    }

    .hero-title {
        font-size: 2.75rem;
    }

    .elephant-box {
        padding: 2.5rem;
    }

    .section-title {
        font-size: 2.25rem;
    }

    .problem-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .comparison-wrapper {
        grid-template-columns: repeat(2, 1fr);
    }

    .pillars-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .ba-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .form-row {
        flex-direction: row;
    }

    .form-group {
        flex: 1;
    }

    .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;
    }

    .elephant-box {
        padding: 3rem;
    }

    .pillars-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .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;
    }
}
