/* margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: 'Arial', sans serif; */
/* ; */

/* contenedor completo */
/* .navbar{
	position: sticky;
	top: 0;
	left: 0;
	width: 100%;
	background: #f5f5f5;
	z-index: 9;
} */
/* .nav{
	padding: 10px 10vw;
	display: flex;
	justify-content: space-between;
} */
/*Logo*/
/* .brand-logo{
	height: 50px;
	width: 120px;
} */

/* .nav-items{
	display: flex;
	align-items: center;
} */

/* .search{
	width: 500px;
	display: flex;
} */
/* caja de busqueda */
/* .search-box{
	width: 80%;
	height: 40px;
	padding: 10px;
	border-top-left-radius: 10px; 
	border-bottom-left-radius: 10px;
	border: 1px solid #d1d1d1;
	background: none;
	color: #000;
	outline: none;
} */

/* boton de busqueda */
/* .search-btn{
	width: 20%;
	height: 40px;
	padding: 10px 20px;
	border: none;
	outline: none; 
	cursor: pointer;
	background: #383838;
	color: #fff;
	text-transform: capitalize;
	font-size: 15px;
	border-top-right-radius: 10px;
	border-bottom-right-radius: 10px;
} */

.search-box::placeholder {
  color: #a9a9a9;
}

/* .nav-items a{
	margin-left: 20px;
	position: relative;
} */
/* iconos  */
/* .nav-items a img{
	width: 30px;
	cursor: pointer;
} */

/* links de accesorios, niños, hombres etc */
/* .links-container{
	width: 100%;
	display: flex;
	padding: 10px 10vw;
	justify-content: center;
	list-style: none;
	border-top: 1px solid #d1d1d1;   
} */

/* modificacion de todos links juntos */

/* .link{
	text-transform: capitalize;
	padding: 0 10px;
	margin: 0 5px;
	text-decoration: none;
	color: #383838;
	opacity: 0.5;
	transition: .5s;
} */

.link:hover {
  opacity: 1;
}

.login-logout-popup {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  padding: 10px;
  background: #fff;
  border-radius: 10px;
  top: 40px;
  width: 200px;
  transition: 0.5s;
  border: 2px solid #f5f5f5;
}

.login-logout-popup::after {
  content: "";
  position: absolute;
  top: -7.5px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 15px;
  height: 15px;
  background: #fff;
  border-radius: 5px;
}

.account-info {
  font-size: 20px;
  text-transform: capitalize;
}

#user-btn {
  padding: 10px;
  background: #383838;
  color: #fff;
  border: none;
  outline: none;
  width: 100%;
  border-radius: 5px;
  margin-top: 20px;
  text-transform: capitalize;
  cursor: pointer;
}

.hide {
  opacity: 0;
  pointer-events: none;
}

/* Final del nav */

