#banner {
    font-family: "aileron-light";
    width: 100%;
    position: relative;
    background: url("../img/slider/OrozcoLab_Laboratorio_acreditado_y_aprobado_1.png") center bottom no-repeat;
    background-size: cover;
    padding: 200px 0 120px 0;
}

#banner .title {
    width: 100%;
    float: left;
}

#banner .title h1 {
    font-family: "aileron-bold";
    color: #fff;
    margin-bottom: 10px;
    font-size: 52px;
    font-weight: bold;
}

/*** Contenedor Principal**/
.trcontainer {
    max-width: 800px;
    margin: 40px auto;
    background: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

/*** Buscador ***/
.search-box {
    text-align: center;
    margin-bottom: 30px;
}

.search-box input {
    width: 60%;
    padding: 14px;
    border: 1px solid #ccc;
    border-radius: 10px;
    outline: none;
    transition: 0.9s;
}

.search-box input:focus {
    border-color: #0ea5b6;
    box-shadow: 0 0 0 3px rgba(14, 165, 182, 0.2);
}

.search-box button {
    padding: 14px 25px;
    border-radius: 10px;
    border: none;
    background: linear-gradient(135deg, #0ea5b6, #0c8c9b);
    color: white;
    font-weight: 600;
    cursor: pointer;
    margin-left: 10px;
    transition: 0.3s;
}

.search-box button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(14, 165, 182, 0.3);
}


/** estilos para la card donde se mostraran los resultados de la busqueda */
h2 {
    margin-bottom: 20px;
}

.result-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-top: 15px;
}

.result-info div {
    background-color: #f9fafb;
    padding: 12px;
    border-radius: 8 px;
}

.status-box {
    margin-top: 25px;
    font-size: 16px;
}
.status-box img {
    width: 45px;
    margin-left: 10px;
    cursor: pointer;
    transition: transform 0.3s ease;
    
}

.status-box img:hover {
    transform: scale(1.2);
}

.status {
    display: inline-block;
    margin-top: 10px;
    background: #eef6ff;
    padding: 10px 15px;
    margin-bottom: 8px;
    border-radius: 50px;
}

/***ERROR***/
.error-box {
    background: #fff1f1;
    border-left: 6px solid #ff4d4d;
    padding: 15px;
    border-radius: 8px;
}

.error-content {
    align-items: center;
}

.error-img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    display: block;
    margin: 0 auto;
}

/*estilos para la barra de progreso*/
.content-progres {
    margin-top: 30px;
    display: none;
}

.steps {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.step {
    text-align: center;
    flex: 1;
    color: #aaa;
    font-size: 13px;
    transition: 0.3s;
}

.step.active {
    color: #0ea5b6;
    font-weight: 600;
}

.step.current {
    color: #0072ff;
    font-weight: bold;
}

.step img {

    display: none;
    margin: 10px auto 0;
}


.step.active img {
    width: 30px;
    display: block;
    opacity: 0.6;
}

.step.current img {
    width: 60px;
    display: block;
    opacity: 1;
    transform: scale(1.1);
}

.progress-line {
    width: 100%;
    height: 8px;
    background: #eee;
    border-radius: 10px;
    overflow: hidden;
}

#progress {
    height: 100%;
    width: 0%;
    background: linear-gradient(to right, #0C6478, #15919B, #09D1C7, #46DFB1, #80EE98);
    transition: width 0.6s ease;
}