
.whasatapp {
  position: fixed;
  top: 90%;
  left: 75%;
  z-index: 1;
}
li{
  list-style:none ;
  text-decoration: none;
}
a{
  text-decoration: none;
}
.blog_container{
 display: flex;
 flex-direction: column;
 align-items: center;
}
.blog_texto{
  width: 90%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.blog_p{
  width: 100%;
  text-align: center;
}
.nosotros-seo{
  text-align: center;
  width: 80%;
  margin: 0 auto;
}
.nosotros-texto {
  text-align: center;
}
.nosotros-img{
  width: 90%;
}

nav{
    margin-top: 20PX
}
.nav-ul{
    display: flex;
    flex-direction: column;
    /* background-color: aqua; */

    width: 50%;
    gap: 0 5px;
    font-size: 16px;
    text-transform: uppercase;
}
.nav-li{
    list-style: none;
    margin: 0;
    padding: 0 14px;
}
.nav-a{
    text-transform: uppercase;
    text-decoration: none;
    margin: 0;
    padding: 0;
    color: rgb(26, 24, 24);
}
.imagenes-3{
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
}
.container{
  margin: 0 auto;
  width: 80%;
  height: auto;
  /* background-color: rgb(248, 250, 248); */
  
}
.container p{
  color: rgb(8, 8, 8);
  text-align: center;
  text-align: justify;  

}
.img-card{
    width: 100%;
    height: 400px;
    padding-bottom: 30px;
}
/* FOOTER*/
.footer{
  margin: 0 auto;
  text-align: center;
  width:90%;
}
.footer-p{
  color:black ;
}
/* CARD*/
.card{
    padding: 4px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    height: 500px;
    border-radius: 15px;
    margin-bottom: 5px;
    background-color: #f1f1f1;
}
.section-card{
  width: 90%;
  margin: 0 auto;
}
/* EFECTO HOVER */
/* .card:hover {
  transform: scale(1.05);
} */

/* IMAGEN */
.card img {   
  padding: 1px;
  width: 85%;
  height: 350px;
  object-fit: cover;
  transition: transform 0.9s ease;
}

/* ZOOM SOLO IMAGEN */
.card img:hover  {
  transform: scale(1.1);
}

/* CONTENIDO */
.card-content {
  padding-top: 8px ;
  text-align: center;
}

/* TITULO */
.card h3 {
  margin: 0;
  font-size: 18px;
}

/* REFERENCIA */
.ref {
  font-size: 13px;
  color: #777;
  margin: 0px 0;
}

/* PRECIO */
.price {
  font-size: 20px;
  color: #e63946;
  font-weight: bold;
}

/* COLOR / ETIQUETA */
.color {
  display: inline-block;
  margin-top: 0x;
  padding: 0px 10px;
  background: #000;
  color: #fff;
  border-radius: 20px;
  font-size: 12px;
}
/* MEDIA  QUERY*/
@media(min-width: 510px){
  .whasatapp {
  position: fixed;
  top: 75%;
  left: 85%;

}
  .img-4{
    width: 80%;    
  }
  .imagenes-3{
    align-items: center;
  }
}
@media (min-width: 768px) {
.whasatapp {
  position: fixed;
  top: 85%;
  left: 90%;

}
nav{
  display: flex;
  justify-content: space-around;
  align-items: center;
}
.nav-ul{
    flex-direction: row;
  }
  .imagenes-3{
   display: flex;
   flex-direction: row;
   justify-content: space-around;

}
/*BLOG*/ 
.blog_container{
 display: flex;
 flex-direction: column;
 align-items: center;
}
.blog_texto{
  width: 60%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.blog_p{
  width: 30%;
  text-align: center;
}

.nosotros-seo .nosotros-texto{
  width: 40%;
  text-align: center;
  margin: 0 auto;
}
.nosotros-img{
  width: 30%;
  margin-bottom: 20px;
}
.nosotros-texto{
  text-align: justify;
  padding-bottom: 17px;
}
  .section-card{
   width: 90%;
   display: grid;
   place-items: center; /* centra horizontal y vertical */ 
   gap: 10px;

  }
  .img-4{
    width: 30%;
  }

  .article-container {
    width: 60%;
    display: grid;
    grid-template-columns: 1fr 1fr ;
    gap:30px;
  
  }
  /* IMAGEN */
.card img {   
  padding: 1px;
  width: 50%;
  height: 450px;
  object-fit: cover;
  transition: transform 0.9s ease;
}

} 