.hero-section {
  width: 100%;
  height: calc(100vh - 120px);
  background-image: url("imagenes/header.png");
  background-size: cover;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-section .logo {
  height: 150px;
  display: block;
  margin: auto;
}

.hero-section .sub-heading {
  margin-top: 10px;
  text-align: center;
  color: #fff;
  text-transform: capitalize;
  font-size: 35px;
  font-weight: 300;
  /* user-select: none; */
}

.product {
  position: relative;
  overflow: hidden;
  padding: 20px 0;
}

.product-category {
  padding: 0 10vw;
  font-size: 30px;
  font-weight: 500;
  margin-bottom: 40px;
  text-transform: capitalize;
}

.product-container {
  padding: 0 10vw;
  display: flex;
  overflow-x: auto;
  overflow-y: none;
  scroll-behavior: smooth;
}

.product-container::-webkit-scrollbar {
  display: none;
}

.product-card {
  flex: 0 0 auto;
  width: 250px;
  height: 450px;
  margin-right: 40px;
}

.product-image {
  position: relative;
  width: 100%;
  height: 350px;
  overflow: hidden;
}

.product-thumb {
  width: 100%;
  height: 350px;
  object-fit: cover;
}

.discount-tag {
  position: absolute;
  background: #fff;
  padding: 5px;
  border-radius: 5px;
  color: #ff7d7d;
  right: 10px;
  top: 10px;
  text-transform: capitalize;
}

.card-btn {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  padding: 7px;
  width: 90%;
  text-transform: capitalize;
  border: none;
  outline: none;
  background: #fff;
  border-radius: 5px;
  transition: 0.5s;
  cursor: pointer;
  opacity: 1;
}

/* .product-card:hover .card-btn {
  opacity: 1;
} */

/* .card-btn:hover {
  background: #efefef;
} */

.product-info {
  width: 100%;
  height: 100px;
  padding-top: 10px;
}

.product-brand {
  text-transform: uppercase;
}

.product-short-des {
  width: 100%;
  height: 20px;
  line-height: 20px;
  overflow: hidden;
  opacity: 0.5;
  text-transform: capitalize;
  margin: 5px 0;
  font-size: 14px;
}

.price {
  font-weight: 900;
  font-size: 20px;
}

.actual-price {
  margin-left: 20px;
  opacity: 0.5;
  text-decoration: line-through;
}

.pre-btn,
.nxt-btn {
  border: none;
  width: 10vw;
  height: 100%;
  position: absolute;
  top: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, #fff 100%);
  cursor: pointer;
  z-index: 8;
}

.pre-btn {
  left: 0;
  transform: rotate(180deg);
}

.nxt-btn {
  right: 0;
}

.pre-btn img,
.nxt-btn img {
  opacity: 0.2;
}

.pre-btn:hover img,
.nxt-btn:hover img {
  opacity: 1;
}

.collection-container {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 10px;
}

.collection {
  position: relative;
}

.collection img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.collection p {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #fff;
  font-size: 50px;
  text-transform: capitalize;
}

.collection:nth-child(3) {
  grid-column: span 2;
  margin-bottom: 10px;
}

footer {
  position: relative;
  width: 100%;
  padding: 40px 10vw;
  padding-bottom: 80px;
  background: #383838;
}

.footer-content {
  display: flex;
  width: 100%;
  justify-content: space-between;
}

.footer-content .logo {
  height: 160px;
}

.footer-ul-container {
  width: 45%;
  display: flex;
  justify-content: space-between;
}

.category {
  width: 200px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 10px;
  list-style: none;
}

.category-title {
  grid-column: span 2;
  text-transform: capitalize;
  color: #fff;
  font-size: 20px;
}

.category .footer-link {
  text-decoration: none;
  text-transform: capitalize;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 20px;
}

.footer-link:hover {
  color: #fff;
}

.foot-title,
.info {
  color: rgba(255, 255, 255, 0.75);
  margin: 20px 0;
  text-transform: capitalize;
}

.footer-title {
  margin-top: 80px;
  color: #fff;
}

.footer-social-container {
  margin-top: 40px;
  display: flex;
  justify-content: space-between;
}

.social-link {
  color: #fff;
  margin-left: 20px;
  text-transform: capitalize;
}

.social-link:nth-child(1) {
  margin-left: 0;
}

.footer-credit {
  width: 100%;
  padding: 10px;
  position: absolute;
  left: 0;
  bottom: 0;
  text-align: center;
  color: #fff;
  background: rgba(0, 0, 0, 0.2);
}

/* estilos de produc.html*/

.product-details {
  width: 100%;
  padding: 60px 10vw;
  display: flex;
  justify-content: space-between;
}

.image-slider {
  width: 500px;
  height: 500px;
  position: relative;
  background-image: url(imagenes/product_image_1.png);
  background-size: cover;
}

.product-images {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  background: #fff;
  border-radius: 5px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  height: 100px;
  grid-gap: 10px;
  padding: 10px;
}

.product-images img {
  width: 100%;
  height: 80px;
  object-fit: cover;
  cursor: pointer;
}

.product-images img.active {
  opacity: 0.5;
}

.details {
  width: 50%;
}

.details .product-brand {
  text-transform: capitalize;
  font-size: 30px;
}

.details .product-short-des {
  font-size: 25px;
  line-height: 30px;
  height: auto;
  margin: 15px 0 30px;
}

.product-price {
  font-weight: 700;
  font-size: 30px;
}

.product-actual-price {
  font-size: 30px;
  opacity: 0.5;
  text-decoration: line-through;
  margin: 0 20px;
  font-weight: 300;
}

.product-discount {
  color: #ff7d7d;
  font-size: 20px;
}

.product-sub-heading {
  font-size: 30px;
  text-transform: uppercase;
  margin: 60px 0 10px;
  font-size: 300;
  position: relative;
  left: 55px;
}

.input {
  position: relative;
  left: 20px;
}

.size-radio-btn {
  display: inline-block;
  width: 80px;
  height: 80px;
  text-align: center;
  font-size: 18px;
  border: 1px solid #383838;
  border-radius: 50%;
  margin: 10px;
  margin-left: 0;
  line-height: 80px;
  text-transform: uppercase;
  color: #383838;
  cursor: pointer;
}

.size-radio-btn.check {
  background: #383838;
  color: #fff;
}

.btn {
  width: 48%;
  padding: 20px;
  border-radius: 10px;
  background: none;
  border: 1px solid #383838;
  color: #383838;
  font-size: 14px;
  cursor: pointer;
  margin: 20px 0;
  text-transform: capitalize;
}

.cart-btn {
  margin-right: 2%;
  background: #383838;
  color: #fff;
}

.details-des {
  padding: 0 10vw;
  text-transform: capitalize;
}

.heading {
  font-size: 30px;
  margin-bottom: 30px;
}

.des {
  color: #383838;
  line-height: 25px;
}

.caja {
  height: 40px;
  position: relative;
  top: 20px;
}

.containerman {
  width: 100%;
  overflow: hidden;
}

.textoman {
  margin-top: 50px;
  font-family: Arial, sans-serif;
  font-size: 17px;
  line-height: 1.7;
  color: #333;
  margin-bottom: 10px;
  text-align: center;
  margin-right: 50px;
  overflow: hidden;
  margin-left: 50px;
}

.imagen_meninges2 {
  width: 100px;
  height: 100px;
  margin: 30px 0px;
}

@media screen and (max-width: 768px) {
  .card2 {
    margin-left: 800px;
  }
}

.span {
  font-size: 20px;
  text-align: center;
}

.parrafo2 {
  margin-right: 30px;
  margin-left: 30px;
}

/* .malo{
   width: none;
} */

.resumen {
  margin-left: 30px;
  text-align: justify;
  justify-content: center;
  margin-right: 30px;
}

.card {
  /* float: right; */
  width: 300px;
  height: 10px;
  position: relative;
  top: -20px;
  margin-top: 30px;
  /* margin-left: 50px; */
  /* margin-right: 30px; */
}

.card2 {
  float: left;
  width: 400px;
  height: 400px;
  position: relative;
  top: -20px;
  margin-top: 30px;
  margin-left: 50px;
  margin-right: 30px;
}

#duramadre {
  cursor: pointer;
}

