* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

:root {
  --primary: #ec994b;
  --white: #ffffff;
  --bg: #f5f5f5;
  --txop:#2d2d2d;
  --note: #df2302;
}
body {
  max-width: 100%;
  overflow-x: hidden;
  font-size: 16px;
}
h1 {
  font-weight: 400;
  font-size: 20px;
  color: var(--txop);
}

h2 {
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 18px;
}

h3 {
  font-weight: 500;
  font-size: 0.9em;
}
h4 {
  font-weight: 400;
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  margin: 40px 0 30px;
}
del {
    font-size: 14px;
    text-decoration: line-through;
    color: #8b8b8b;
}

.text-seccess {
  color: #00bf08;

}
.nota {
    color: var(--note);
    font-size: 1.3rem;
}

.nota1 {
    color: #000;
    font-size: 1.5rem;
    margin: 17px 0;
}

.header {
  position: fixed;
  top: 3%;
  left: 50%;
  width: 90%;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 18px;
  background-color: #ffffffe3;
  transform: translateX(-50%);
  text-align: center;
  border-radius: 35px;
  z-index: 3;
}

.aviso-cookies {
    display: none;
    background: rgb(255, 253, 253);
    padding: 20px;
    width: calc(100% - 40px);
    max-width: 300px;
    line-height: 150%;
    border-radius: 10px;
    position: fixed;
    bottom: 0;
    right: 40px;
    z-index: 100;
    padding-top: 60px;
    box-shadow: 0px 2px 20px 10px rgba(222, 222, 222, 0.25);
    text-align: center;
}

.aviso-cookies.activo {
  display: block;
}

.aviso-cookies .galleta {
  max-width: 100px;
  position: absolute;
  top: -50px;
  left: calc(50% - 50px);
}

.aviso-cookies .titulo,
.aviso-cookies .parrafo {
  margin-bottom: 15px;
}

.aviso-cookies .boton {
  width: 100%;
  background: #595959;
  border: none;
  color: #fff;
  text-align: center;
  padding: 15px 20px;
  font-weight: 700;
  cursor: pointer;
  transition: 0.3s ease all;
  border-radius: 5px;
  margin-bottom: 15px;
  font-size: 14px;
}

.aviso-cookies .boton:hover {
  background: #000;
}

.aviso-cookies .enlace {
  color: #4dbfff;
  text-decoration: none;
  font-size: 14px;
}

.aviso-cookies .enlace:hover {
  text-decoration: underline;
}

.fondo-aviso-cookies {
  display: none;
  background: rgba(0, 0, 0, 0.2);
  position: fixed;
  z-index: 99;
  width: 100vw;
  height: 100vh;
  top: 0;
  left: 0;
}

.fondo-aviso-cookies.activo {
  display: block;
}

.nav-item {
  text-decoration: none;
  color: #484848;
  margin-right: 20px;
}

.nav-item.logo img {
  width: 140px;

}
.acrLog img{
  width: 50px;
  margin-top: 23px;
}

#menu-icon {
  display: none;
  cursor: pointer;
}

.ions{
  display: inline-flex;
}

.carrito-container {
    position: relative;
}

/*user des*/

.user-menu {
    display: none;
    position: absolute;
    background-color: #ffffffe3;
    min-width: 160px;
    cursor: pointer;
    border-radius: 0px 0px 20px 20px;
    z-index: 1;
}
.user-menu.active {
    display: flex;
    flex-direction: column;
    top: 123%;
    left: -64px;
    width: 100%;
    padding: 10px 0 10px 0;
    gap: 10px;
}

.brr {
    position: relative;
    display: flex;
}

.header-icon {
    width: 35px;
    height: 35px;
    margin-left: 5px;
    cursor: pointer;
}
.carrito-container2 {
    margin-left: 30px;
}

.cantidad-carrito {
    position: absolute;
    top: 50%;
    left: 83%;
    transform: translate(-73%, -30%);
    font-size: 14px;
}

.punto-rojo {
    height: 10px;
    width: 10px;
    background-color: #ff0000;
    border-radius: 50%;
    position: absolute;
    right: 0;
    top: 0;

}
.punto-verde {
    height: 10px;
    width: 10px;
    background-color: #00c94f;
    border-radius: 50%;
    position: absolute;

}


