﻿: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;
        min-width: 14px;
    }

.hero-title {
    font-family: 'Outfit', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 1rem;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    font-weight: 500;
}

.enterprise-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.enterprise-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: var(--surface);
    border: 2px solid var(--gray-200);
    border-radius: 12px;
    font-size: 0.9375rem;
    color: var(--text-primary);
}

    .enterprise-item svg {
        width: 20px;
        height: 20px;
        min-width: 20px;
        stroke: var(--success);
        flex-shrink: 0;
    }

.hero-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: 8px;
}

    .hero-highlight p {
        font-size: 1.125rem;
        font-weight: 600;
        color: var(--text-primary);
        margin-bottom: 0.5rem;
    }

    .hero-highlight .subtext {
        font-size: 0.9375rem;
        font-weight: 400;
        color: var(--text-secondary);
        line-height: 1.7;
    }

/* ===== 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;
}

/* ===== GAP SECTION ===== */
.gap-section {
    padding: 4rem 0;
    background: var(--surface);
}

.gap-grid {
    display: grid;
    gap: 2rem;
    margin-bottom: 2rem;
}

.gap-column {
    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);
}

    .gap-column h3 {
        font-family: 'Outfit', sans-serif;
        font-size: 1.125rem;
        font-weight: 700;
        display: flex;
        align-items: center;
        gap: 0.75rem;
        margin-bottom: 1.5rem;
        padding-bottom: 1rem;
        border-bottom: 2px solid var(--gray-200);
    }

        .gap-column h3 svg {
            width: 24px;
            height: 24px;
            min-width: 24px;
            flex-shrink: 0;
        }

    .gap-column.has h3 {
        color: var(--success);
    }

        .gap-column.has h3 svg {
            stroke: var(--success);
        }

    .gap-column.not-has h3 {
        color: var(--error);
    }

        .gap-column.not-has h3 svg {
            stroke: var(--error);
        }

.gap-list {
    list-style: none;
    padding: 0;
}

    .gap-list li {
        display: flex;
        align-items: flex-start;
        gap: 0.75rem;
        padding: 0.75rem 0;
        font-size: 0.9375rem;
        color: var(--text-secondary);
    }

        .gap-list li svg {
            width: 20px;
            height: 20px;
            min-width: 20px;
            flex-shrink: 0;
            margin-top: 0.125rem;
        }

.gap-column.has .gap-list li svg {
    stroke: var(--success);
}

.gap-column.not-has .gap-list li svg {
    stroke: var(--error);
}

.gap-highlight {
    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;
}

    .gap-highlight p {
        font-size: 1.25rem;
        font-weight: 700;
        color: var(--text-primary);
    }

/* ===== DEFINITION SECTION ===== */
.definition-section {
    padding: 4rem 0;
    background: linear-gradient(180deg, var(--gray-50) 0%, var(--surface) 100%);
}

.definition-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);
    text-align: center;
}

    .definition-box h3 {
        font-family: 'Outfit', sans-serif;
        font-size: 1.125rem;
        font-weight: 600;
        color: var(--text-secondary);
        margin-bottom: 2rem;
    }

.definition-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.5rem;
    border-radius: 8px;
    text-align: left;
}

    .definition-conclusion p {
        font-size: 1.0625rem;
        color: var(--text-primary);
        line-height: 1.7;
    }

    .definition-conclusion strong {
        color: var(--orange-dark);
        font-weight: 700;
    }

/* ===== PILLARS SECTION ===== */
.pillars-section {
    padding: 4rem 0;
    background: var(--surface);
}

.pillars-intro {
    font-size: 1.0625rem;
    color: var(--text-secondary);
    text-align: center;
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.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-number {
    width: 40px;
    height: 40px;
    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.125rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
}

.pillar-title {
    font-family: 'Outfit', sans-serif;
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.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;
        }

/* ===== IMPACT SECTION ===== */
.impact-section {
    padding: 4rem 0;
    background: linear-gradient(180deg, var(--gray-50) 0%, var(--surface) 100%);
}

.impact-grid {
    display: grid;
    gap: 1.5rem;
}

.impact-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);
}

    .impact-card h3 {
        font-family: 'Outfit', sans-serif;
        font-size: 1.125rem;
        font-weight: 700;
        color: var(--orange-dark);
        margin-bottom: 1.25rem;
        padding-bottom: 0.75rem;
        border-bottom: 2px solid var(--gray-200);
    }

.impact-list {
    list-style: none;
    padding: 0;
}

    .impact-list li {
        display: flex;
        align-items: flex-start;
        gap: 0.5rem;
        padding: 0.5rem 0;
        font-size: 0.9375rem;
        color: var(--text-secondary);
    }

        .impact-list li::before {
            content: "\2192";
            color: var(--orange-primary);
            font-weight: 700;
            flex-shrink: 0;
        }

/* ===== INTEGRATION SECTION ===== */
.integration-section {
    padding: 4rem 0;
    background: var(--surface);
}

.integration-grid {
    display: grid;
    gap: 1.5rem;
}

.integration-item {
    background: var(--gray-50);
    border: 2px solid var(--gray-200);
    border-radius: 12px;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

    .integration-item:hover {
        border-color: var(--orange-primary);
        box-shadow: 0 4px 15px rgba(255, 140, 0, 0.1);
    }

    .integration-item p:first-child {
        font-weight: 600;
        color: var(--text-primary);
        margin-bottom: 0.5rem;
    }

    .integration-item p:last-child {
        font-size: 0.9375rem;
        color: var(--text-secondary);
    }

/* ===== WHY SECTION ===== */
.why-section {
    padding: 4rem 0;
    background: linear-gradient(180deg, var(--gray-50) 0%, var(--surface) 100%);
}

.why-grid {
    display: grid;
    gap: 1.5rem;
}

.why-item {
    background: var(--surface);
    border: 2px solid var(--gray-200);
    border-radius: 12px;
    padding: 1.5rem;
}

    .why-item p {
        font-size: 0.9375rem;
        color: var(--text-secondary);
        line-height: 1.7;
    }

    .why-item strong {
        color: var(--text-primary);
        font-weight: 600;
    }

/* ===== CTA SECTION ===== */
.cta-section {
    padding: 4rem 0;
    background: var(--surface);
}

.cta-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.cta-content {
    text-align: center;
    margin-bottom: 2rem;
}

.cta-situations {
    text-align: left;
    background: var(--gray-50);
    border: 2px solid var(--gray-200);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 2rem;
}

    .cta-situations h4 {
        font-family: 'Outfit', sans-serif;
        font-size: 1rem;
        font-weight: 600;
        color: var(--text-primary);
        margin-bottom: 1rem;
    }

    .cta-situations ul {
        list-style: none;
        padding: 0;
    }

        .cta-situations ul li {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            padding: 0.5rem 0;
            font-size: 0.9375rem;
            color: var(--text-secondary);
        }

            .cta-situations ul li svg {
                width: 18px;
                height: 18px;
                min-width: 18px;
                stroke: var(--orange-primary);
                flex-shrink: 0;
            }

.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;
    }

    .enterprise-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .section-title {
        font-size: 2.25rem;
    }

    .gap-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .impact-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .integration-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .why-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;
    }

    .pillars-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .definition-box {
        padding: 3rem;
    }

    .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;
    }
}
