.elementor-120694 .elementor-element.elementor-element-ffe2a68{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-widget-html .eael-protected-content-message{font-family:var( --e-global-typography-secondary-font-family ), Sans-serif;font-weight:var( --e-global-typography-secondary-font-weight );}.elementor-widget-html .protected-content-error-msg{font-family:var( --e-global-typography-secondary-font-family ), Sans-serif;font-weight:var( --e-global-typography-secondary-font-weight );}/* Start custom CSS for html, class: .elementor-element-e3b2572 *//* Scoped styles for Representation Form */
.representation-form-container {
    --primary-color: #263851;
    --primary-hover: #1e2d42;
    --text-color: #333333;
    --border-color: #E4E4E4;
    --input-bg: #F4F4F4;
    --white: #FFFFFF;
    --error-red: #D93025;
    --gray-stepper: #BDBDBD;
    --link-blue: #00A3FF;

    font-family: 'Inter', sans-serif;
    color: var(--text-color);
    background-color: var(--white);
    max-width: 900px;
    margin: 0px auto;
    /* Added margin for visual space */
    padding: 40px;
    /* Increased padding */
    box-sizing: border-box;

    /* Card Style */
    box-shadow: 0px 4px 24px rgba(0, 0, 0, 0.08);
    border-radius: 12px;
}

.representation-form-container * {
    box-sizing: border-box;
}

/* Footer Navigation */
.representation-form-container .form-navigation {
    display: flex;
    justify-content: center;
    /* Centered buttons */
    gap: 24px;
    /* Space between buttons */
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

/* Header */
.representation-form-container .form-header {
    margin-bottom: 30px;
}

.representation-form-container .header-title-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.representation-form-container .header-icon {
    width: 40px;
    height: 40px;
    background-color: #E8EAF0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.representation-form-container h1 {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0;
}

.representation-form-container .header-desc {
    font-size: 14px;
    color: #555;
    margin-bottom: 16px;
}

.representation-form-container .observations {
    font-size: 13px;
    color: #444;
    margin-bottom: 20px;
    line-height: 1.5;
}

.representation-form-container .observations ol {
    padding-left: 20px;
    margin-top: 5px;
}

.representation-form-container .info-box {
    background-color: #F0F6FF;
    border-left: 4px solid var(--primary-color);
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: #444;
}

/* Stepper */
.representation-form-container .stepper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 40px;
    position: relative;
}

.representation-form-container .step-indicator {
    display: flex;
    align-items: center;
    /* Vertical alignment icon/text */
    gap: 8px;
    opacity: 0.5;
    /* Inactive state */
    transition: opacity 0.3s;
}

.representation-form-container .step-indicator.active {
    opacity: 1;
}

.representation-form-container .step-indicator.completed {
    opacity: 1;
}

.representation-form-container .step-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 2px solid currentColor;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
}

