@import url("https://fonts.googleapis.com/css2?family=Merriweather:ital,wght@0,300;0,400;0,700;0,900;1,300;1,400;1,700;1,900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
/**variables principales**/
:root {
  --primary-color:#1b4573;
  --second-color:#1c8681;
  --tercer-color:#2fa3de;
  --text-dark: #171717;
  --text-light: #737373;
  --extra-light: #f4f6f5;
  --white: #ffffff;
  --max-width: 1200px;
  --header-font: "Merriweather", serif;
}
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}
.section__container {
  max-width: var(--max-width);
  margin: auto;
  padding: 5rem 1rem;
}
.section__header {
  margin-bottom: 1rem;
  font-size: 2.5rem;
  font-weight: 600;
  font-family: var(--header-font);
  color: var(--primary-color);
}
.section__description {
  font-size: 1.1rem;
  color: var(--text-light);
}
img {
  display: flex;
  width: 100%;
}
a {
  text-decoration: none;
  transition: 0.3s;
  color:var(--primary-color);
}
ul {
  list-style: none;
}
html,
body {
  scroll-behavior: smooth;
}
body {
  font-family: "Poppins", sans-serif;
}
nav {
  position: fixed;
  isolation: isolate;
  width: 100%;
  max-width: var(--max-width);
  margin-inline: auto;
  z-index: 9;
}
/****style de navbar******/
.nav__header {
  padding: 1rem;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color:  #fff;
}
.nav__logo .logo img {
  height:9.5rem;
}
.nav__menu__btn {
  font-size: 1.5rem;
  color: var(--primary-color);
  cursor: pointer;
}
.nav__links {
  position: absolute;
  top: 65px;
  left: 0;
  width: 100%;
  padding: 4rem 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 2.5rem;
  background-color: #271e5b;
  transition: 0.5s;
  z-index: -1;
  transform: translateY(-100%);
}
.nav__links.open {
  transform: translateY(0);
}
.nav__links a {
  font-weight: 500;
  color: var(--white);
  font-size: 1.2rem; 
}
.nav__search.open input {
    width: 100%;
    max-width: 15rem;
}
.nav__search span {
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--text-dark);
    cursor: pointer;
}
/**fin del estilo del navbar**/

/**estilos del header**/
.header__container {
  display: grid;
  overflow: hidden;
}
.header__image {
  grid-area: 1/1/2/2;
}
.header__image img {
  max-width: 900px;
  margin-left: auto;
}
.header__content {
  grid-area: 1/1/2/2;
  display: flex;
  align-items: center;
}
.header__content > div {
  max-width: 500px;
  padding: 4rem 1rem;
  background-color: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(10px);
}
.header__content h1 {
  margin-bottom: 1rem;
  font-size: 4rem;
  font-weight: 600;
  font-family: var(--header-font);
  color: var(--primary-color);
}
.header__content p {
  font-size: 1.2rem;
  color: var(--text-light);
  text-align: justify;
}
/**fin del estilo del header**/

/**estilo del about**/
.about__header {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.about__header .section__description {
  max-width: 850px;
}
.about__btn i {
  margin-right: 0.5em; 
}
.about__content {
  margin-top: 2rem;
  display: grid;
  gap: 2rem;
}
.about__grid {
  display: grid;
  gap: 2rem;
}
.about__image {
  overflow: hidden;
}
.about__card h3 {
  margin-bottom: 0.5rem;
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--primary-color);
}
.about__card h4 {
  margin-bottom: 0.5rem;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--primary-color);
}
.about__card p {
  color: var(--text-light);
  text-align: justify;
}
/**fin de estilos about**/

