/**
 * GW Elementos Maxime Oro - Customization Flow
 * v1.6.19
 */

.gw-emocf {
    --gw-emocf-accent: #E8BD4C;
    --gw-emocf-panel-bg: #050505;
    --gw-emocf-panel-border: rgba(232, 189, 76, 0.22);
    --gw-emocf-text: #F8F3E8;
    --gw-emocf-muted: #A7A7A7;
    --gw-emocf-field-bg: #040404;
    --gw-emocf-field-border: rgba(255, 255, 255, 0.16);
    --gw-emocf-option-active: #E8BD4C;
    width: 100%;
    margin-inline: auto;
    color: var(--gw-emocf-text);
    box-sizing: border-box;
}

.gw-emocf *,
.gw-emocf *::before,
.gw-emocf *::after {
    box-sizing: border-box;
}

.gw-emocf-header {
    text-align: center;
    margin-bottom: 42px;
}

.gw-emocf-eyebrow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 18px;
    color: var(--gw-emocf-accent);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 5px;
    text-transform: uppercase;
}

.gw-emocf-eyebrow::before,
.gw-emocf-eyebrow::after {
    content: "";
    width: 10px;
    height: 1px;
    background: currentColor;
    opacity: 0.8;
}

.gw-emocf-title {
    max-width: 820px;
    margin: 0 auto;
    color: var(--gw-emocf-text);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(32px, 4.2vw, 58px);
    font-weight: 400;
    line-height: 1.12;
    letter-spacing: 0;
}

.gw-emocf-title span {
    display: block;
    color: var(--gw-emocf-accent);
}

.gw-emocf-description {
    max-width: 800px;
    margin: 22px auto 0;
    color: var(--gw-emocf-muted);
    font-size: 16px;
    line-height: 1.55;
    font-weight: 600;
}

.gw-emocf-panel {
    min-height: 360px;
    padding: 48px 54px 44px;
    border: 1px solid var(--gw-emocf-panel-border);
    background: var(--gw-emocf-panel-bg);
}

.gw-emocf-progress {
    display: grid;
    grid-template-columns: auto 1fr auto 1fr auto 1fr auto 1fr auto;
    align-items: center;
    gap: 0;
    max-width: 820px;
    margin-bottom: 34px;
}

.gw-emocf-progress-dot {
    display: inline-grid;
    place-items: center;
    width: 34px;
    height: 34px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 999px;
    color: var(--gw-emocf-muted);
    font-size: 12px;
    font-weight: 700;
    line-height: 1;
    transition: background-color 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}

.gw-emocf-progress-dot.is-active,
.gw-emocf-progress-dot.is-complete {
    border-color: var(--gw-emocf-accent);
    background: var(--gw-emocf-accent);
    color: #050505;
}

.gw-emocf-progress-line {
    display: block;
    width: min(13vw, 150px);
    height: 1px;
    background: rgba(255, 255, 255, 0.18);
}

.gw-emocf-progress-line.is-complete {
    background: var(--gw-emocf-accent);
}

.gw-emocf-step {
    display: none;
}

.gw-emocf-step.is-active {
    display: block;
}

.gw-emocf-step-title {
    margin: 0 0 28px;
    color: var(--gw-emocf-text);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 24px;
    font-weight: 600;
    line-height: 1.2;
}

.gw-emocf-options {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.gw-emocf-options-1 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.gw-emocf-options-3 {
    grid-template-columns: repeat(5, minmax(0, 1fr));
}

.gw-emocf-options-4 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.gw-emocf-option {
    width: 100%;
    min-height: 52px;
    padding: 14px 18px;
    border: 1px solid var(--gw-emocf-field-border);
    background: transparent;
    color: var(--gw-emocf-text);
    cursor: pointer;
    text-align: center;
    font: inherit;
    transition: border-color 0.22s ease, color 0.22s ease, background-color 0.22s ease, transform 0.22s ease;
}

.gw-emocf-options-1 .gw-emocf-option {
    min-height: 122px;
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 14px;
    padding: 26px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 18px;
}

.gw-emocf-option:hover,
.gw-emocf-option.is-selected {
    border-color: var(--gw-emocf-option-active);
    color: var(--gw-emocf-accent);
    background: rgba(232, 189, 76, 0.035);
}

.gw-emocf-option:focus-visible {
    outline: 2px solid var(--gw-emocf-accent);
    outline-offset: 2px;
}

.gw-emocf-option-icon {
    display: inline-flex;
    color: var(--gw-emocf-accent);
    font-size: 18px;
    line-height: 1;
}

.gw-emocf-option-label {
    display: block;
}

.gw-emocf-option small {
    display: block;
    margin-top: 5px;
    color: var(--gw-emocf-muted);
    font-size: 12px;
    line-height: 1.35;
}

.gw-emocf-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-top: 34px;
}

