@charset "UTF-8";
:root {
  --cblue: #00334F; 
  --cyellow: #FEDC5A;

}
button, a, text, input[type="text"] {
  cursor: default;
}
.atai-paso-a-paso-container {
    max-width: 100%;
    margin: 40px auto;
    padding: 50px 70px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    background-image: url(https://tutelasapp.com/steps/wp-content/uploads/2025/06/bg-steps.png);
  background-position: bottom center;
  background-size: cover;
}
.atai-paso-a-paso-container h2{
    text-align: center;
  font-weight: 700;
  color: #fff;
  font-size: 2em;
  margin:0;
}
.atai-paso-a-paso-container p{
    text-align: center;
  color: #828282;
  margin-bottom: 30px;
  font-size: 19px;
  font-weight: 400;
}
#wrap-steps {
    display: flex;
    gap: 20px;
}

.atai-steps-navigation {
    flex: 1;
    border-right: 1px solid #eee;
   background: #fff;
  border-radius: 20px;
  padding: 20px 0px 20px 30px;
}

.atai-steps-navigation h3 {
    color: #807f7f;
  margin-bottom: 20px;
  font-size: 1.2em;
  font-weight: 600;
}

.atai-steps-navigation ul {
    list-style: none;
    padding: 0;
}

.atai-steps-navigation li {
    margin-bottom: 20px;
    font-size: 17px;
    display: flex;
    align-items: center;
    width: 88%;
    max-width: 100%;
    background: #fff;
    padding: 5px 20px 5px 5px;
    border-radius: 25px;
    color: var(--cblue);
    font-weight: 500;
    transition: background-color 0.4s ease, color 0.4s ease, transform 0.2s ease;
}
.atai-steps-navigation li:hover{
    background:var(--cyellow);
    border-radius: 25px;
    color:var(--cblue);
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
    transform: translateY(-3px)
}

.atai-steps-navigation li .dashicons {
    margin-right: 10px;
    font-size: 25px;
    color: var(--cblue);
    background: #fff;
    padding: 4px;
    border-radius: 25px;
    border:1px solid var(--cblue);
}

.atai-steps-navigation li a {
    text-decoration: none;
    color: #555;
    transition: color 0.3s ease;
}

.atai-steps-navigation li a:hover {
    color: #0073aa; /* Color de WordPress al pasar el ratón */
}

.atai-steps-navigation li.atai-current-step {
    font-weight: bold;
    background:var(--cblue);
    padding: 5px 20px 5px 5px;
    border-radius: 25px;
    color:#fff;
}

.atai-steps-navigation li.atai-current-step a {
    color: #fff; /* Color activo */
}

.atai-steps-navigation li.atai-current-step .dashicons {
    color: var(--cblue);
  background: #fff;
  padding: 5px;
  border-radius: 25px;
}

.atai-steps-navigation li.atai-completed-step a {
    color: #28a745; /* Verde para pasos completados */
}

.atai-steps-navigation li.atai-completed-step .dashicons {
    color: #28a745;
}

.atai-step-content {
    flex: 2;
    background: #fff;
  padding: 10px 50px;
  border-radius: 20px;
}
.atai-step-content h4 {
    margin-bottom: 15px;
  background: var(--cyellow);
  text-align: center;
  color: var(--cblue);
  padding: 10px;
  border-radius: 25px;
  font-size: 22px;
  font-weight: 700;
}

.atai-progress-bar {
    width: 100%;
    background-color: #dddddd;
    border-radius: 25px;
    margin-bottom: 20px;
    overflow: hidden; 
    padding: 0px;
}

.atai-progress {
    height: 25px;
    background-color: #3362B8;
  text-align: center;
  color: white;
  line-height: 25px;
  border-radius: 5px;
  transition: width 0.5s ease-in-out;
  font-size: 17px;
}

.atai-current-step-content {
    padding: 20px;
    border: 1px solid #eee;
    border-radius: 5px;
    background-color: #f9f9f9;
    min-height: 200px; /* Altura mínima para el contenido del paso */
}

.atai-step-navigation-buttons {
    margin-top: 30px;
    display: flex;
    justify-content: flex-end; /* Alinea los botones a la derecha */
    gap: 10px;
}