/**estilo de servicios-productos**/
.container{
   max-width: 1200px;
   margin:0 auto;
   padding:3rem 2rem;
}
.container .title{
    margin-bottom: 0.5rem;
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--primary-color);
  text-align: center;
}
.container .products-container {
    display: grid;
  grid-template-columns: repeat(3, 1fr); 
  gap: 2rem;
}
.container .products-container .product{
   text-align: center;
   padding:3rem 2rem;
   background:var(--extra-light);
   box-shadow: 0 .5rem 1rem rgba(0,0,0,.1);
   outline-offset: -1.5rem;
   cursor: pointer;
   border-radius: 10px;
}
.container .products-container .product:hover {
    outline: none;
    outline-offset: 0;
    box-shadow: 0 0 10px 5px rgba(4, 4, 77, 0.5);
    transform: scale(1.05);  
}
.container .products-container .product img{
   height: 15rem;
   border-radius: 10px;
}
.container .products-container .product:hover img{
   transform: scale(.9);
}
.container .products-container .product h3{
   padding:.5rem 0;
   font-size: 1.3rem;
   color:var(--primary-color)
}
.container .products-container .product:hover h3{
   color:var(--second-color)
}
.product .price  {
    font-size: 0.8rem; 
    color: var(--primary-color); 
    text-decoration: none; 
    border-bottom: 1px solid var(--primary-color); 
    padding-bottom: 2px; 
    transition: color 0.3s ease-in-out;
    display: inline-block;
}
.product .price:hover {
    color: var(--second-color); 
    border-bottom-color: var(--second-color); 
}


.products-preview{
     position: fixed;
    top: 0;
    left: 0;
    z-index: 9999; /* Asegura que esté por encima de otros elementos */
    width: 100%;
    height: 100%;
    display: none; /* Inicialmente oculto, tu JS lo mostrará */
    background: rgba(0, 0, 0, .7); /* Fondo semi-transparente */
    align-items: center;
    justify-content: center;
    overflow-y: auto; /* Permite desplazamiento si el contenido es largo */

}
.products-preview .preview{
   display: none; 
  padding: 1.5rem;
   text-align: center;
   background:var(--extra-light);
   position: relative;
   margin:2rem;
   width: 25rem;
   margin: 1rem; 

  
    overflow-y: auto;
}
.products-preview .preview .price{

    font-size: 0.8rem; 
    color: var(--primary-color); 
    text-decoration: none; 
    border-bottom: 1px solid var(--primary-color); 
    padding-bottom: 2px; 
    transition: color 0.3s ease-in-out;
    display: inline-block;

}
.products-preview .preview.active{
   display: inline-block;
}
.products-preview .preview img{
   height: 15rem;
}
.products-preview .preview .fa-times {
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  cursor: pointer;
  color: var(--extra-light); 
  background-color: var(--primary-color); 
  border-radius: 50%;
  font-size: 2rem;
  width: 2.5rem; 
  height: 2.5rem; 
  display: flex; 
  justify-content: center; 
  align-items: center;
}
.products-preview .preview .fa-times:hover{
   transform: rotate(90deg);
}
.products-preview .preview h3{
   color:var(--primary-color);
   padding:.5rem 0;
   font-size: 1.5rem; 
}
.products-preview .preview p{
   line-height: 1.5;
   padding:1rem 0;
  font-size: 1rem;
   color:#777;
   
}
.products-preview .preview .buttons{
   display: flex;
   gap:1rem;
   flex-wrap: wrap;
   margin-top: 1rem;
}
.products-preview .preview .buttons a{
   flex:1 1 12rem;
   padding:1rem;
     font-size: 1rem;
   color:var(--primary-color);
   border:.1rem solid var(--primary-color);
}
.products-preview .preview .buttons a.buy:hover{
   background: var(--primary-color);
   color:var(--extra-light);
}
/**fin de estili de servicios-productos**/

