@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;700;900&display=swap");
@font-face {
  font-family: "GothamLight";
  src: url("../fonts/GothamLight.eot");
  src: url("../fonts/GothamLight.woff") format("woff"), url("../fonts/GothamLight.ttf") format("truetype"), url("../fonts/GothamLight.svg") format("svg");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "GothamBook";
  src: url("../fonts/GothamBook.eot");
  src: url("../fonts/GothamBook.woff") format("woff"), url("../fonts/GothamBook.ttf") format("truetype"), url("../fonts/GothamBook.svg") format("svg");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "GothamBold";
  src: url("../fonts/GothamBold.eot");
  src: url("../fonts/GothamBold.woff") format("woff"), url("../fonts/GothamBold.ttf") format("truetype"), url("../fonts/GothamBold.svg") format("svg");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "GothamBlack";
  src: url("../fonts/GothamBlack.eot");
  src: url("../fonts/GothamBlack.woff") format("woff"), url("../fonts/GothamBlack.ttf") format("truetype"), url("../fonts/GothamBlack.svg") format("svg");
  font-weight: normal;
  font-style: normal;
}
:root {
  --FontBlack: "GothamBlack";
  --FontBold: "GothamBold";
  --FontBook: "GothamBook";
  --FontLight: "GothamLight";
  --bgColor: #1A1A1A;
  --colorGray: #E6E6E6;
  --colorGreen:#2FAB5F;
  --colorGreenDark:#004337;
  --colorGreenLight:#C3D211;
  --colorBase: #4D4D4D;
  --colorBlack: #000;
  --colorWhite: #fff;
}

@media (max-width: 1199px) {
  .container {
    max-width: 100% !important;
  }
}
@media (min-width: 1200px) {
  .container {
    max-width: 1283px !important;
  }
}

/*Colors*/
.color-dark {
  color: var(--colorBlack);
}

.color-white {
  color: var(--colorWhite);
}

.color-default {
  color: var(--colorBase);
}

.color-green {
  color: var(--colorGreen);
}

.color-green-dark {
  color: var(--colorGreenDark);
}

.color-green-light {
  color: var(--colorGreenLight);
}

.bg-green {
  background-color: var(--colorGreen);
}

.bg-green-dark {
  background-color: var(--colorGreenDark);
}

.bg-green-light {
  background-color: var(--colorGreenLight);
}

.bg-gray {
  background-color: var(--colorGray);
}

.bg-white {
  background-color: var(--colorWhite);
}

.cursor-pointer {
  cursor: pointer;
}

.light {
  font-family: var(--FontLight) !important;
}

.bold, b {
  font-family: var(--FontBold) !important;
}

.book {
  font-family: var(--FontBook) !important;
}

.black {
  font-family: var(--FontBlack) !important;
}

/*Text*/
h1, h2, h3, h4, h5, h6 {
  letter-spacing: -1px;
  font-family: var(--FontBook);
}

p {
  color: var(--colorBase);
}
p b {
  line-height: 0;
}

.heading-h1 {
  font-family: "GothamBlack";
  font-size: 84px;
  line-height: 0.8;
  font-weight: 900;
  letter-spacing: -1px;
}
@media (max-width: 1199px) {
  .heading-h1 {
    font-size: 56px;
  }
}
@media (max-width: 767px) {
  .heading-h1 {
    font-size: 42px;
  }
}

.heading-h2 {
  font-family: "GothamBlack";
  font-size: 56px;
  line-height: 1;
  letter-spacing: -2px;
}
@media (max-width: 1199px) {
  .heading-h2 {
    font-size: 42px;
  }
}
@media (max-width: 767px) {
  .heading-h2 {
    font-size: 32px;
  }
}

.heading-h3 {
  font-family: "GothamBlack";
  font-size: 42px;
  letter-spacing: -2px;
  line-height: 1;
}
@media (max-width: 1199px) {
  .heading-h3 {
    font-size: 32px;
  }
}

