.itemCont {
  display: grid;
  grid-template-columns: 40% 1fr;
  gap: 2rem;
  margin-top: 4rem;
}

.container {
  position: relative;
  display: block;
  /* max-height: 480px; */
}

.imgcontainer {
  overflow: hidden;
  position: relative;
  /* height: tent; */
  padding-top: 100%;
  width: 100%;
  justify-self: start;
  box-shadow: 0 0 28px #00000066;
}

.imgcontainer img {
  position: absolute;
  width: 100%;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  /* max-width: unset; */
  /* max-height: 100%; */
  /* width: auto; */
  /* left: 50%; */
  /* top: 50%; */
  /* transform: translate(-50%, -50%); */
}

.itemInfo {
  width: 100%;
  background: var(--clr-card);
  border-radius: 12px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  gap: 1rem;
}

.itemInfo h1 {
  font-family: var(--ff-alttitle);
}

.price {
  /* font-size: 2.4rem; */
  font-size: clamp(1.8rem, 2vw, 2.4rem);
  font-weight: 500;
}

.itemSection {
  padding-bottom: 2rem;
}

.itemSection .button {
  position: relative;
}

.mp::after {
  content: '20% de recargo';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  text-align: center;
  transform: translate(0, 1.4rem);
  font-size: 1rem;
  font-weight: 400;
  text-transform: lowercase;
  font-style: italic;
  color: lightgray;
}

.descripcion {
  border: 2px solid #303030;
  padding: 2rem;
  border-radius: 12px;
}

#turnos {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

#turnos div {
  background: var(--clr-card);
  padding: 2rem;
}

.descripcion a {
  font-weight: 600;
  text-decoration: underline;
  transition: color 150ms;
}

.descripcion a:hover, .descripcion a:focus {
  color: var(--clr-tit);
}

@media (max-width: 1080px) {
  #buttons {
    flex-direction: column;
  }
}
@media (max-width: 768px) {
  #turnos {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 640px) {
  .itemCont {
    grid-template-columns: none;
    grid-template-rows:  1fr;
  }
  .imgcontainer img {
    max-width: 100%;
    max-height: unset;
  }
}

#xpander {
  background: var(--clr-pridark);
  padding: 1rem 2rem;
  /* margin-top: 1rem; */
  position: relative;
  font-size: clamp(1.2rem, 2.4vw, 1.8rem);
  font-family: var(--ff-title);
  font-weight: 600;
  color: white;
  width: 100%;
  text-align: left;
  border: none;
  transition: 150ms ease-out;
  z-index: 1;
}

#xpander::after {
  content: '\002B';
  font-weight: 600;
  position: absolute;
  top: 50%;
  right: 2rem;
  transform: translate(0, -50%);
}

#xpander:hover {
  background: var(--clr-acc);
}

#desplegable {
  background: var(--clr-alt);
  padding: 0;
  transition: max-height 450ms;
  overflow: hidden;
}

.despCont {
  padding: 1.8rem;
}

#etica #desplegable p {
  padding: 2rem;
  border-radius: var(--brad);
}

#etica #desplegable p:nth-of-type(even) {
  background: var(--clr-card);
}

#xpander.showen::after {
  content: '\2212' !important;
}

#xpander.showen {
  background: var(--clr-acc);
}