/**inicio de estilo de  anuncio de  SECOFU**/
.blog {
  background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
    url("assets/conta2.jpg");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
.blog__container {
  padding-block: 8rem;
  display: grid;
}
.blog__content {
  text-align: center;
}
.blog__content .section__header {
  margin-bottom: 2rem;
  color: var(--white);
}
.blog__content h4 {
  margin-bottom: 1rem;
  font-size: 1.25rem;
  font-weight: 400;
  font-family: var(--header-font);
  color: var(--white);
}
.blog__content p {
  margin-bottom: 2rem;
  line-height: 1.75rem;
  color: var(--extra-light);
}
.bloger__btn {
  border: 1px solid var(--white);
  width: fit-content;
  padding: 0.75rem 1.5rem;
  outline: none;
  border: none;
  font-size: 1rem;
  color: var(--white);
  white-space: nowrap;
  background-color: var(--primary-color);
  border-radius: 5px;
  transition: 0.3s;
  cursor: pointer;
  text-align: center;
  justify-content: center;
}
.bloger__btn:hover{
  background-color:  #69838b;;
  border: 1px solid var(--white);
}
/**termina seccion del anuncio de SECOFU**/

/**Inicia estilos de testimonios**/
.container{
  position: relative;
  width: 100%;
  min-height: 450px;
}
.container .contents-wraper{
  width: 70%;
  min-height: inherit;
  margin: 30px auto;
  text-align: center;
 
}
.contents-wraper .testRow{
  width: 100%;
  min-height: inherit;
  position: relative;
  overflow: hidden;
}
.testRow .testItem{
  width: 100%;
  height: 100%;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.testRow .testItem:not(.active){
  top:0;
  left: -100%;
}
.testRow .testItem img{
  width: 190px;
  height: 190px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 5px;
  outline: 2px solid #006994;
  outline-offset: 2px;
}

.testRow .testItem h3{
  font-size: 25px;
  font-style: italic;
  padding: 7px;
  color: #1b4573;
}
.testRow .testItem h4{
  font-style: italic;
  color: #1c8681;
}
.testRow .testItem p{
  font-size: 17px;
  letter-spacing: 1px;
  line-height: 1.2;
  padding: 10px;
 
}
.contents-wraper .indicators{
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  padding: 5px;
  cursor: pointer;
}
.contents-wraper .indicators .dot{
  width: 15px;
  height: 15px;
  margin: 0px 3px;
  border: 3px solid #aaa;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.5s ease;
}
.contents-wraper .indicators .active{
  background-color: #006994;
}
@keyframes next1{
  from{
    left:0%
  }
  to{
    left:-100%
  }
}
@keyframes next2{
  from{
    left:100%
  }
  to{
    left:0%
  }
}
@keyframes prev1{
  from{
    left:0%
  }
  to{
    left:100%
  }
}
@keyframes prev2{
  from{
    left:-100%
  }
  to{
    left:0%
  }
}
/**Termina estilos de testimonios**/

/**Inicia estilos de  blog**/

.client__content {
  padding: 4rem 1rem;
  background-color: #e1e9f1;
  border-radius: 1rem;
}
.client__content .section__header {
  max-width: 590px;
  margin-inline: auto;
  text-align: center; 
    font-size: 3.25rem;
}
.client__container {
  padding-bottom: 2rem;
}
.swiper {
  margin-top: 4rem;
  padding-bottom: 3rem;
  width: 100%;
}
.client__card {
  max-width: 900px;
  display: grid;
  gap: 2rem;
  margin-inline: auto;
  text-align: center;
}
.client__card img {
  max-width: 600px;
  height: 400px;
  margin-inline: auto;
  margin-bottom: 2rem;
  border-radius: 100%;
  box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.2);
}
.client__card p {
  margin-bottom: 2rem;
  color: var(--text-light);
  line-height: 1.75rem;
  font-size: 1rem;
  text-align: justify;
}
.client__card h4 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--primary-color);
}
.client__card h5 {
  font-size: 1rem;
  font-weight: 500;
  color: var(--second-color);
}
.swiper-pagination-bullet-active {
  background-color: var(--text-dark);
}

/**termina estilos de  blog**/
/****/
/* .container {
  max-width: 1200px;
  margin: 0 auto;
} */