.heading-h4 {
  font-family: "GothamBold";
  font-size: 34px;
  letter-spacing: -2px;
  line-height: 1;
}
@media (max-width: 1199px) {
  .heading-h4 {
    font-size: 28px;
  }
}
@media (max-width: 767px) {
  .heading-h4 {
    font-size: 22px;
  }
}

.heading-h5 {
  font-family: "GothamBlack";
  font-size: 28px;
  letter-spacing: -1px;
  line-height: 1;
}
@media (max-width: 1199px) {
  .heading-h5 {
    font-size: 24px;
  }
}

.text-default {
  font-family: "GothamBook";
  font-size: 16px;
}

.text-large {
  font-family: "GothamBook";
  font-size: 24px;
  letter-spacing: -1px;
  line-height: 1.2;
}
@media (max-width: 1199px) {
  .text-large {
    font-size: 24px;
  }
}
@media (max-width: 767px) {
  .text-large {
    font-size: 20px;
  }
}
.text-large b {
  line-height: 0;
}

.text-medium {
  font-family: "GothamBook";
  font-size: 20px;
  letter-spacing: -1px;
  line-height: 1.3;
}
@media (max-width: 1199px) {
  .text-medium {
    font-size: 18px;
  }
}
.text-medium b {
  line-height: 0;
}

.border-left {
  border-left: 4px solid var(--colorPink);
}

/*Button*/
.button {
  border: 1px solid transparent;
  padding: 15px 24px 15px;
  font-size: 14px;
  font-family: var(--FontBold);
  transition: 0.2s ease-in-out;
  background-color: var(--colorGreen);
  color: var(--colorWhite);
  line-height: 1;
  border-radius: 32px;
  display: inline-block;
  border: 1px solid transparent;
}
.button:hover {
  background-color: var(--colorGreenDark);
  border-color: var(--colorWhite);
  color: var(--colorWhite);
}
.button.white {
  color: var(--colorGreen);
  background-color: var(--colorWhite);
}
.button.white:hover {
  background-color: var(--colorGreen);
  color: var(--colorWhite);
  border-color: var(--colorWhite);
}
.button.green-dark:hover {
  background-color: --colorGreenDark;
  color: var(--colorWhite);
  border-color: var(--colorWhite);
}

li.buttonactive {
  padding: 5px 8px;
  border-radius: 5px;
  color: #FFF;
  background-color: #2fab5f;
}
li.buttonactive span {
  color: #FFF;
}

/*Block elements*/
body {
  font-family: var(--FontBook), sans-serif;
  font-size: 18px;
  line-height: 26px;
  color: var(--colorBase);
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
}
@media (max-width: 767px) {
  body {
    font-size: 16px;
    line-height: 24px;
  }
}

