.elementor-869 .elementor-element.elementor-element-c84c965{--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;--padding-top:20px;--padding-bottom:20px;--padding-left:20px;--padding-right:20px;}.elementor-widget-heading .elementor-heading-title{font-family:var( --e-global-typography-primary-font-family ), Sans-serif;font-weight:var( --e-global-typography-primary-font-weight );color:var( --e-global-color-primary );}.elementor-869 .elementor-element.elementor-element-049d94a{text-align:center;}.elementor-869 .elementor-element.elementor-element-049d94a .elementor-heading-title{color:var( --e-global-color-secondary );}.elementor-widget-text-editor{font-family:var( --e-global-typography-text-font-family ), Sans-serif;font-weight:var( --e-global-typography-text-font-weight );color:var( --e-global-color-text );}.elementor-widget-text-editor.elementor-drop-cap-view-stacked .elementor-drop-cap{background-color:var( --e-global-color-primary );}.elementor-widget-text-editor.elementor-drop-cap-view-framed .elementor-drop-cap, .elementor-widget-text-editor.elementor-drop-cap-view-default .elementor-drop-cap{color:var( --e-global-color-primary );border-color:var( --e-global-color-primary );}.elementor-869 .elementor-element.elementor-element-468351f{text-align:center;}@media(max-width:767px){.elementor-869 .elementor-element.elementor-element-c84c965{--padding-top:10px;--padding-bottom:10px;--padding-left:10px;--padding-right:10px;}}@media(min-width:768px){.elementor-869 .elementor-element.elementor-element-c84c965{--content-width:700px;}}/* Start custom CSS for html, class: .elementor-element-5c501be *//* Estilos generales del validador */
.validador-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0px;
    font-family: 'Roboto', Arial, sans-serif;
    color: #424242;
}

.validador-titulo {
    color: #424242;
    text-align: center;
    margin-bottom: 15px;
    font-size: 28px;
    font-weight: 600;
}

.validador-subtitulo {
    color: #424242;
    margin: 20px 0 15px;
    font-size: 20px;
    font-weight: 500;
}

.validador-descripcion {
    text-align: center;
    margin-bottom: 25px;
    color: #666;
    font-size: 16px;
}

/* Estilos para las secciones */
.validador-seccion {
    background-color: #fff;
    border-radius: 6px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 25px;
    margin-bottom: 30px;
    transition: all 0.3s ease;
}

.validador-seccion.disabled {
    opacity: 0.7;
    pointer-events: none;
}

/* Estilos para los grupos de upload */
.validador-upload-grupo {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 20px;
}

.validador-upload-item {
    flex: 1;
    min-width: 250px;
}

.validador-upload-item label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.validador-input-file {
    width: 0.1px;
    height: 0.1px;
    opacity: 0;
    overflow: hidden;
    position: absolute;
    z-index: -1;
}

.validador-input-file + .validador-filename {
    cursor: pointer;
    padding: 10px 15px;
    border: 2px dashed #ccc;
    border-radius: 4px;
    display: inline-block;
    width: 100%;
    box-sizing: border-box;
    background-color: #f9f9f9;
    transition: all 0.3s ease;
}

.validador-input-file:focus + .validador-filename,
.validador-input-file + .validador-filename:hover {
    border-color: #98CA3C;
    background-color: #f0f7e6;
}

.validador-input-file[disabled] + .validador-filename {
    cursor: not-allowed;
    background-color: #eee;
    border-color: #ddd;
}

.validador-filename {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* Estilos para botones */
.validador-btn {
    display: inline-block;
    padding: 12px 24px;
    font-size: 16px;
    font-weight: 500;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.validador-btn[disabled] {
    opacity: 0.6;
    cursor: not-allowed;
}

.validador-btn-primary {
    background-color: #98CA3C;
    color: white;
}

.validador-btn-primary:hover:not([disabled]) {
    background-color: #86b52e;
}

/* Estilos para los resultados */
.validador-resultado {
    margin-top: 20px;
    border-radius: 4px;
    overflow: hidden;
}

.validador-resultado.hidden {
    display: none;
}

.validador-resultado-header {
    padding: 12px 15px;
    color: white;
    font-weight: 500;
}

.validador-resultado-header.success {
    background-color: #98CA3C;
}

.validador-resultado-header.error {
    background-color: #E91E63;
}

.validador-resultado-content {
    padding: 15px;
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    border-top: none;
}

.validador-error-item {
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
}

.validador-error-item:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #E91E63;
}

/* Modal de carga */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.modal.hidden {
    display: none;
}

.modal-content {
    background-color: white;
    padding: 30px;
    border-radius: 5px;
    text-align: center;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.2);
}

.loader {
    border: 5px solid #f3f3f3;
    border-top: 5px solid #F58020;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 2s linear infinite;
    margin: 0 auto 15px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}/* End custom CSS */