.atai-step-navigation-buttons .button, #atai-signature-modal button{
    padding: 10px 30px;
  border: none;
  border-radius: 25px;
  font-size: 17px;
  text-decoration: none;
  display: inline-block;
  text-align: center;
  font-weight: 700;
  cursor: pointer !important;
  transition: all 0.3s ease;
  background: var(--cblue);
  color: #fff;
}
.atai-step-navigation-buttons .button:hover, .atai-step-navigation-buttons .button:focus{
    background: var(--cyellow);
  color: var(--cblue);
}
#atai-add-signature.btn_firma:hover{
    background: var(--cblue);
  color: #fff;
}
.atai-paso-a-paso-container.atai-current-step-1 .atai-prev-button,
.atai-paso-a-paso-container.atai-current-step-6 .atai-prev-button,
.atai-paso-a-paso-container.atai-current-step-7 .atai-prev-button {
    display: none;
}

.atai-paso-a-paso-container.atai-current-step-6 .atai-next-button,
.atai-paso-a-paso-container.atai-current-step-7 .atai-next-button {
    display: none;
}

.atai-paso-a-paso-container:not(.atai-current-step-6) .atai-correct-button,
.atai-paso-a-paso-container:not(.atai-current-step-6) .atai-confirm-button {
    display: none;
}


.atai-prev-button {
    background-color: #f0f0f0;
    color: #333;
    border: 1px solid #ccc;
}

.atai-prev-button:hover {
    background-color: var(--cyellow);
}

.atai-next-button, .atai-confirm-button {
    background-color: var(--cblue); 
    color: #fff;
}

.atai-next-button:hover, .atai-confirm-button:hover {
    background-color: #005a87;
}

.atai-finish-button {
    background-color: #28a745; /* Verde para finalizar */
    color: white;
}

.atai-finish-button:hover {
    background-color: #218838;
}

/* Estilos para los tipos de tutela (radio buttons personalizados) */
.atai-tipos-tutela-selection {
    margin-bottom: 30px;
}

.atai-tipos-tutela-selection h3 {
    margin-bottom: 20px;
  color: #828282;
  text-align: center;
  font-size: 21px;
  font-weight: 500;
}