/*Animaciones*/
.animate-on-scroll {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animate-on-scroll.active {
  opacity: 1;
  transform: translateY(0);
}

.animate-on-scroll.show-bg {
  opacity: 0;
  transform: scale(1.1);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animate-on-scroll.show-bg.active {
  opacity: 1;
  transform: scale(1);
}

.animate-on-scroll.active.show-1 {
  transition-delay: 0.2s;
}

.animate-on-scroll.active.show-2 {
  transition-delay: 0.4s;
}

.animate-on-scroll.active.show-3 {
  transition-delay: 0.6s;
}

.animate-on-scroll.active.show-4 {
  transition-delay: 0.8s;
}

.animate-on-scroll.active.show-5 {
  transition-delay: 1s;
}

.animate-on-scroll.active.show-6 {
  transition-delay: 1.2s;
}

.animate-on-scroll.active.show-7 {
  transition-delay: 1.4s;
}

/*Header*/
header {
  position: fixed;
  width: 100%;
  z-index: 9;
  top: 0;
  transition: 200ms ease-in-out;
  border-bottom: 1px solid transparent;
}
header .container {
  max-width: inherit;
}
header .header-inner {
  transition: 200ms ease-in-out;
}
header .header-inner .brand img {
  transition: 200ms ease-in-out;
  height: 50px;
}
@media (max-width: 1023px) {
  header .header-inner .brand img {
    height: 40px;
  }
}
@media (max-width: 576px) {
  header .header-inner .brand img {
    height: 30px;
  }
}
header .header-inner .menu a:hover,
header .header-inner .menu a.active {
  color: var(--colorGreen);
}
header.scroll {
  border-bottom-color: #eee;
  background-color: #fff;
}
header.scroll .header-inner {
  padding-top: 0;
  padding-bottom: 0;
}
@media (max-width: 1023px) {
  header.scroll .header-inner {
    padding-top: 12px;
    padding-bottom: 12px;
  }
}
@media (max-width: 767px) {
  header.scroll .header-inner {
    padding-top: 8px;
    padding-bottom: 8px;
  }
}
header.scroll .header-inner .brand img {
  height: 50px;
}
@media (max-width: 1023px) {
  header.scroll .header-inner .brand img {
    height: 40px;
  }
}
@media (max-width: 576px) {
  header.scroll .header-inner .brand img {
    height: 30px;
  }
}
header .toggle {
  justify-content: center;
  align-items: center;
  height: 100%;
}
header .toggle .toggle-inner {
  display: inline-block;
  vertical-align: middle;
  cursor: pointer;
  width: 28px;
  height: 20px;
  margin-top: 0;
  position: relative;
  color: inherit;
}
header .toggle .toggle-inner span {
  background: transparent;
  display: inline-block;
  width: 28px;
  height: 2px;
  border-radius: 10px;
  background-color: var(--colorBlack);
  transition: all 0.3s ease-out;
  vertical-align: top;
  position: absolute;
  right: 0;
}
header .toggle .toggle-inner span:nth-child(2) {
  top: 8px;
  right: 0;
  width: 20px;
}
header .toggle .toggle-inner span:nth-child(3) {
  top: 16px;
  right: 0;
  width: 12px;
}
header .toggle:hover .toggle-inner span:nth-child(1) {
  width: 12px;
}
header .toggle:hover .toggle-inner span:nth-child(3) {
  width: 28px;
}

.bg-internal {
  background-image: url(../images/bg-header.png);
  background-size: 80%;
  background-repeat: no-repeat;
}

/*Custom blocks*/
.hero-index {
  background-color: #E5E5E5;
}
.hero-index .bg {
  width: 80%;
}
.hero-index .hero-caption .hero-text {
  max-width: 500px;
  padding-right: 24px;
}
.hero-index .hero-caption .hero-text .heading-h1 b {
  letter-spacing: -2px;
}
@media (min-width: 1024px) and (max-width: 1320px) {
  .hero-index .hero-caption .hero-text {
    padding-left: 50px;
  }
}
.hero-index .hero-caption .hero-img {
  max-width: 600px;
}
@media (max-width: 1279px) {
  .hero-index .hero-caption .hero-img {
    max-width: 500px;
  }
}
@media (max-width: 1023px) {
  .hero-index .hero-caption .hero-img {
    max-width: 400px;
  }
}
@media (max-width: 767px) {
  .hero-index .hero-caption .hero-img {
    margin-bottom: 24px;
  }
}
.hero-index .swiper-button-next,
.hero-index .swiper-button-prev {
  color: var(--colorGreen);
}
.hero-index .swiper-button-next:hover,
.hero-index .swiper-button-prev:hover {
  color: var(--colorGreenDark);
}
@media (max-width: 1023px) {
  .hero-index .swiper-button-next,
  .hero-index .swiper-button-prev {
    display: none;
  }
}
.hero-index .swiper-pagination {
  bottom: 32px;
}
.hero-index .swiper-pagination-bullet-active {
  background-color: var(--colorGreenDark);
}

.section-intro {
  background-image: url(../images/bg-intro.png);
  background-size: contain;
  background-position: center left;
  background-repeat: no-repeat;
  background-color: var(--colorGreen);
}
@media (max-width: 900px) {
  .section-intro {
    background-position: -200px center;
    background-size: cover;
  }
}
@media (max-width: 576px) {
  .section-intro {
    background-position: 0 0;
    background-size: contain;
    padding-top: 280px !important;
  }
}
.section-intro .caption {
  padding-left: 540px;
}
@media (max-width: 1023px) {
  .section-intro .caption {
    padding-left: 330px;
  }
}
@media (max-width: 767px) {
  .section-intro .caption {
    padding-left: 200px;
  }
}
@media (max-width: 576px) {
  .section-intro .caption {
    padding-left: 0;
  }
}

.well {
  border-radius: 0 0 128px 0;
}
@media (max-width: 639px) {
  .well {
    border-radius: 0 0 48px 0;
  }
}

.section-brand .swiper-wrapper {
  align-items: center;
}
.section-brand .swiper-wrapper .swiper-slide {
  text-align: center;
}
.section-brand .swiper-wrapper .swiper-slide img {
  width: auto;
  max-width: 100%;
  height: 70px;
  -o-object-fit: contain;
     object-fit: contain;
}
.section-brand .container-swiper {
  padding: 0 40px;
}

.img-border-radius {
  border-radius: 0 0 96px 0;
}
@media (max-width: 639px) {
  .img-border-radius {
    border-radius: 0 0 48px 0;
  }
}

.section-title {
  position: relative;
  overflow: hidden;
}
.section-title .banner {
  position: absolute;
  right: -4px;
  bottom: 0;
  height: 100%;
  z-index: 0;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: right;
     object-position: right;
}
.section-title .heading-h2 {
  position: relative;
  z-index: 1;
}

.section-map {
  position: relative;
  overflow: hidden;
  height: 450px;
}

.section-footer::after {
  content: "";
  position: absolute;
  z-index: 0;
  right: 0;
  top: 0;
  height: 100%;
  width: 50%;
  background-color: var(--colorGreen);
  border-radius: 96px 0 0 0;
}
@media (max-width: 1023px) {
  .section-footer::after {
    width: 65%;
  }
}
@media (max-width: 639px) {
  .section-footer::after {
    width: 100%;
    border-radius: 48px 48px 0 0;
  }
}
.section-footer .footer-social {
  display: flex;
  align-items: center;
}
.section-footer .footer-social a {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.2s ease-in-out;
  background-color: var(--colorGreenDark);
}
.section-footer .footer-social a img {
  height: 16px;
  width: auto;
}
.section-footer .footer-social a:hover {
  background-color: var(--colorPinkHover);
}

.social {
  border: 2px solid #fff;
  transition: 200ms ease-in-out;
}
.social svg path {
  transition: 200ms ease-in-out;
}

.social:hover {
  background-color: #fff;
}
.social:hover svg path {
  fill: black;
}

#menu {
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  height: 100vh;
  right: 0;
  top: 0;
  left: auto;
  position: fixed;
  width: 530px;
  will-change: right;
  right: -530px;
}
@media (max-width: 1023px) {
  #menu {
    width: 400px;
    right: -400px;
  }
}
@media (max-width: 767px) {
  #menu {
    width: 280px;
    right: -280px;
  }
}
#menu.menu-active {
  right: 0;
}
#menu .close {
  cursor: pointer;
  display: inline-flex;
  height: 20px;
  justify-content: center;
  position: absolute;
  right: 1.5rem;
  top: 1.5rem;
  width: 20px;
  z-index: 1;
  transition: 200ms ease-in-out;
}
#menu .cross {
  display: grid;
  height: 100%;
  place-items: center;
  position: absolute;
  width: 100%;
}
#menu .cross .bar {
  width: 100%;
  height: 2px;
  position: absolute;
  background-color: var(--colorWhite);
  border-radius: 10px;
  transform-origin: center center;
}
#menu .cross .bar:first-child {
  transform: rotate(-45deg);
}
#menu .cross .bar:last-child {
  transform: rotate(45deg);
}
#menu.menu-scroll .close {
  top: 1rem;
}
#menu .bg {
  width: 300px;
  height: 300px;
  position: absolute;
  z-index: 0;
  right: 0;
  top: auto;
  bottom: 0;
  opacity: 0.1;
  -o-object-fit: cover;
     object-fit: cover;
}

