@charset "UTF-8";
@font-face {
  font-family: "minionPro";
  src: url("../fonts/minionPro-BoldIt.otf") format("opentype");
  font-weight: bold;
  font-style: italic; /* Esto indica que es negrita e itálica */
}
header {
  width: 100%;
  max-width: 100%;
  padding: 0.7rem 2rem;
  box-sizing: border-box;
  border-bottom: 1.5px solid #F1F1F1;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  -webkit-box-shadow: 0px 1px 4px -3px rgba(0, 0, 0, 0.75);
  -moz-box-shadow: 0px 1px 4px -3px rgba(0, 0, 0, 0.75);
  box-shadow: 0px 1px 4px -3px rgba(0, 0, 0, 0.75);
}
header .content_logo_search {
  display: flex;
  align-items: center;
  width: 70%;
}
header .content_logo_search .logo {
  width: 30%;
}
header .content_logo_search .logo a {
  text-decoration: none;
  display: flex;
  align-items: center;
}
header .content_logo_search .logo a img {
  width: 80px;
  height: auto;
}
header .content_logo_search .logo a h1 {
  color: #771C20;
  font-size: 1rem;
  font-weight: 500;
}
header .content_logo_search .categorias {
  width: 50%;
  position: relative;
  cursor: pointer;
}
header .content_logo_search .categorias button {
  text-decoration: none;
  color: #2A2A2A;
  background: transparent;
  box-sizing: border-box;
  padding: 0.6rem 1rem;
  border: 1px solid #2A2A2A;
  border-radius: 3px;
  transition: all 0.5s;
  font-size: 1rem;
  cursor: pointer;
}
header .content_logo_search .categorias .modal_categorias {
  position: absolute;
  display: none;
  z-index: 3333;
}
header .content_logo_search .categorias .modal_categorias .menu {
  display: flex;
  flex-direction: column;
  width: 250px;
  height: auto;
  background-color: #fff;
  padding: 0.5rem 1rem;
  border-radius: 10px;
  margin-top: 1rem;
  box-shadow: 0 0 0 1px #d1d7dc, 0 2px 4px rgba(0, 0, 0, 0.08), 0 4px 12px rgba(0, 0, 0, 0.08);
}
header .content_logo_search .categorias .modal_categorias .menu a {
  text-decoration: none;
  color: #111;
  font-size: 1rem;
  margin: 1rem 0;
}
header .content_logo_search .categorias .modal_categorias .menu a:hover {
  transition: all 0.4s;
  color: #771C20;
}
header .content_logo_search .categorias button:hover + .modal_categorias,
header .content_logo_search .categorias .modal_categorias:hover {
  display: block;
  transition: all 0.5s;
}
header .content_logo_search .buscardor {
  width: 55%;
}
header .content_logo_search .buscardor form .group_input_search {
  display: flex;
  flex-direction: row;
  align-items: center;
  border: 1px solid #2A2A2A;
  border-radius: 20px;
  padding: 0.9rem 1rem;
}
header .content_logo_search .buscardor form .group_input_search input {
  border: none;
  color: #2A2A2A;
  width: 95%;
  outline: 0;
  font-size: 0.9rem;
  font-family: "Roboto", sans-serif;
}
header .content_logo_search .buscardor form .group_input_search input:focus {
  outline: 0;
  border: 0;
}
header .content_logo_search .buscardor form .group_input_search button {
  background: transparent;
  border: 0;
  font-size: 1.1rem;
  color: #2A2A2A;
  cursor: pointer;
}
header .menu {
  display: flex;
  align-items: center;
  width: 30%;
  justify-content: flex-end;
}
header .menu p {
  color: #2A2A2A;
  font-size: 1rem;
  margin: 0 0.3rem;
}
header .menu p a {
  text-decoration: none;
  color: #2A2A2A;
  background: transparent;
  box-sizing: border-box;
  padding: 0.6rem 1rem;
  border: 1px solid #2A2A2A;
  border-radius: 3px;
  transition: all 0.5s;
}
header .menu p #registrate {
  color: #fff;
  background: #771C20;
  border: 1px solid #771C20;
}
header .menu p a:hover {
  background: #EFEFEF;
}
header .menu #cart {
  font-size: 1.2rem;
  margin-right: 1rem;
  cursor: pointer;
}

.header_panel {
  height: 8vh;
}
.header_panel .content_logo_search .logo a img {
  width: 60px;
}
.header_panel .content_logo_search .logo a h1 {
  font-size: 0.9rem;
}

#card_curso {
  text-decoration: none;
  color: #111;
  cursor: pointer;
}

.btn-theme-primary {
  text-decoration: none;
  color: #2A2A2A;
  background: transparent;
  box-sizing: border-box;
  padding: 0.6rem 1rem;
  border: 1px solid #2A2A2A;
  border-radius: 3px;
  transition: all 0.5s;
  display: inline-block;
}

.btn-theme-primary:hover {
  background: #EFEFEF;
}

.btn-theme-secondary {
  text-decoration: none;
  color: #fff;
  background: #771C20;
  box-sizing: border-box;
  padding: 0.6rem 1rem;
  border: 1px solid #771C20;
  border-radius: 3px;
  transition: all 0.5s;
}

.text-limit-card-curso {
  height: 81px;
  overflow: hidden;
}

.font-1rem {
  font-size: 1rem;
}

footer {
  width: 100%;
  margin-top: 4rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #F8F8F8;
  padding-top: 3rem;
}
footer .logo {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
}
footer .logo img {
  width: 120px;
  max-width: 120px;
  height: 120px;
}
footer .info_footer {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  margin-top: 2rem;
  padding-bottom: 3rem;
}
footer .info_footer .info_box {
  color: #000;
}
footer .info_footer .info_box h3 {
  font-size: 1.3rem;
  line-height: 1.6rem;
  font-weight: 600;
  text-align: center;
}
footer .info_footer .info_box p {
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.4rem;
  text-align: center;
}
footer .redes {
  border-top: 1px solid #E8E8E8;
  width: 100%;
  max-width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 3rem 0;
}
footer .redes a {
  font-size: 1.5rem;
  text-decoration: none;
  color: #000;
  margin: 0 2rem;
}
footer .copy {
  margin-bottom: 2rem;
}
footer .copy p {
  text-align: center;
  font-size: 1rem;
  font-weight: 500;
}

#btnwpp {
  text-decoration: none;
  position: fixed;
  z-index: 99999999999;
  bottom: 1.5rem;
  right: 1.5rem;
}
#btnwpp img {
  width: 60px;
  height: auto;
  cursor: pointer;
}
#btnwpp img:hover {
  transition: 0.7s;
  width: 65px;
}

/*# sourceMappingURL=general.css.map */
