/* Incrementar el tamaño y modoficar el color del Nombre de las Secciones */

.obj_issue_toc .section h3 {
  font-family: 'Times New Roman', Times, serif;
  font-size: 27px !important;
  color: #57534D !important;
}

/*Nombre en la Pagina Revista Mexicana de Física*/

/* Selector para el enlace dentro del div */
.pkp_site_name .is_text {
  display: inline-flex;
  color: white;
  font-family: 'Times New Roman', Times, serif;
  font-size: 40px;
  line-height: 1; /*  ajusta la altura real */
  text-decoration: none;
  transition: color 0.1s;
  background-color: rgba(143, 114, 137, 0.4) !important;
  border-radius: 10px;
  margin-bottom: 12px;
  padding: 6px 10px;
}

@media (max-width: 1140px) {
  .pkp_site_name .is_text {
    font-size: 20px;
    background: none !important;
    padding: 9px 0px !important;
  }
}


/* Efecto Hover exacto */
.pkp_site_name .is_text:hover {
    color: #F2EAE9;       /* O el color que prefieras */
    cursor: pointer;
}

/* Para mantener fijo el Header*/
.pr-header-container{
  position: sticky;
  top: 0;
  z-index: 9999;
}

/* Versión simplificada */
#navigationUser > li:first-child {
    position: relative !important;
    margin: 2px !important;
}

#navigationUser > li:first-child > a {
    background-color: rgba(143,114,137,0.4) !important;
    padding: 3px 7px !important;
    border-radius: 10px !important;
    color: white !important;
    font-weight: 400 !important;
    border: 1px solid black !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 3px !important;
    transition: all 0.3s ease !important;
}

#navigationUser > li:nth-child(2) > a {
    background-color: rgba(143,114,137,0.4) !important;
    padding: 3px 7px !important;
    border-radius: 10px !important;
    color: white !important;
    font-weight: 400 !important;
    border: 1px solid black !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 3px !important;
    transition: all 0.3s ease !important;
    margin: 2px !important;
}

#navigationUser > li:nth-child(2) > a:hover {
    background-color: rgba(143,114,137,0.6) !important; /* tono más oscuro */
    transform: translateY(-2px) scale(1.05) !important;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1) !important;
    border-color: #333 !important;
}

#navigationUser > li:first-child > a:hover {
    background-color: rgba(143,114,137,0.6) !important; /* tono más oscuro */
    transform: translateY(-2px) scale(1.05) !important;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1) !important;
    border-color: #333 !important;
}
/*Para incrementar la altura del header*/
.pkp_head_wrapper {
  padding-top: 100px;
  padding-bottom: 0px;
}


@media (max-width: 1140px) {
  .pkp_head_wrapper {
    padding-top: 0px;
    padding-bottom: 0px;
  }
}

/*Style y Efecto Hover en el Footer*/

.pkp_footer_content  .footer-links a {
    display: block;
    color: black;
    text-decoration: none;
    margin: 6px 0;
    transition: all 0.3s ease !important;
}

.pkp_footer_content  .footer-links a:hover {
    color: #002b5c;
    text-decoration: none;
    padding-left: 5px;
    font-weight: 700;
    /*transform: translateY(+2px) scale(1.05) !important;*/

}