.menu-items {
  display: block;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1s ease, transform 1s ease;
}
.menu-items.active {
  opacity: 1;
  transform: translateY(0);
}
.menu-items.show {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1s ease-out, transform 1s ease-out;
}
.menu-items.show.appear {
  opacity: 1;
  transform: translateY(0);
}
.menu-items.show.appear.appear-1 {
  transition-delay: 0.2s;
}
.menu-items.show.appear.appear-2 {
  transition-delay: 0.4s;
}
.menu-items.show.appear.appear-3 {
  transition-delay: 0.6s;
}
.menu-items.show.appear.appear-4 {
  transition-delay: 0.8s;
}
.menu-items.show.appear.appear-5 {
  transition-delay: 1s;
}
.menu-items.show.appear.appear-6 {
  transition-delay: 1.2s;
}
@media (max-width: 767px) {
  .menu-items .text-large {
    font-size: 20px;
  }
}
.menu-items .nav-link {
  transition: 0.2s ease-in-out;
}
.menu-items .nav-link:hover {
  margin-right: 8px;
  color: var(--colorPrimary) !important;
}

.chevron {
  position: absolute;
  right: 8px;
  height: 12px;
}

.menu-social {
  display: flex;
  align-items: center;
}
.menu-social a {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.2s ease-in-out;
  background-color: var(--colorPinkHover);
}
.menu-social a img {
  height: 16px;
  width: auto;
}
.menu-social a:hover {
  background-color: var(--colorPinkHover);
}

