:root{

    --color-principal:#0B5ED7;
    --color-secundario:#198754;
    --color-panel:#163B65;
    --color-fondo:#F4F6F9;
    --color-borde:#DCE3EA;
    --color-texto:#2C3E50;

}

html,
body{

    margin:0;
    padding:0;
    background:var(--color-fondo);
    font-family:Arial,Helvetica,sans-serif;

}

.container-fluid{

    padding:0;

}

.row{

    margin:0;

}

.panel-lateral{

    background:var(--color-panel);
    min-height:100vh;
    color:#FFF;
    padding:35px 30px;

}

.logo-panel{

    text-align:center;
    margin-bottom:25px;

}

.logo-colegio{

    width:120px;
    max-width:100%;

}

.titulo-panel{

    text-align:center;
    font-size:26px;
    font-weight:700;
    margin-bottom:5px;

}

.subtitulo-panel{

    text-align:center;
    font-size:18px;
    margin-bottom:20px;

}

.descripcion-panel{

    display:block;
    text-align:center;
    line-height:24px;
    margin-bottom:30px;

}

.timeline{

    margin-top:25px;

}

.timeline-item{

    background:rgba(255,255,255,.08);
    border-radius:8px;
    padding:12px 15px;
    margin-bottom:10px;
    transition:.3s;

}

.timeline-item i{

    width:24px;

}

.timeline-item.activo{

    background:var(--color-secundario);

}

#btnConsultarSolicitud{

    display:block;
    background:#ffffff;
    color:var(--color-panel);
    text-decoration:none;
    border-radius:8px;
    padding:12px 15px;
    margin-bottom:15px;
    font-weight:bold;

}

#btnConsultarSolicitud:hover{

    background:#f1f1f1;

}

.info-contacto{

    margin-top:40px;
    border-top:1px solid rgba(255,255,255,.2);
    padding-top:25px;

}

.info-contacto label{

    display:block;
    margin-bottom:12px;

}

.col-lg-9{

    padding:40px;

}

.card{

    border:none;
    border-radius:12px;
    box-shadow:0 2px 10px rgba(0,0,0,.08);

}

.card-header{

    font-weight:600;

}

.form-control{

    border-radius:8px;
    min-height:46px;

}

.btn{

    border-radius:8px;

}

.progress{

    height:10px;
    border-radius:20px;
    background:#E8EDF3;

}

.barra-progreso{

    background:linear-gradient(90deg,#0B5ED7,#198754);
    transition:width .4s;

}

.badge{

    font-size:15px;
    border-radius:30px;
    padding:12px 20px;

}

.card-body h2{

    font-weight:700;

}

.card-body p{

    font-size:15px;

}


.card-formulario{

    border:none;
    border-radius:14px;
    overflow:hidden;

}

.card-formulario-header{

    background:linear-gradient(90deg,var(--color-principal),#2f80ed);

    color:#fff;

    padding:18px 30px;

}

.card-formulario-header h4{

    margin:0;

    font-weight:600;

}

.card-formulario-header i{

    margin-right:10px;

}

.card-formulario .card-body{

    padding:35px;

}


.encabezado-admisiones{

    background:#fff;

    border-radius:15px;

    padding:25px 30px;

    margin-bottom:25px;

    box-shadow:0 4px 18px rgba(0,0,0,.08);

}

.encabezado-admisiones h2{

    color:var(--color-principal);

    font-weight:700;

    margin-bottom:8px;

}

.encabezado-admisiones p{

    color:#6c757d;

    margin-bottom:20px;

}

.barra-wizard{

    width:100%;

    height:12px;

    background:#e9ecef;

    border-radius:30px;

    overflow:hidden;

}

.barra-progreso{

    width:20%;

    height:100%;

    background:linear-gradient(90deg,#28a745,#4CAF50);

    transition:.4s;

}

.barra-info{

    display:flex;

    justify-content:space-between;

    margin-top:10px;

    font-weight:600;

}

.wizard-pasos{

    display:flex;

    justify-content:space-between;

    margin-bottom:30px;

}

.wizard-item{

    flex:1;

    text-align:center;

    position:relative;

}

.wizard-item::after{

    content:"";

    position:absolute;

    top:18px;

    left:55%;

    width:90%;

    height:2px;

    background:#ddd;

}

.wizard-item:last-child::after{

    display:none;

}

.numero-paso{

    width:38px;

    height:38px;

    border-radius:50%;

    background:#ccc;

    color:#fff;

    line-height:38px;

    margin:auto;

    font-weight:bold;

}

.wizard-item.activo .numero-paso{

    background:var(--color-principal);

}

.wizard-item.completo .numero-paso{

    background:#28a745;

}


.encabezado-admisiones{

    background:#fff;

    border-radius:15px;

    padding:25px 30px;

    margin-bottom:25px;

    box-shadow:0 6px 18px rgba(0,0,0,.08);

}

.encabezado-admisiones h2{

    font-weight:700;

    color:#1d3557;

    margin-bottom:5px;

}

.encabezado-admisiones p{

    color:#6c757d;

    margin-bottom:18px;

}

.barra-wizard{

    width:100%;

    height:14px;

    background:#e9ecef;

    border-radius:30px;

    overflow:hidden;

    position:relative;

}

.barra-progreso{

    width:20%;

    height:100%;

    border-radius:30px;

    background:linear-gradient(
        90deg,
        #0d6efd 0%,
        #00b4d8 50%,
        #38b000 100%
    );

    transition:width .45s ease;

    box-shadow:
        0 0 15px rgba(13,110,253,.35);

}

.barra-info{

    display:flex;

    justify-content:space-between;

    align-items:center;

    margin-top:10px;

}

#textoPaso{

    font-weight:600;

    color:#495057;

}

#porcentaje{

    font-size:18px;

    font-weight:700;

    color:#0d6efd;

}