a:visited {
  color: blueviolet;
}

.flex {
  /* user-select: none; */
  padding: 10px;
  /* Añade un relleno alrededor de cada elemento */
  margin-bottom: 10px;
  line-height: 1.5;
  border-radius: 5px;
  /* Añade bordes redondeados */
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  /* Agrega una sombra suave */
  font-family: Arial, sans-serif;
  /* Establece una fuente legible */
  font-size: 16px;
  /* Tamaño de fuente adecuado */
  color: #333;
  display: flex;
  flex-direction: column;
}

.noflex {
  /* user-select: none; */
  padding: 10px;
  /* Añade un relleno alrededor de cada elemento */
  margin-bottom: 10px;
  line-height: 1.5;
  border-radius: 5px;
  /* Añade bordes redondeados */
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  /* Agrega una sombra suave */
  font-family: Arial, sans-serif;
  /* Establece una fuente legible */
  font-size: 16px;
  /* Tamaño de fuente adecuado */
  list-style: none;
  flex-direction: column;
  color: #333;
}

li:hover {
  background-color: #e0e0e0;
}

.containerman2 {
  float: right;
}

@media screen and (max-width: 768px) {
  .textounico>li {
    margin-left: 30px;
  }
}

@media screen and (max-width: 768px) {
  li {
    margin-right: 30px;
  }
}