.atai-radio-group {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.atai-radio-input {
    /* Ocultar el radio button nativo */
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.atai-radio-label {
    cursor: pointer;
    display: block; /* O inline-block dependiendo del layout deseado */
}

.atai-radio-item-wrap {
   border: 1px solid #ddd;
  border-radius: 10px;
  padding: 15px;
  text-align: center;
  background-color: #fff3c4;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 150px;
  max-width: 200px;
  min-height: 150px;
}

.atai-radio-item-wrap:hover {
    border-color: #a0a0a0; /* Color al pasar el ratón */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.atai-radio-image {
    max-width: 85%;
    height: auto;
    margin-bottom: 10px;
}

.atai-radio-name {
    font-weight: bold;
    color: #555;
    font-size: 1em;
}

/* Estilo cuando el radio button está seleccionado */
.atai-radio-input:checked + .atai-radio-label .atai-radio-item-wrap {
    border-color: #0073aa; /* Color de borde al seleccionar */
    background-color: #d5d5d5; /* Fondo más claro al seleccionar */
    box-shadow: 0 4px 8px rgba(0, 115, 170, 0.2); /* Sombra para destacar */
}

.atai-radio-item-wrap:hover {
    border-color: #a0a0a0; /* Color al pasar el ratón */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.atai-radio-image {
    max-width: 85%; /* Tamaño de la imagen */
    height: auto;
    margin-bottom: 10px;
    border-radius: 10px;
}

.atai-radio-name {
    font-weight: bold;
    font-size: 1em;
  line-height: 1.1em;
  color: var(--cblue);
  min-height: 53px;
}

/* Estilo cuando el radio button está seleccionado */
.atai-radio-input:checked + .atai-radio-label .atai-radio-item-wrap {
    border-color: var(--cblue); /* Color de borde al seleccionar */
    background-color: #d5d5d5; /* Fondo más claro al seleccionar */
    box-shadow: 0 4px 8px rgba(0, 115, 170, 0.2); /* Sombra para destacar */
}

.atai-radio-input:checked + .atai-radio-label .atai-radio-item-wrap .atai-radio-name{
    color:var(--cblue);
    font-size: 17px;
}

/* Estilos para el Paso 2: Información de Contacto */
.atai-step-2-content h3 {
    color: #333;
    margin-bottom: 15px;
}

.atai-step-2-content p {
    color: #828282;
  margin-bottom: 30px;
  font-size: 19px;
  font-weight: 400;
}

.atai-step-3-content .atai-form-section label{
    font-size: 18px;
  font-weight: 600;
}

.atai-step-4-content .atai-form-section .atai-form-row{
    justify-content: initial;
  align-items: center;
  margin-bottom:30px;
}
.atai-step-4-content .atai-form-section .atai-form-row label{
    font-size:16px;
}
.atai-step-4-content .atai-form-section .atai-form-row .select2-container{
    font-size: 16px;
  width: 100%!important;
}
.atai-form-section {
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 25px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.atai-form-section h4 {
    color: #0073aa;
    margin-top: 0;
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

.atai-form-row {
    display: flex;
    gap: 20px; /* Espacio entre columnas */
    margin-bottom: 15px;
}

.atai-form-column {
    flex: 1; /* Distribuye el espacio equitativamente */
}

.atai-form-column label {
    display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: #6a6969;
  font-size: 17px;
}

.atai-form-column label .required {
    color: red;
}

.atai-form-column input[type="text"],
.atai-form-column input[type="tel"],
.atai-form-column input[type="email"] {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 1em;
    box-sizing: border-box; /* Incluir padding y border en el ancho total */
    transition: border-color 0.3s ease;
    background: #f2f2f2;
  font-size: 17px;
  font-weight: 500;
}

.atai-form-column input[type="text"]:focus,
.atai-form-column input[type="tel"]:focus,
.atai-form-column input[type="email"]:focus {
    border-color: #0073aa;
    outline: none;
    box-shadow: 0 0 5px rgba(0, 115, 170, 0.3);
}

/* Estilos para campos full-width y checkbox personalizado */
.atai-full-width-input {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 17px;
    box-sizing: border-box;
    transition: border-color 0.3s ease;
}

.atai-full-width-input:focus {
    border-color: #0073aa;
    outline: none;
    box-shadow: 0 0 5px rgba(0, 115, 170, 0.3);
}

.atai-checkbox-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-weight: bold;
    color: #555;
    margin-top: 10px;
}

.atai-checkbox-label input[type="checkbox"] {
    margin-right: 10px; /* Espacio entre el checkbox y el texto */
    width: 20px;
    height: 20px;
    /* Personalización básica del checkbox */
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border: 2px solid #ccc;
    border-radius: 4px;
    outline: none;
    cursor: pointer;
    transition: background-color 0.3s, border-color 0.3s;
}

.atai-checkbox-label input[type="checkbox"]:checked {
    background-color: #0073aa; /* Color de fondo cuando está seleccionado */
    border-color: #0073aa;
}

.atai-checkbox-label input[type="checkbox"]:checked::before {
    content: '\2713'; /* Icono de check */
    display: block;
    color: white;
    font-size: 14px;
    line-height: 18px;
    text-align: center;
}

/* Estilos para el Paso 5: Carga de Archivos */
.atai-file-inputs-container {
    max-height: 250px; /* Altura fija para el contenedor de archivos */
    overflow-y: auto; /* Habilitar scroll vertical si el contenido excede la altura */
    border: 1px solid #e0e0e0;
    padding: 15px;
    border-radius: 5px;
    background-color: #fcfcfc;
    margin-top: 15px;
    margin-bottom: 15px;
}

.atai-file-input-item {
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px dashed #eee;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    flex-direction: column;
    position: relative;
}

.atai-file-input-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.atai-file-input-item label {
    margin-bottom: 0;
    font-size: 17px;
  font-weight: 600;
}
.atai-step-6-content p{
    text-align: left;
  color: #4a4a4a;
  margin-bottom: 15px;
  font-size: 18px;
  font-weight: 400;
}
.atai-step-6-content p.tit_int{
    color: #fff;
  font-size: 20px;
  background: #888383;
  max-width: fit-content;
  padding: 2px 20px 5px 10px;
  border-radius: 20px;
}
.atai-file-upload-input {
    flex-grow: 1; /* Permitir que el input ocupe el espacio restante */
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box; /* Asegura que padding y border estén incluidos en el ancho */
    background-color: #fff;
}

.atai-file-upload-input:focus {
    outline: none;
    border-color: #0073aa;
    box-shadow: 0 0 0 1px #0073aa;
}

.atai-remove-file-input {
    color: #dc3232;
    cursor: pointer;
    font-size: 18px;
    margin-left: 10px;
    transition: color 0.2s ease;
    position: absolute;
    right: 0;
}

.atai-remove-file-input:hover {
    color: #c00;
}

/* Estilos para los botones de añadir y cargar archivos */
#atai-add-file-input, #atai-upload-files {
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    transition: background-color 0.3s ease;
}

#atai-add-file-input {
    background-color: #0085ba; /* Color azul de WordPress */
    color: white;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

#atai-add-file-input:hover {
    background-color: #0073aa;
}

#atai-upload-files {
    background-color: #28a745; /* Verde para cargar */
    color: white;
    border: none;
}