@keyframes zumbido {
  0% { transform: translateX(0); }
  25% { transform: translateX(-5px); }
  50% { transform: translateX(5px); }
  75% { transform: translateX(-5px); }
  100% { transform: translateX(0); }
}

.punto-rojo.zumbido {
  animation: zumbido 0.5s;
}

.nav-menu {
  display: flex;
}

.nav-menu.active {

  display: block;
  background-color: #ffffff00;
}

.sub-menu {
  display: none;
}

.nav-item:hover + .sub-menu {
  display: block;
}

@media only screen and (max-width: 849px) {
  .hero {
    background-image: linear-gradient(0deg, rgb(255 255 255) 4.4%, rgb(255 255 255 / 9%) 33.12%), url(../Img/principal1m.webp);
  }
}
@media only screen and (min-width: 850px) {
  .hero {
    background-image: linear-gradient(0deg, rgb(255 255 255) 4.4%, rgb(255 255 255 / 9%) 33.12%), url(../Img/principal1.webp);
  }
}
.hero {
  height: 52vh;
  width: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  bottom: 20%;
}

.hero-overlay {
  display: flex;
  padding: 20px;
  flex-direction: column;
  align-items: flex-end;
  text-align: right;
  color: #445553;
  position: absolute;
  right: 5%;
  bottom: 10%;
}

.main-title {
  font-weight: 400;
  font-size: 55px;
  font-family: "philosopher", sans-serif;
}

.sub-title {
  margin-bottom: 18px;
  font-family: "Roboto", sans-serif;
}


.hero-overlay button:hover {
  background-color: rgba(0, 0, 0, 0.1);
}

/*  Presentacion */