.footer {
  background-color: #24262B;
  padding: 80px 0;
}
.footer-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
}
.footer-links {
  width: 25%;
  padding: 0 15px;
  box-sizing: border-box;
  margin-bottom: 20px;
}
.footer-links h4 {
  font-size: 20px;
  color:var(--white);
  margin-bottom: 25px;
  font-weight: 500;
  border-bottom: 2px solid #00c3ff;
  padding-bottom: 10px;
  display: inline-block;
  text-align: center;
  width: 100%; 
}
.footer-links ul li a {
  font-size: 17px;
  text-decoration: none;
  color: #BBBBBB;
  display: block;
  margin-bottom: 15px;
  transition: all .3s ease;
  text-align: center; 
}
.footer-links ul li a:hover {
  color: var(--white);
  text-decoration: underline;
}
.social-link {
  width: 100%;
  text-align: center; 
}
.social-link a {
  display: inline-block;
  height: 45px; 
  width: 45px;
  background-color: rgba(255, 255, 255, 0.2);
  margin: 0 10px 10px 0;
  text-align: center;
  line-height: 45px;
  border-radius: 50%;
  color:var(--white);
  transition: all .5s ease;
}
.social-link a:hover {
  background-color: rgba(6, 248, 248, 0.5); 
  color: var(--white);
}
.social-link a i {
  font-size: 28px;
}
.footer .credit {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer .credit p {
  font-size: 1.2rem;
  color: var(--white);
  margin: 0;
  flex-grow: 1;
  text-align: left;
  padding-top: 20px; 
}
.footer-links h4 {
  font-size: 20px;
  color:var(--white);
  margin-bottom: 25px;
  font-weight: 500;
  border-bottom: 2px solid #00c3ff;
  padding-bottom: 10px;
  display: inline-block;
  text-align: center;
  width: 100%;
}
/* Estilos para la lista de redes sociales */
.footer-links h4:nth-of-type(2) + ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 10px;
  justify-content: center;
}
.footer-links h4:nth-of-type(2) + ul li a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.2);
  color: var(--white);
  font-size: 1.5rem;
  text-decoration: none;
  transition: background-color 0.3s ease;
  margin: 0;
}
.footer-links h4:nth-of-type(2) + ul li a:hover {
  background-color: #00c3ff;
}
.footer-links ul li a i {
  font-size: inherit; 
}



/*media queries*/

@media (max-width:450px){

   html{
      font-size: 50%;
   }

}

@media screen and(min-width:768px){
  
  .testi .wrapper{
    flex-direction: row;
    padding: 30px 100px;
  }
  .testi .thumbnail{
    width: 200px;
    height: 200px;
  }
  .testi :is(.swiper-button-next, .swiper-button-prev){
    top: 50%;
  }
}

@media (max-width:768px){
  .section__header {
  margin-bottom: 1rem;
  font-size: 3.5rem;
  font-weight: 600;
  font-family: var(--header-font);
  color: var(--primary-color);
}
  .section__description {
  font-size: 1.8rem;
  color: var(--text-light);
  text-align: justify;
}
.swiper-wrapper .swiper-slide p {
  font-size: 1.9rem;
  color: var(--text-light);
  text-align: justify;
  line-height: 1.5; /* Puedes ajustar este valor */
}
.swiper-wrapper .swiper-slide h4  {
  font-size: 1.9rem;
  color: var(--primary-color);
  text-align: center;
  line-height: 1.5; /* Puedes ajustar este valor */
}
.swiper-wrapper .swiper-slide h5  {
  font-size: 1.6rem;
  color: var(--second-color);
  text-align: center;
  line-height: 1.5; /* Puedes ajustar este valor */
}
.container .title{
  margin-bottom: 1rem;
  font-size: 3.5rem;
  font-weight: 600;
  color: var(--primary-color);
  text-align: center;
}

.blog__content h4 {
  margin-bottom: 1rem;
  font-size: 2.25rem;
  font-weight: 400;
  font-family: var(--header-font);
  color: var(--white);
}

.blog__content p {
  margin-bottom: 2rem;
  line-height:1.75rem;
  color: var(--extra-light);
  font-size: 1.5rem;
  text-align: justify;
}
.bloger__btn {
  border: 1px solid var(--white);
  
  width: fit-content;
  padding: 0.75rem 1.5rem;
  outline: none;
  border: none;
  font-size: 1.8rem;
  color: var(--white);
  white-space: nowrap;
  background-color: var(--primary-color);
  border-radius: 5px;
  transition: 0.3s;
  cursor: pointer;
  text-align: center;
  justify-content: center;
}
.testRow .testItem h4{
  
  color: #1c8681;
  font-size: 1.8rem;
}
.testRow .testItem p{
  font-size: 1.7rem;
 text-align: justify;
  line-height: 1.8; /* Puedes ajustar este valor */
 
}
.about__card h4 {
  margin-bottom: 0.5rem;
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--primary-color);
}