/* Mobile responsive stepper tweak */
@media (max-width: 768px) {
    .representation-form-container .stepper {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .representation-form-container .step-line {
        display: none;
    }
}

.representation-form-container .step-label {
    display: flex;
    flex-direction: column;
}

.representation-form-container .step-name {
    font-size: 12px;
    font-weight: 600;
    color: var(--primary-color);
}

.representation-form-container .step-desc {
    font-size: 11px;
    color: #666;
}

.representation-form-container .step-line {
    flex-grow: 1;
    height: 1px;
    background-color: #E0E0E0;
    margin: 0 15px;
}

/* Steps */
.representation-form-container .form-step {
    display: none;
    /* Hidden by default */
}

.representation-form-container .form-step.active {
    display: block;
    animation: fadeIn 0.4s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(5px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.representation-form-container .step-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.representation-form-container .required-note {
    font-size: 12px;
    color: var(--error-red);
    margin-bottom: 24px;
}

.representation-form-container .subsection-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--primary-color);
    margin-top: 30px;
    margin-bottom: 15px;
}

/* Form Groups */
.representation-form-container .form-group {
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
}

.representation-form-container label {
    font-size: 14px;
    margin-bottom: 6px;
    color: #555;
    font-weight: 500;
}

.representation-form-container input[type="text"],
.representation-form-container input[type="email"],
.representation-form-container input[type="tel"],
.representation-form-container textarea {
    width: 100%;
    background-color: var(--input-bg);
    border: 1px solid transparent;
    /* Match Figma default */
    border-radius: 4px;
    padding: 10px 12px;
    font-size: 14px;
    color: var(--text-color);
    height: 40px;
}

.representation-form-container textarea {
    height: auto;
    resize: vertical;
}

.representation-form-container input:focus,
.representation-form-container textarea:focus {
    outline: none;
    border: 1px solid #888;
}

/* Validation Error Style */
.representation-form-container input.error,
.representation-form-container textarea.error {
    border: 1px solid var(--error-red);
}

.representation-form-container .error-msg {
    font-size: 11px;
    color: var(--error-red);
    margin-top: 4px;
}


/* Grid System for Inputs */
.representation-form-container .grid-row {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.representation-form-container .grid-row .form-group {
    flex: 1;
    min-width: 200px;
    /* safety for mobile */
}

.representation-form-container .flex-grow {
    flex: 3;
    /* More width */
}

.representation-form-container .flex-small {
    flex: 1;
    /* Less width */
}

.representation-form-container .half-width {
    width: 50%;
}

@media (max-width: 600px) {
    .representation-form-container .half-width {
        width: 100%;
    }
}

.representation-form-container .label-row {
    display: flex;
    justify-content: space-between;
    width: 100%;
}

.representation-form-container .link-small {
    font-size: 12px;
    color: var(--link-blue);
    text-decoration: none;
}

/* Checkboxes */
.representation-form-container .checkbox-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.representation-form-container .checkbox-option {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    color: #444;
    cursor: pointer;
}

.representation-form-container .checkbox-option input {
    margin-top: 3px;
    width: 16px;
    height: 16px;
}

/* File Upload */
.representation-form-container .upload-area {
    border: 2px dashed #ccc;
    background-color: #FAFAFA;
    border-radius: 8px;
    padding: 30px;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s;
    margin-bottom: 30px;
}

.representation-form-container .upload-area:hover,
.representation-form-container .upload-area.drag-over {
    background-color: #F0F6FF;
    border-color: var(--primary-color);
}

.representation-form-container .upload-text {
    font-size: 14px;
    margin: 10px 0;
    color: #444;
}

.representation-form-container .link-text {
    color: var(--link-blue);
    font-weight: 600;
}

.representation-form-container .upload-subtext {
    font-size: 11px;
    color: #888;
}

.representation-form-container .doc-list-section {
    margin-bottom: 24px;
    border: 1px solid #E4E4E4;
    border-radius: 8px;
    padding: 16px;
}

.representation-form-container .doc-list-title {
    font-size: 14px;
    font-weight: 600;
    color: #444;
    margin-bottom: 12px;
    margin-top: 0;
}

.representation-form-container .file-item {
    display: flex;
    align-items: center;
    padding: 8px;
    border: 1px solid #EEE;
    border-radius: 4px;
    margin-bottom: 8px;
    background: #FFF;
}

.representation-form-container .file-info {
    flex: 1;
    margin-left: 10px;
}

.representation-form-container .file-name {
    font-size: 13px;
    font-weight: 500;
}

.representation-form-container .file-size {
    font-size: 11px;
    color: #888;
}

.representation-form-container .remove-file {
    background: none;
    border: none;
    cursor: pointer;
    color: #999;
}

.representation-form-container .remove-file:hover {
    color: var(--error-red);
}


/* Footer Navigation */
.representation-form-container .form-navigation {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.representation-form-container .btn {
    height: 40px;
    padding: 0 30px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    border: none;
    transition: opacity 0.2s;
}

.representation-form-container .btn-primary {
    background-color: var(--primary-color);
    color: white;
}

.representation-form-container .btn-primary:hover {
    opacity: 0.9;
}

.representation-form-container .btn-secondary {
    background-color: var(--primary-color);
    /* Dark button per Print 2 "Voltar" */
    color: white;
}

/* NOTE: Print 2 shows 'Voltar' as dark blue, Print 1 'Avançar' as dark blue. */
/* Wait, Print 2 "Voltar" is dark. "Avançar" is light gray. */
/* Let's adjust btn styling based on mock 2 */

.representation-form-container .btn-secondary {
    background-color: var(--primary-color);
    color: white;
}

/* If inactive/secondary style is needed: */
.representation-form-container .btn-light {
    background-color: #D3D3D3;
    color: #555;
    /* Print 4 shows light gray 'Avançar' maybe disabled? Print 2 shows 'Avançar' light gray. */
}/* End custom CSS */