.img-ly {
  background-image: linear-gradient(0deg, rgb(23 60 62 / 69%), rgb(124 132 133 / 72%)), url(../Img/acerca1.jpg);
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.column-ly {
  display: flex;
  justify-content: space-between;
  max-width: 75%;
  padding: 35px;
}
.column-ly p {
  color: #fff;
  overflow-wrap: break-word;
  width: calc(50% - 15px);
  text-align: justify;
  font-size: 18px;
}
.img-ly2 {
  background-image: linear-gradient(
      0deg,
      rgb(23 60 62 / 69%),
      rgba(40, 105, 109, 0.62)
    ),
    url(../Img/acerca2.jpg);
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
.column-ly2 {
  display: flex;
  justify-content: space-between;
  padding: 70px;
}
.column-ly2 p {
  color: #fff;
  text-align: center;
  font-size: 18px;
}

/*  SLIDER */

.slider {
  height: 102px;
  position: relative;
  width: 100%;
  display: grid;
  place-items: center;
  overflow: hidden;
}
.slider::before,
.slider::after {
  position: absolute;
  background-image: linear-gradient(
    to right,
    rgba(255, 255, 255, 1) 0%,
    rgba(255, 255, 255, 0) 100%
  );
  content: "";
  height: 100%;
  width: 25%;
  z-index: 2;
  pointer-events: none;
}
.slider::before {
  left: 0;
  top: 0;
}
.slider::after {
  right: 0;
  top: 0;
  transform: rotateZ(180deg);
}

.slide-track {
  width: calc(231px * 20);
  display: flex;
  animation: scroll 20s linear infinite;
  justify-content: space-between;
}

.slide {
  width: 150px;
  height: 60px;
  display: grid;
  place-items: center;
  transition: 0.5s;
  cursor: pointer;
}
.slide:hover {
  transform: scale(0.8);
}

@keyframes scroll {
  0% {
    transform: translateX(0px);
  }
  100% {
    transform: translateX(calc(-150px * 10));
  }
}

.full-width-hr {
  width: 90%;
  height: 1px;
  background-color: #ccc;
  border: none;
  margin: 0 auto; /* Centrar horizontalmente */
}

/*Testimonials*/

.reviews-section {
  margin: 0 auto;
  padding: 40px;
}

.reviews-title {
  text-align: center;
}

.reviews-subtitle {
  text-align: center;
  margin: 20px 0;
}

.customer-review {
  flex-direction: column;
  max-width: 681px;
  padding: 20px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  margin: 0 auto;
  border: 1px solid;
  border-radius: 45px 40px 0px 50px;
  margin-bottom: 59px;
}

.review-header {
  display: flex;
  align-items: center;
  width: 100%;
  margin-bottom: 10px;
}

.review-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 10px;
}

.review-header {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.review-author {
  font-weight: bold;
  flex: 1;
  font-size: 18px;
  /* margin-bottom: 0px; */
}

.review-stars {
  color: var(--primary);
  font-size: 20px;
}

.review-text {
  margin-bottom: 20px;
}

.button-container {
  text-align: center;
}

.review-btn {
    display: inline-block;
    border: 1px solid;
    border-radius: 20px;
    background-color: transparent;
    cursor: pointer;
    font-size: 12px;
    padding: 7px 11px;
    text-decoration: none;
    color: inherit;
}

.review-btn:hover {
  background-color: #f1f1f1;
}

/*heroCatalogo*/

.heroCt {
  position: relative;
  height: 26vh;

}
.heroCt h1 {
  font-size: 40px;
  margin: 0;
}
.heroCt img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.heroCt-overlay {
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  height: 100%;
  background-image: linear-gradient(180deg, rgba(248, 255, 255, 0) 30%, rgb(255 255 255) 95%);
}
.main-title-heroct {
  font-family: "philosopher", sans-serif;
  padding: 20px;
  color: #212121;
  position: absolute;
  bottom: 10%;
}

/*catalogo*/

.catalogo {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(calc(33.33% - 110px), 1fr));
    grid-gap: 10px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px;
    text-align: center;
}

.card-catalogo {
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    margin-bottom: 50px;
    border-radius: 25px 25px 25px 25px;
    background: linear-gradient(to bottom, #ffffff, #f3f3f3);
    cursor: pointer;
}


.card-producto {
  display: flex;
  flex-direction: column;
  text-align: center;
  cursor: pointer;
}

.card-image img {
    width: 85%;
    border-radius: 25px;
    height: 300px;
    object-fit: cover;
    object-position: top;
}


.card-img img {
    width: 450px;
    border-radius: 20px 20px 20px 20px;
    object-fit: cover;
  margin-bottom: 10px;
}

.card-content {
    padding: 0 13px;
    text-align: start;
    margin: 5px;
    /* white-space: nowrap; */
    /* overflow: hidden; */
    color: #212121;
    /* text-overflow: ellipsis; */
}

.card-content2 {
display: flex;
padding-top: 8px;
justify-content: space-between;
flex-direction: column;
}

.card-info {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 0px 0px 30px 30px;
  color: white;
  padding: 20px;
}
.card-content p {
  font-size: 12px;
}

.precio {
    font-size: .9em;
}


.card-texto-grande {
  grid-column: span 2; /* Hace que el texto ocupe 2 columnas */
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}

.card-texto-grande h3 {
  margin-top: 180px;
  text-align: left;
  border-left: 30px solid #50D8D7;
  line-height: 40px;
  font-size: 45px;
}
.card-texto-grande2 h1 {
    text-align: left;
    border-left: 30px solid #50D8D7;
    line-height: 28px;
    font-size: 26px;
}

.card-texto-grande p {
  margin: 20px 0;
  text-align: left;
  font-size: 20px;
}

.card-texto-grande2 p {
    margin: 20px 0px;
    text-align: left;
    font-size: 18px;
}

.buys {
    text-align: center;
}

.button-buys-vent {
    background-color: #0d6efd;
    color: white;
    border: none;
    border-radius: 20px;
    padding: 10px 30px;
    cursor: pointer;
    margin-top: 40px;
}
.button-buys-cotizar {
  display: flex;
  background-color: transparent;
  color: #0d6efd;
  border: 2px solid #0d6efd;
  border-radius: 20px;
  padding: 8px 20px;
  cursor: pointer;
  flex-direction: row;
  align-items: center;
  margin-top: 40px;
  font-size: 15px;
}
.cotizar-link {
    display: inline-flex;
    align-items: center;
    text-decoration: none;

}

.cotizar {
    font-size: 14px;
}

.button-merca {
    background-color: #009ee3;
    color: white;
    width: 100%;
    border: none;
    border-radius: 9px;
    padding: 14px;
    cursor: pointer;
    font-size: 16px;
    margin: 35px 0 8px 0;
}
.leyendaMP
{
  margin-bottom: 10px;
  font-size: 12px;
}




.button-buys-car {
  background-color: transparent;
  color: #0d6efd;
  border: 2px solid #0d6efd;
  border-radius: 20px;
  padding: 8px 20px;
  cursor: pointer;
}

.button-buys-car:hover {
  background-color: #0d6efd;
  ;
  color: white;
}


.container_cont{
  position: fixed;
  justify-content: space-between;
  align-items: center;
  flex-direction: column;
  bottom: 170px;
  right:110px;

}


.whatsapp-icon {
    font-size: 24px;
    margin-right: 10px;
}


/*=============== FOOTER ===============*/

footer {
    /* background-color: #bed3e3; */
    /*border-top-left-radius: 100px;*/
    background: linear-gradient(0deg, #80aab0, white);
}

.footer-section {
  color: #465155;
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 15%;
}

.footer-column {
  padding: 9px;
}

.footer-column h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

ul {
  list-style: none;
  padding: 0;
  margin-bottom: 25px;
}

li {
  margin-bottom: 10px;
}

ul li a {
  color: #465155;
  text-decoration: none;
  padding-left: 10px;
}

ul li a:hover {
  border-left: 3px solid #6aced4;
  padding-left: 8px;
}

.social-icons {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.social-icon {
  margin: 5px;
  padding: 0; /* Eliminamos el padding */
  text-align: center;
  width: 30px;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #465155;
}

.social-icons i {
  font-size: 20px;
  color: #465155;
}

.social-icons .social-icon:hover {
  background-color: #7ab5c6;
}

.social-icons .social-icon:hover i {
  color: #ffffff;
}

.contact {
  margin-bottom: 15px;
}

.contacts a {
  color: #465155;
}

.bg-different {
    background-color: #293132c9;
    border-top-right-radius: 91px;
    color: #f1f1f1;
    display: flex;
    padding: 10px 73px;
    flex-direction: column;
    align-items: center;
}

.footer-logo img {
  width: 120px;
  margin-bottom: 10px;
}

.footer-text p {
  font-size: 1.3rem;
  margin: 5px 0;
  text-align: end;
}

.footer-text a {
  text-decoration: none;
}
/* container productos */
.container-productos {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
    padding: 180px 15px;
}

/* CAPTURAS */

 .contenedor-principal {
  background-color: #f1f1f1;
  width: 100%;
  height: 100%;
}

.seccionCAP {

  margin: -80px auto;
  transition: 0.3s;
  width: 50%;
  padding: 20px;
}

.seccionCAP2 {
  background-color: white;
  margin: 20px auto;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
  transition: 0.3s;
  padding: 20px;
}

.seccionCAP3 {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.iralsitio {
  display: flex;
  justify-content: flex-end;
  color: blue;
}

@media screen and (max-width:800px) {
  .seccionCAP {
    width: 100%;
  }
}



/*/////////////////////////////////////////////////////////////////////////////////////////////////*/

@media screen and (max-width: 1200px) {
  .catalogo {
    padding: 50px 15px 0;
  }
  .card-texto-grande {
    grid-column: span 1; /* El texto sigue ocupando 2 columnas en pantallas medianas */
  }
}


@media (min-width: 992px) and (max-width: 1199px) {
  h1 {
    font-size: 20px;
  }
  .nav-item.logo img {
    width: 110px;
  }
  .nav-item {
    margin-right: 18px;
  }


  .hero-overlay {
    right: 5%;
    bottom: 10%;
  }

  .main-title {
    margin-bottom: -12px;
  }
  .sub-title {
    margin-bottom: 15px;
  }
  .hero-overlay button {
    font-size: 20px;
  }
}

@media (max-width: 991px) {
  body {
      font-size: 1.5rem;
  }
  h1 {
    font-size: 14px;
  }
  h2 {
    font-size: 1.5rem;
  }

  h4 {
    margin: 40px 15px 30px;
  }
  .header {
    top: 3%;
  }
  #menu-icon {
    display: block;
  }

  .nav-item {
    margin-right: 5px;
  }
  .nav-menu {
    display: none;
  }
  .nav-menu.active {
      display: flex;
      flex-direction: column;
      position: absolute;
      top: 100%;
      background-color: #ffffffe3;
      width: 35%;
      padding: 15px 15px;
      gap: 15px;
  }
  .user-menu.active {
          display: flex;
          flex-direction: column;
          top: 98%;
          left: 23%;
          width: 56%;
          padding: 11px 0 10px 0;
          gap: 15px;
      }


  .carrito-container2 {
      margin-left: 0;
  }

  .cantidad-carrito {
      left: 50%;
  }

  .column-ly {
    flex-direction: column;
  }
  .column-ly {
    padding: 45px;
  }
  .column-ly {
    display: flex;
    justify-content: space-between;
    max-width: 90%;
    padding: 15px;
  }
  .column-ly p {
    color: #fff;
    overflow-wrap: break-word;
    width: 100%; /* Utiliza el 100% del ancho disponible */
    font-size: 18px;
  }

  .card-texto-grande2 p {
      margin: 20px 20px;
      font-size: 16px;
  }
  footer {
    font-size: 14px;
  }
  .slide-track {
    width: calc(160px * 20);
  }
  .review-avatar {
    width: 50px;
    height: 50px;
  }

  .footer-section {
    margin: 0 5%;
  }
  .button-buys-cotizar {
      /* background-color: #0d6efd; */
      color: #0d6efd;
      margin: 20px 10px 0 0;
      padding: 6px 15px;
      font-size: 14px;
  }

}

@media (min-width: 768px) and (max-width: 991px) {


  .main-title {
    /* margin-bottom: -84px; */
    font-size: 60px;
  }

  .sub-title {
    /* margin-bottom: -8px; */
    font-size: 18px;
  }
  .hero-overlay button {
    font-size: 20px;
  }

  .reviews-subtitle {
    margin-left: 0;
  }
  .slide-track {
    width: calc(170px * 20);
  }

  .slide {
    width: 80px;
  }

  @keyframes scroll {
    0% {
      transform: translateX(0px);
    }
    100% {
      transform: translateX(calc(-80px * 10));
    }
  }

  .catalogo {

      grid-template-columns: repeat(auto-fill, minmax(calc(33.33% - 60px), 1fr));

  }
}


@media (max-width: 768px) {

  .heroCt h1 {
      font-size: 24px;
  }
  del {
      font-size: 12px;
  }

  .footer-column {
    padding: 20px;
  }

  .footer-text p {
    text-align: start;
    width: 80%;
  }

  .bg-different {
    padding: 22px 37px;
    margin-right: 0;
    align-items: normal;
  }
  .card-texto-grande h3 {
    margin-top: 0;
  }

  .column-ly {
    padding: 35px;
  }

  .catalogo {

      grid-template-columns: repeat(auto-fill, minmax(calc(33.33% - 0px), 1fr));

  }
  #tranding .tranding-slider {
      height: 58rem;

  }

}

@media (min-width: 576px) and (max-width: 767px) {


  .hero {
    height: 77vh;
  }

  .sub-title {
    margin-bottom: 1px;
  }
  .hero-overlay button {
    font-size: 16px;
  }

  .text-center {
    font-size: 20px;
  }
  .slide-track {
    width: calc(80px * 20);
  }

  .slide {
    width: 80px;
  }

  @keyframes scroll {
    0% {
      transform: translateX(0px);
    }
    100% {
      transform: translateX(calc(-80px * 10));
    }
  }

  .reviews-subtitle {
    margin-left: 0;
  }
}

@media (max-width: 575px) {
  .header {
    top: 3%;
  }
  .nav-item.logo img {
    width: 100px;
  }
  .nav-item {
    margin-right: 5px;
  }
  #menu-icon {
    display: block;
  }

  .nav-menu {
    display: none;
  }


  .hero {
    height: 75vh;
  }
  .hero-overlay {
    bottom: 0%;
  }

  .main-title {
    font-size: 3rem;
  }


  .slide {
    width: 100px;
    height: 40px;
  }
  .card-image img {
      height: 200px;
  }

  @keyframes scroll {
    0% {
      transform: translateX(0px);
    }
    100% {
      transform: translateX(calc(-150px * 10));
    }
  }
  .reviews-subtitle {
    margin-left: 0;
  }
}

/* On smaller screens, decrease text size */
@media only screen and (max-width: 300px) {
  .prev,
  .next,
  .text {
    font-size: 11px;
  }
}