.about__card p {
  color: var(--text-light);
  text-align: justify;
  font-size: 1.8rem;
}
  .nav__search{
    display: none;
  }
  .nav__menu__btn {
  font-size: 3rem; /* Aumenta el tamaño del icono */
  padding: 15px; /* Añade espacio alrededor del icono para facilitar el toque */
  display: flex; /* Asegura que el padding funcione correctamente */
  align-items: center; /* Centra verticalmente el icono */
  justify-content: center; /* Centra horizontalmente el icono */
  cursor: pointer; /* Indica que es un elemento clickeable */
  /* Si el botón tiene un color o fondo, podrías ajustarlo aquí también */
  color:var(--primary-color); /* Ejemplo de color del icono */
}
 .nav__links {
  position: absolute;
  top: 65px;
  left: 0;
  width: 100%;
  padding: 4rem 2rem; /* Aumenta el padding superior e inferior. Ajusta a tu gusto. */
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 2.5rem; /* Aumenta el espacio entre los elementos del menú */
  background-color: #271e5b;
  transition: 0.5s;
  z-index: -1;
  transform: translateY(-100%);
}
.nav__links.open {
  transform: translateY(0);
}
.nav__links a {
  font-weight: 500;
  color: var(--white);
  font-size: 2rem; /* Aumenta aún más el tamaño de la fuente de los enlaces */
}

/* Opcional: Si quieres que el icono en sí sea aún más grande sin afectar el padding */
.nav__menu__btn i {
  font-size: 1.2em; /* Puedes ajustar este valor si el ri-menu-4-line es muy pequeño dentro del botón */
}
.header__content {
    text-align: center; /* Centra el texto de todos los elementos dentro de header__content */
  }

  /* Si solo quieres centrar el h1 y el p, puedes ser más específico: */
  .header__content h1 {
    text-align: center;
    font-size: 40px;
  }
   .header__content p{
    display: none;
   }

  /* También, asegúrate de que el div interno no tenga un ancho fijo que impida el centrado,
     o que sus márgenes se ajusten automáticamente */
  .header__content > div {
    margin-left: auto;
    margin-right: auto;
    /* Si tenías un 'width' fijo aquí que era menor al 100%, considera ajustarlo */
    max-width: 90%; /* Ejemplo: Si quieres que el div interno no sea 100% de ancho */
  }
/* .header__content p {
    display: none;
  }
  .header__content h1 {
    text-align: center;
    font-size: 60px;
    
  } */
  .products-preview .preview img{
      height: 25rem;
  }
  

  .slider-wrapper{
    margin: 0 10px 40px;
  }
  .slider-wrapper .swiper-slide-button{
    display:none;
  }

  /***seccion de servicios**/
 .container {
    padding: 7rem 7rem; /* Reduce el padding general en móvil */
  }

  .container .products-container {
    grid-template-columns: 1fr; /* Una sola columna para apilar las cards */
    gap: 1.5rem; /* Reduce el espacio entre las cards en móvil */
  }

  .container .products-container .product {

    padding: 2rem 1.5rem; /* Reduce el padding interno de las cards */
    border-radius: 8px; /* Ligeramente menos redondeado en móvil */
  }

  .container .products-container .product img {
    height: 20rem; /* Reduce la altura de la imagen en móvil */
    border-radius: 8px; /* Igual que la card */
  }

  .container .products-container .product h3 {
    font-size: 1.7rem; 
    padding: 0.3rem 0;
  }
  .product .price {
    display: none;
  }
 .products-preview .preview img {
    height: 29rem;
   
  }
  
