main {
  padding: 1em;
}
main h2,
h3,
h4 {
  text-align: center;
}
main picture {
  width: 100%;
}
.info {
  width: 80%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: auto;
}
.info h2,
h3,
h4,
h5 {
  text-wrap: balance;
}
.info p{
    color: initial;
    text-wrap: balance;
    font-size: 1.4rem;
    margin: 0;
    margin-top:1px;
    padding: 0;
  
}

.info h5 {
  font-size: 1.1rem;
  border: 2px ridge var(--colorPrimario);
  padding: 1em;
  margin-top: 4em;
}
.btn-controll {
   
  display: flex;
  width: 100%;
  justify-content: center;
  padding: 1em;
  gap: 1em;
}
.road {
  padding: 1em;
  margin: auto;
  margin-top: 1em;
  width: 80%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.road ul {
  width: 100%;
  border: 1px solid rgb(105, 98, 98);
  padding: 1;
  display: flex;
}
.road ul li {
  font-size: 0.5rem;
  width: 100%;
  transition: 0.35s all ease-in;
  padding: 1em;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  background-color: #fff;
  display: none;
}
.road ul .visibled {
  display: flex;
}
.road p {
  color: #222;
}
.img-photo {
  width: 80%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 1fr);
  grid-column-gap: 0;
  grid-row-gap: 0;
  justify-items: center;
}
.img-photo img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  filter: contrast(100%);
  border: 1px solid rgba(255, 0, 0, 0.155);
  padding: 1em;
}
.road ul li h2 {
  font-size: 2rem;
  text-transform: uppercase;
  border: 1px solid #afafaf;
  padding: 0.7em;
}
.road ul li h3 {
  padding: 1em;
  background-color: var(--colorPrimario);
  color: #eee;
  font-size: 1rem;
}
.road li button {
  margin-top: 2em;
  height: auto;
  padding: 1em;
  width: auto;
  border-radius: 0;
}
.road li button:hover {
  background-color: red;
}
.img-shared {
  width: 60%;
  position: relative;
  padding: 1em;
}
.img-shared img {
  width: 100%;
  object-fit: scale-down;
}
.img-shared #arroIcon {
  width: 10%;
  position: absolute;
  top: 50%;
  left: 30%;
  animation-name: shared;
  animation-iteration-count: infinite;
  animation-timing-function: cubic-bezier(0.4, 0, 0.73, 1.04);
  animation-duration: 2.5s;
}
@keyframes shared {
  0% {
    left: 30%;
  }
  50% {
    left: 50%;
    transform: rotate(-33deg);
  }
  100% {
    left: 30%;
  }
}
.img-wait {
  width: 30%;
  padding: 1em;
}
.img-wait img {
  width: 100%;
  object-fit: scale-down;
}
#btn-previus {
  opacity: 0;
}
.road button {
  height: 0;
  padding: 1em;
  width: auto;
  justify-content: center;
}
.sel .btn-wp {
  width: 100%;
  margin-top: 1em;
  margin-bottom: 1em;
  display: flex;
  align-items: center;
  justify-content: center;
  a{
    background-color: var(--WhatsAap);
    padding:.9rem 2.5rem ;
    display: flex;
    color: #eee;
    gap: 5px;
    text-align: center;
    justify-content: center;
    text-decoration: none;
    align-items: center;
    border-radius: 20px;

  }
}
@media only screen and (max-width: 750px) {
  .info {
    width: 100%;
  }
  .info p {
    font-size: 0.9rem;
    text-align: start;
    margin-top: 1em;
  }
  .info h5 {
    font-size: 1rem;
    text-align: center;
  }
  .road {
    width: 100%;
    justify-content: flex-start;
    padding: 0;
    height: auto;
  }
  .road ul {
    padding: 0;
  }
  .road ul li h2 {
    margin: 0;
  }
  .road ul li h3 {
    font-size: 0.9rem;
  }
  .img-photo {
    grid-template-columns: repeat(2, 1fr);
    width: 100%;
  }
  .img-shared #arroIcon {
    width: 30%;
  }
  @keyframes shared {
    0% {
      transform: translateY(10px);
    }
    50% {
      transform: translateY(100px);
    }
    100% {
      transform: translateY(10px);
    }
  }
  .img-wait {
    width: 100%;
  }
  .sel .btn-wp a {
    width: 100%;
    content: none;
    background-color: var(--WhatsAap);
    padding: 0.5em;
  }
  .road button {
    padding: 0.9em;
    font-size: 0.8rem;
  }
}
