* {
    font-family: Arial, Helvetica, sans-serif;   
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;

}

body{
    background-color: #3e5770;
}
/*  ENCABEZADO */
.header{
    position: sticky;    
    top: 0;
    left: 0;
    z-index: 100;
  /*  border: red solid 1px;*/    
    
    height: 40px;
    width: 100%;
}  
/*  LADO IZQUIERDO DEL ENCABEZADO */
.headerIzq{    
    display: flex;
    align-items: center; /* Alinea verticalmente el contenido */
    top: 0;
    left: 0; 
    width: 70%;
    height: 100%;    
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    font-size: 20px;
    background-color: #2c3e50; 
    color: white;
}
/*  LADO DERECHO DEL ENCABEZADO */
.headerDer{
    position: absolute;
    right: 0;   
    top: 0;
    width: 30%;
    display: flex;
    align-items: center; /* Alinea verticalmente el contenido */
     justify-content: center; /* Opcional: para centrar horizontalmente */
    height: 100%;
    background-color: #2c3e50; 
}

.container {
    max-width: 100%;        
}
/* LAS TRES SECCIONES*/ 
/*SECTION LOGO */
#sectionLogo{
    margin: 5px;
    width: 100%; 
    /* border: black solid 1px;*/ 
    display: inline-block;       
    text-align: center;
    
}

/*SECTION CONTENIDO */
#sectionContenido{   

    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    justify-content: space-between;

}
#sectionContenido p{
padding: 10px;
margin: 5px;
}

#sectionContenido .cuadro{
    border: #9cb899 solid 1px; 
    margin: 10px;
    padding: 5px;
    border-radius: 15px;      
    width:  100%;
    background-color:rgb(199, 230, 196) ;
    
}


.letraGrande{
    font-family: "Michroma", sans-serif;
    line-height: normal;
    font-weight:bold;   
    color: rgb(32, 36, 80);
    text-transform: none;
    font-size: 1.8rem;
    font-style: normal;
}


/*SECTION IMAGEN */
#sectionImagen{
    width: 100%;
    text-align: center;
}

#sectionImagen .imagen-redonda{
    border-radius: 3%;  /* Hace que sea un círculo */
     object-fit: cover;   /* Recorta la imagen para que llene el círculo sin deformarse */
}

/*FOOTER*/
.footer{    
    height: 30px;
    position: sticky;
    bottom: 0;
    text-align: center;

    background: #2c3e50; 
    color: white; 
    text-align: center;         
    font-size: 14px;
    
}

#btnIngresar {
    padding: 12px 24px;
    font-size: 12px;
    background-color: #7c4d4d;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
   /*  font-weight: bold; */
   text-decoration: none;
}

btnIngresar:hover {
    background-color: #ff5252;
    transform: scale(1.05);
    transition: all 0.2s;
}