/* ============================= */
/* RESET BASICO */
/* ============================= */

*{
margin:0;
padding:0;
box-sizing:border-box;
}

body{
font-family:'Inter', sans-serif;
background:#f6f9fc;
color:#333;
}

/* ============================= */
/* CONTENEDOR PRINCIPAL */
/* ============================= */

.contenido{
max-width:1000px;
margin:60px auto;
padding:0 20px;
}

.caja{
background:white;
padding:50px;
border-radius:15px;
box-shadow:0 10px 30px rgba(0,0,0,0.08);
}

/* ============================= */
/* TITULO */
/* ============================= */

.titulo-pagina{
text-align:center;
font-size:34px;
color:#1a73e8;
margin-bottom:30px;
}

/* ============================= */
/* HEADER SUPERIOR */
/* ============================= */

.info-header{
display:flex;
align-items:center;
justify-content:space-between;
gap:20px;
margin-bottom:30px;
border-bottom:1px solid #eee;
padding-bottom:20px;
}

/* LOGO */
.logo-info{
height:70px;
object-fit:contain;
}

/* TITULO BIENVENIDA */
.info-header h2{
flex:1;
text-align:center;
font-size:24px;
font-weight:600;
}

.info-header span{
color:#1a73e8;
}

/* ICONO USUARIO */
.icon-user{
display:flex;
align-items:center;
justify-content:center;
color:#333;
transition:.3s;
}

.icon-user:hover{
color:#1a73e8;
}

/* ============================= */
/* CAJA INFORMACION */
/* ============================= */

.alerta-info{
background:#eef4ff;
padding:18px;
border-radius:10px;
margin-bottom:30px;
text-align:center;
}

/* ============================= */
/* SUBTITULO */
/* ============================= */

.manual-title{
font-size:22px;
margin-bottom:20px;
color:#333;
}

/* ============================= */
/* LISTA */
/* ============================= */

.field-list{
padding-left:20px;
margin-bottom:25px;
}

.field-list li{
margin-bottom:14px;
line-height:1.7;
}

/* ============================= */
/* NOTAS */
/* ============================= */

.nota-box{
background:#ADD8E6;;
border-left:5px solid #5e96f7;
padding:18px;
border-radius:10px;
margin:25px 0;
}

.nota-box ol{
margin-left:20px;
}

/* ============================= */
/* BOTONES */
/* ============================= */

.button-container{
display:flex;
justify-content:center;
gap:20px;
margin-top:40px;
flex-wrap:wrap;
}

.btn{
padding:12px 28px;
border-radius:8px;
font-size:16px;
border:none;
cursor:pointer;
transition:.3s;
}

.btn-back{
background:#6c757d;
color:white;
}

.btn-form{
background:#1a73e8;
color:white;
}

.btn:hover{
transform:translateY(-2px);
opacity:.9;
}

/* ============================= */
/* RESPONSIVE */
/* ============================= */

@media(max-width:768px){

.caja{
padding:30px 20px;
}

.info-header{
flex-direction:column;
text-align:center;
}

.logo-info{
height:60px;
}

.info-header h2{
font-size:20px;
}

.titulo-pagina{
font-size:26px;
}

.button-container{
flex-direction:column;
}

.btn{
width:100%;
}

}
