.cuerpo{
    background-color: rgba(255, 255, 255, 0.826);
    margin: 0 auto;
   
}

b{
    font-weight: 400;
    font-family:monospace;
    font-size: 1rem;
}

.cuerpo img{
    width: 200px;
}


.cuerpo p{
    padding: 0 1rem;
}

.cuerpo h3, .cuerpo ul {
    padding-left: 1rem;
}

.cuerpo ul i{
    color: red;
    margin-left: 2rem;
    margin-right: 1rem;
}
.cuerpo .detalle{
    margin: 0 auto;
    background-color: aquamarine;
    max-width: 90%;
    margin-bottom: 1rem;
    padding: 1rem;
}


@keyframes terremoto {
    0%{
        transform: translateX(2px);
        -webkit-transform: translateX(2px);
        -moz-transform: translateX(2px);
        -ms-transform: translateX(2px);
        -o-transform: translateX(2px);
}
100%{
    transform: translateX(0px);
    -webkit-transform: translateX(0px);
    -moz-transform: translateX(0px);
    -ms-transform: translateX(0px);
    -o-transform: translateX(0px);
}
}

       .shake {
  -webkit-animation-name: shake;
  animation-name: shake;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  animation-iteration-count: infinite;
  }
  @-webkit-keyframes shake {
  0%, 100% {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  }
  10%, 30%, 50%, 70%, 90% {
  transform: translate3d(-7px, 0, 0);
  -moz-transform: translate3d(-4px, 0, 0);
  -ms-transform: translate3d(-4px, 0, 0);
  -o-transform: translate3d(-4px, 0, 0);
  -webkit-transform: translate3d(-4px, 0, 0);
}
  20%, 40%, 60%, 80% {
  -webkit-transform: translate3d(4, 0, 0);
  transform: translate3d(4, 0, 0);
  -moz-transform: translate3d(4, 0, 0);
  -ms-transform: translate3d(4, 0, 0);
  -o-transform: translate3d(4, 0, 0);
}
   }



   .desplazar {
  -webkit-animation-name:desplazar;
  animation-name: desplazar;
  -webkit-animation-duration: 5s;
  animation-duration: 5s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  animation-iteration-count: infinite;
  }
  @keyframes desplazar {
  0%,20%,40%,60%,80%,100%{
    
    opacity: 0;
}

10%,30%,50%,70%,90%{
  opacity: 1;
}
  } 





  
nav ul li{
  cursor: pointer;
  text-decoration: none;
  padding-right:1rem ;
}



.pagina {
    margin: 0 auto;
    width: 99%;
    height: auto;
    min-height: 100%;
  display: none;
  position:absolute;
  top: 7rem;
  right: 0.3rem;
 
  
  background-color: white;
  padding: 0 1rem;
}
.pagina.activa {
  display:flex;
  flex-direction: column;
  
}
nav .flex{

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  list-style: none;
}


.pagina p i{
    font-size: 2rem;
    color: rgb(223, 223, 8);
    padding: 1rem;
}
.caja{
  background-color: var(--agua);
  padding:0.4rem 1rem;
  text-align: justify;
}
.pagina h5{
  font-size: 1.3rem;
  color:var(--orange);
}
.fabricantes-img{
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: rgba(0, 0, 0, 0.941);
  padding: 1rem 0;
}
.fabricantes-img a{
 display: flex;
 flex-direction: column;
 align-items: center;
 justify-content: center;
}

.fabricantes-img a img{
  max-height: 70px;
}




.inta-lista .menu-tecnico{
  background-color: var(--agua);
  width: 300px;
  max-width: 90%;
  padding: 1rem;
}
.inta-lista .menu-tecnico h6{
  color: red;
}
.pagina .fa-solid{
  margin-right: 1rem;
  color: red;
}

.inta-lista .logo-tecnico{
 width: 50%;
 height:300px;
 
 text-align: center;
}
.inta-lista .logo-tecnico img{
  max-width: 90%;
  max-height: 90%;
}
.red{
  color: red;
}

#devoluciones p{
  padding: 1rem;
  background-color: rgba(127, 255, 212, 0.452);
}

#devoluciones .img{
  text-align: center;
}

#devoluciones .img img{
  width: 600px;
  max-width: 50%;
  text-align: center;
}
.flex-row{
  display: flex;
  gap: 1rem;
  flex-direction: row;
  justify-content:flex-start;
  align-items: center;
}

.Grid-row{
  display: grid;
  grid-template-columns: 500px 1.5fr;
  grid-template-rows: 1fr;
  grid-template-areas: "caution texto";
  justify-content: center;
  align-items: center;
}
.caution{
  grid-area: caution;
}

.grid-texto{
  grid-area: texto;
  font-size: 1.3rem;
}
.grid-texto span{
  font-size: 3rem;
  font-weight: 800;
  padding: 0rem 1rem;
}

#garantia img{
  width: 400px;
  max-width: 30%;
  }
#garantia .img{
  font-size: 1.2rem;
  background-color: aquamarine;
  padding: 0.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  
}
#garantia .img p{
  font-family: var(--monse);
  font-weight: 600;
}

@media (max-width:800px) {
  .main{
    display: none;
  }
  .Grid-row{
  grid-template-columns: 1fr;
  grid-template-rows: 300px 1fr;
  grid-template-areas: "caution"
                            "texto";
  justify-content: center;
  align-items: center;
}
}