.menu-mobile {
  display: flex;
  flex-direction: column;
}
/* Custom scrollbar for range input */
input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 16px;
  height: 16px;
  background: #6366f1;
  cursor: pointer;
  border-radius: 50%;
  border: none;
  margin-top: -5px;
}

input[type=range]::-webkit-slider-runnable-track {
  height: 6px;
  background: #d1d5db;
  border-radius: 3px;
}

input[type=range]:focus {
  outline: none;
}/*# sourceMappingURL=style.css.map */


/* Estilos para el zoom de imagen de producto */
#imageZoomPreviewContainer {
    display: none; /* Oculto por defecto */
    position: fixed; /* Se posicionará relativo al viewport */
    border: 1px solid #ccc; /* Borde sutil */
    background-color: #fff; /* Fondo blanco */
    padding: 8px; /* Espacio alrededor de la imagen */
    z-index: 10000; /* Asegura que esté por encima de otros elementos */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15); /* Sombra para dar profundidad */
    border-radius: 4px; /* Bordes redondeados */
    pointer-events: none; /* Evita que el preview interfiera con eventos del mouse en elementos debajo */
    transition: opacity 0.1s ease-in-out; /* Transición suave (opcional) */
}

#zoomedProductImage {
    display: block;
    max-width: 350px;  /* Ancho máximo de la imagen ampliada */
    max-height: 350px; /* Alto máximo de la imagen ampliada */
    width: auto;       /* Mantiene la proporción */
    height: auto;      /* Mantiene la proporción */
}

.product-thumbnail {
    cursor: zoom-in; /* Cambia el cursor al pasar sobre la miniatura */
  z-index: 1000;
}
.product-thumbnail:hover{
    transition: transform;
    right: 100px;
}

.img-table-product.product-thumbnail:hover {
  transform: scale(7);
}

@media (max-width: 767px) {
  .img-table-product.product-thumbnail:hover {
    transform: scale(4);
  }
}

/* Filtros desplegables */
.filter-content.collapsed {
  max-height: 0;
  opacity: 0;
  margin-top: 0 !important;
}

.filter-chevron-rotate {
  transform: rotate(180deg);
}

.filter-header:hover {
  color: #2fab5f;
}