.gw-emocf-back,
.gw-emocf-next,
.gw-emocf-submit {
    border: 0;
    border-radius: 0;
    cursor: pointer;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 4px;
    text-transform: uppercase;
    transition: opacity 0.2s ease, transform 0.2s ease, background-color 0.2s ease;
}

.gw-emocf-back {
    padding: 12px 0;
    background: transparent;
    color: var(--gw-emocf-muted);
}

.gw-emocf-back::before {
    content: "\2190";
    margin-right: 8px;
}

.gw-emocf-next,
.gw-emocf-submit {
    min-height: 46px;
    padding: 0 34px;
    background: var(--gw-emocf-accent);
    color: #050505;
}

.gw-emocf-submit:disabled {
    cursor: wait;
    opacity: 0.62;
}

.gw-emocf-next::after,
.gw-emocf-submit::after {
    content: "\2192";
    margin-left: 10px;
}

.gw-emocf-back:hover,
.gw-emocf-next:hover,
.gw-emocf-submit:hover {
    transform: translateY(-1px);
    opacity: 0.9;
}

.gw-emocf-form-intro {
    margin: -12px 0 18px;
    color: var(--gw-emocf-muted);
    line-height: 1.55;
}

.gw-emocf-form {
    margin: 0;
}

.gw-emocf-form {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.gw-emocf-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.gw-emocf-field-full,
.gw-emocf-summary,
.gw-emocf-form-footer,
.gw-emocf-status {
    grid-column: 1 / -1;
}

.gw-emocf-field label {
    color: var(--gw-emocf-muted);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.gw-emocf-field input,
.gw-emocf-field select,
.gw-emocf-field textarea {
    width: 100%;
    min-height: 48px;
    border: 1px solid var(--gw-emocf-field-border);
    border-radius: 0;
    background: var(--gw-emocf-field-bg);
    color: var(--gw-emocf-text);
    padding: 12px 16px;
    font: inherit;
}

.gw-emocf-field textarea {
    min-height: 94px;
    resize: vertical;
}

.gw-emocf-field input:focus,
.gw-emocf-field select:focus,
.gw-emocf-field textarea:focus {
    outline: none;
    border-color: var(--gw-emocf-accent);
}

.gw-emocf-file {
    display: flex !important;
    min-height: 48px;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    border: 1px dashed var(--gw-emocf-field-border);
    padding: 12px 16px;
    cursor: pointer;
    color: var(--gw-emocf-muted);
    letter-spacing: 0 !important;
    text-transform: none !important;
    font-weight: 600 !important;
}

.gw-emocf-file::before {
    content: "\2191";
    color: var(--gw-emocf-accent);
}

.gw-emocf-file input {
    position: absolute;
    width: 1px;
    height: 1px;
    opacity: 0;
    pointer-events: none;
}

.gw-emocf-summary {
    margin-top: 6px;
    border: 1px solid rgba(232, 189, 76, 0.28);
    background: rgba(232, 189, 76, 0.035);
    padding: 18px 20px;
}

.gw-emocf-summary strong {
    display: block;
    margin-bottom: 14px;
    color: var(--gw-emocf-accent);
    font-size: 12px;
}

.gw-emocf-summary-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
    color: var(--gw-emocf-muted);
    font-size: 13px;
}

.gw-emocf-summary-grid b {
    color: var(--gw-emocf-text);
}

.gw-emocf-status {
    min-height: 20px;
    color: var(--gw-emocf-accent);
    font-size: 13px;
}

.gw-emocf-status.is-error {
    color: #D65A5A;
}

@media (max-width: 1024px) {
    .gw-emocf-options,
    .gw-emocf-options-3,
    .gw-emocf-options-4 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .gw-emocf-progress-line {
        width: min(9vw, 90px);
    }

    .gw-emocf-summary-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 767px) {
    .gw-emocf-header {
        margin-bottom: 28px;
    }

    .gw-emocf-panel {
        padding: 28px 18px !important;
    }

    .gw-emocf-title {
        font-size: 34px;
    }

    .gw-emocf-progress {
        max-width: 100%;
        overflow-x: auto;
        padding-bottom: 4px;
    }

    .gw-emocf-progress-line {
        width: 42px;
    }

    .gw-emocf-options,
    .gw-emocf-options-1,
    .gw-emocf-options-3,
    .gw-emocf-options-4,
    .gw-emocf-form {
        grid-template-columns: 1fr;
    }

    .gw-emocf-summary-grid {
        grid-template-columns: 1fr;
    }

    .gw-emocf-footer {
        align-items: stretch;
        flex-direction: column-reverse;
    }

    .gw-emocf-next,
    .gw-emocf-submit {
        width: 100%;
    }
}