#atai-upload-files:hover {
    background-color: #218838;
}

.atai-step-5-content .description {
    font-size: 0.9em;
    color: #888;
    margin-top: 5px;
    margin-bottom: 10px;
}

/* Estilos para el Paso 7: Confirmación y Descarga */
.atai-step-7-content {
    text-align: center; /* Centrar todo el contenido del paso 7 */
}

.atai-step-7-content h3.text-center,
.atai-step-7-content p.text-center {
    text-align: center;
}

.atai-download-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 30px 0;
}

.atai-button-word,
.atai-button-pdf {
    padding: 15px 30px;
    border-radius: 25px;
    font-size: 1.1em;
    font-weight: bold;
    cursor: pointer;
    border: none;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.atai-button-word {
    background-color: #1877f2; /* Azul de Word */
    color: white;
}

.atai-button-word:hover {
    background-color: #0d65e2;
    transform: translateY(-2px);
}

.atai-button-pdf {
    background-color: #dc392c; /* Rojo de PDF */
    color: white;
}

.atai-button-pdf:hover {
    background-color: #c02c20;
    transform: translateY(-2px);
}

.atai-radicacion-info {
    background-color: #fff3cd; /* Amarillo claro */
    border: 1px solid #ffeeba; /* Borde más oscuro */
    border-radius: 8px;
    padding: 20px;
    margin-top: 40px;
    margin-bottom: 30px;
    text-align: center;
}

.atai-radicacion-info h3 {
    color: #856404; /* Texto más oscuro */
    margin-bottom: 15px;
}

.atai-radicacion-info p {
    color: #856404;
}

.atai-radicacion-icon {
    margin-bottom: 15px;
}

.atai-radicacion-icon-img {
    max-width: 50px;
    margin-bottom: 10px;
}

.atai-back-to-dashboard {
    text-align: center;
    margin-top: 20px;
}

.atai-dashboard-link {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    color: #0073aa;
    font-weight: bold;
    font-size: 1.1em;
    transition: color 0.3s ease;
}

.atai-dashboard-link:hover {
    color: #005a87;
}

.atai-dashboard-link .dashicons {
    margin-right: 8px;
    font-size: 20px;
}

.atai-error-message {
    color: #fff;
    background-color: #2d2d2d;
    padding: 18px 25px;
    font-size: 1em;
    box-shadow: 0 0 11px 3px rgba(0, 0, 0, .33);
}

.atai-wrap-steps {
    display: flex;
    gap: 20px;
}

.atai-step-title-text {
    text-decoration: none;
    color: inherit;
}

.atai-form-row-buttons {
    margin-top: 20px;
}

/* Estilos para el textarea de hechos en el Paso 3 */
#facts_textarea {
    width: 100%;
    height: 200px;
    box-sizing: border-box; /* Asegura que el padding y el borde se incluyan en el ancho total */
    margin-top: 20px;
  font-size: 15px;
  font-family: inherit;
  padding: 10px;
}
.dashicons, .dashicons-before::before{
    width:35px;
    height:35px;
}
#atai-add-signature.btn_firma{
    width: 100%;
  background: var(--cyellow);
  color: var(--cblue);
  border: 2px solid var(--cblue);
  text-transform: uppercase;
  font-weight: 700;
  border-radius: 15px;
  transition: all 0.3s ease;
}

#atai-signature-modal{
    border: 5px solid rgb(204, 204, 204);
  border-radius: 25px;
}

.atai-paso-a-paso-container p.tit_p1{
    color: #fff;
  font-size: 21px;
  padding: 10px 0;
}

.button.atai-button-pdf{
  background: var(--cyellow);
  color: var(--cblue);
  font-weight: 700;
  font-size: 23px;
  border: 2px solid var(--cblue);
  border-radius: 15px;
}
.button.atai-button-pdf:hover{
     background: var(--cblue);
  color: #fff;
}
/*# sourceMappingURL=autotutela-ai.css.map */