.products-preview{
   position: fixed;
   top:0; left:0;
   min-height: 100vh;
   width: 100%;
   background: rgba(0,0,0,.8);
   display: none;
   align-items: center;
   justify-content: center;
}

.products-preview .preview{
   display: none; 
  padding: 1.5rem;
   text-align: center;
   background: #fff;
   position: relative;
   margin:2rem;
   width: 37rem;
   margin: 1rem;
   
}

.products-preview .preview .fa-times {
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  cursor: pointer;
  color: #ffffff; 
  background-color: var(--primary-color); 
  border-radius: 50%;
  font-size: 2rem;
  width: 4.5rem; 
  height: 4.5rem; 
  display: flex; 
  justify-content: center; 
  align-items: center;
}


.products-preview .preview h3{
   color:var(--primary-color);
   padding:.5rem 0;
   font-size: 3rem; 
}
.products-preview .preview p {
  line-height: 1.5; /* This controls the line spacing */
  padding: 1rem 0;
  font-size: 2rem;
  color: #777;
  text-align: justify;
}
.products-preview .preview .buttons{
   display: flex;
   gap:1rem;
   flex-wrap: wrap;
   margin-top: 2rem;
}

.products-preview .preview .buttons a{
   flex:1 1 12rem;
   padding:1rem;
     font-size: 2rem;
   color:var(--primary-color);
   border:.1rem solid var(--primary-color);
}
  .client__card img {
  max-width: 250px; /* Manteniendo el ancho máximo */
  height:250px;      /* Ajustando la altura automáticamente para mantener la proporción */
 
}
/* 
  .container {
    min-height: 450px;
  } */

  .container .contents-wraper {
    width: 90%; /* Vuelve al ancho original */
    margin: 6px auto;
  }

  .testRow .testItem img {
    width: 120px;
    height: 120px;
    margin-bottom: 5px;
  }

  .testRow .testItem h3 {
    font-size: 20px;
  }

.footer .credit p {
  font-size: 1.9rem;
  color: #fff;
  margin: 0; /* Elimina márgenes para un mejor control con Flexbox */
  flex-grow: 1; /* Permite que el texto ocupe el espacio disponible */
  text-align: center; /* Alinea el texto a la izquierda */
}
.footer-links h4:nth-of-type(2) + ul li a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.2);
  color: #fff;
  font-size: 3rem;
  text-decoration: none;
  transition: background-color 0.3s ease;
  margin: 0;
}
.footer-links ul li a {
  font-size: 12px;
  text-decoration: none;
  color: #BBBBBB;
  display: block;
  margin-bottom: 15px;
  transition: all .3s ease;
  text-align: center; /* Centra el texto de los enlaces */
}
.footer-row {
    flex-direction: column;
    align-items: center; 
  }

  .footer-links {
    width: 80%;
    text-align: center;
  }

  .footer-links h4 {
    width: auto;
    display: inline-block; 
  }

  .footer__socials {
    margin: 1rem auto 0; /* Asegura el centrado en móvil también */
  }


}
@media (width > 540px) {
 

  .about__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .product__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer__container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (width > 768px) {
  nav {
    position: static;
    padding: 2rem 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
  }

  .nav__header {
    flex: 1;
    padding: 0;
    background-color: transparent;
  }

  .nav__menu__btn {
    display: none;
  }
  .nav__links {
    position: static;
    padding: 0;
    width: fit-content;
    flex-direction: row;
    gap: 3rem;
    background-color: transparent;
    transform: none;
  }
  .nav__links a {
    color: var(--text-dark);
  }
  .header__container {
    padding-top: 0;
  }
  .about__header {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .about__content {
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
  }

  .about__image {
    grid-area: 1/2/2/3;
  }


  .products-container {
    display: flex;
    flex-direction: column; /* Apila los productos verticalmente en móvil */
    gap: 1.5rem; /* Espacio entre las cards */
    padding: 1rem; /* Un poco de padding alrededor del contenedor */
}
  .client__card {
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
    text-align: left;
  }


}
@media (width > 1024px) {
  .about__grid {
    gap: 4rem 2rem;
  }
}