@media screen and (max-width: 768px) {
  .containerman2 {
    width: 113%;
    /* width: 190px; */
    overflow: hidden;
    /* margin-left: 100px; */
    margin-right: auto;
  }
}

@media screen and (max-width: 768px) {
  .containerman4meninges {
    width: 120%;
    /* width: 190px; */
    overflow: hidden;
    /* margin-left: 50px; */
    height: 400px;
    margin-bottom: 30px;
    margin-left: -75px;
    margin-top: 30px;
  }
}

@media screen and (max-width: 768px) {
  .containerman4telencefalo {
    width: 100%;
    /* width: 190px; */
    overflow: hidden;
    margin-left: auto;
    margin-right: auto;
    /* height: 400px; */
    margin-bottom: 30px;
    /* margin-left: -75px; */
    margin-top: 30px;
  }
}

@media screen and (max-width: 768px) {
  .containerman3 {
    width: 100%;
    overflow: hidden;
    margin-left: auto;
    margin-right: auto;
  }
}

 @media screen and (max-width: 991px){
  #badge{
    left: -50px;
  }
 }

#telencefalo {
  cursor: pointer;
}

/* background-color: red; */
/* padding-top: 50px; */

/* #nav2{
   position: fixed;
   background-color: red;
   color: blue;
} */

.brand a {
  color: #fff;
  font-size: 24px;
  text-decoration: none;
}

.navbar-hidden {
  transform: translateY(-100%);
  transition: transform 0.5s;
}

.navbar-visible {
  transform: translateY(0);
  transition: transform 0.5s;
}

.navbar-text-center {
  justify-content: center;
  text-align: center;
}

.nav-item:hover {
  background-color: #9185e7;
  border-radius: 15px;
}

.nav-link:hover {
  color: white;
  float: ri;
}

#pregunta1 {
  border: 3px solid black;
  margin-bottom: 12px;
}

#pregunta2 {
  border: 3px solid black;
  margin-bottom: 12px;
}

#pregunta3 {
  border: 3px solid black;
  margin-bottom: 12px;

}

#pregunta4 {
  border: 3px solid black;
  margin-bottom: 12px;

}

#pregunta5 {
  border: 3px solid black;
  margin-bottom: 12px;

}

#pregunta6 {
  border: 3px solid black;
  margin-bottom: 12px;

}

#pregunta7 {
  border: 3px solid black;
  margin-bottom: 12px;

}

#pregunta8 {
  border: 3px solid black;
  margin-bottom: 12px;

}

#pregunta9 {
  border: 3px solid black;
  margin-bottom: 12px;

}

#pregunta10 {
  border: 3px solid black;
  margin-bottom: 12px;

}

.btn-comentar {
  width: 230px;
  height: 50px;
  border-radius: 15px;
  border: none;
  margin-bottom: 11px;
  background-color: wheat;
  /* color: white; */
  transition: all .05s;
  box-shadow: 0px 8px black;
}

.btn-comentar:active {
  transform: translateY(5px);
  box-shadow: 0px 0px;
}

.input-año {
  margin-top: 15px;
  margin-bottom: 15px;
}

#docente:checked~input.form-check-input {
  display: flex;
}

img {
  border-radius: 15px;
}

#card-p1 {
  display: grid;
  justify-items: center;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  /* background-color: #9185e7; */
}

@media screen and (max-width: 400px){
  #titulo-nav{
    font-size: 5px;
    color: red;
  }
 }

 #papapa{
  color: red !important
 }