/* credencial.css */

*{
  box-sizing:border-box;
}

body{
  margin:0;
  padding:24px;
  background:#E9E9E9;
  font-family:'DM Sans', sans-serif;

  display:flex;
  justify-content:center;
  align-items:flex-start;

  min-height:100vh;
}

#loader{
  font-size:18px;
  color:#555;
  margin-top:100px;
}

.hidden{
  display:none !important;
}

#card{

  width:min(92vw,430px);

  background:#FFFFFF;

  border-radius:34px;

  overflow:hidden;

  box-shadow:
    0 10px 40px rgba(0,0,0,0.08);
}

#header{

  padding:
    38px
    34px
    10px
    34px;

  display:flex;
  justify-content:space-between;
  align-items:flex-start;
}

#logo{
  width:115px;
  height:auto;
}

#titulo{
  text-align:right;

  font-size:26px;
  line-height:0.95;

  font-weight:700;

  color:#111111;
}

#foto-container{

  display:flex;
  justify-content:center;

  margin-top:6px;
}

#foto-border{

  width:180px;
  height:180px;

  border-radius:50%;

  border:4px solid #B9D97B;

  overflow:hidden;

  background:#F4F4F4;
}

#foto{

  width:100%;
  height:100%;

  object-fit:cover;
}

#contenido{

  padding:
    28px
    34px
    24px
    34px;
}

#nombre-completo{

  font-size:28px;

  line-height:1.08;

  font-weight:800;

  color:#111111;

  margin-bottom:24px;

  text-align:center;

  word-break:break-word;

  text-wrap:balance;

  padding:0 10px;
}

.linea{

  width:100%;
  height:1px;

  background:#D8D8D8;

  margin-bottom:26px;
}

.info-row{

  display:flex;
  justify-content:space-between;
  align-items:flex-end;

  margin-bottom:18px;

  gap:14px;
}

.label{

  font-size:16px;

  color:#6E6E6E;

  font-weight:400;
}

.value{

  font-size:16px;

  color:#111111;

  font-weight:500;

  text-align:right;
}

.strong{
  font-weight:800;
}

#estado-box{

  margin:
    0
    34px
    28px
    34px;

  min-height:66px;

  border-radius:22px;

  display:flex;
  align-items:center;
  justify-content:center;

  padding:16px;
}

#estado-texto{

  font-size:22px;

  font-weight:700;

  text-align:center;
}

#footer{

  padding:
    0
    34px
    36px
    34px;

  text-align:center;
}

.footer-line1{

  font-size:17px;

  color:#111111;

  font-weight:700;

  margin-bottom:4px;
}

.footer-line2{

  font-size:15px;

  color:#666666;

  font-weight:400;
}

@media (max-width:480px){

  body{
    padding:14px;
  }

  #titulo{
    font-size:28px;
  }

  #foto-border{
    width:160px;
    height:160px;
  }

  #nombre-completo{
    font-size:30px;
  }

  .label,
  .value{
    font-size:15px;
  }

  #estado-texto{
    font-size:20px;
  }
}