* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  padding-top: 100px;
  font-family: "Segoe UI", Arial, sans-serif;
  overflow-x: hidden;
  background-color: #ffffff;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0), rgba(255, 255, 255, 0)),
    url("../../assets/img/WallP4.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  background-attachment: fixed;
  width: 100%;
}

nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: white;
  border-bottom: 1px solid #eeeeee;
  z-index: 3000;
  margin: 0;
  padding: 0;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
  height: 80px;
}

.nav-logo {
  height: 75px;
  width: auto;
  display: block;
}

.nav-links {
  display: flex;
  height: 100%;
}

.nav-item,
.dropdown > .nav-item {
  text-decoration: none;
  color: #555;
  font-size: 18px;
  font-weight: 500;
  padding: 0 65px;
  display: flex;
  align-items: center;
  position: relative;
  height: 100%;
  transition: color 0.3s ease;
}

.nav-item::before,
.dropdown > .nav-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 1px;
  right: 1px;
  bottom: 0;
  background-color: #f9f9fa;
  opacity: 0;
  transition: opacity 0.2s ease;
  pointer-events: none;
  z-index: -1;
}

.nav-item::after,
.dropdown > .nav-item::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 1px;
  right: 1px;
  height: 4px;
  background-color: #f78e20;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.nav-item:hover,
.nav-item.active,
.dropdown > .nav-item:hover,
.dropdown > .nav-item.active {
  color: #f78e20;
}

.nav-item:hover::before,
.nav-item.active::before,
.dropdown:hover > .nav-item::before,
.dropdown > .nav-item.active::before {
  opacity: 1;
}

.nav-item:hover::after,
.nav-item.active::after,
.dropdown:hover > .nav-item::after,
.dropdown > .nav-item.active::after {
  opacity: 1;
}

.dropdown {
  position: relative;
  display: flex;
  align-items: center;
  height: 100%;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background-color: #ffffff;
  list-style: none;
  padding: 0;
  margin: 0;
  z-index: 4000;
  border: 1px solid #eee;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.dropdown-menu li a {
  color: #444;
  padding: 12px 20px;
  text-decoration: none;
  display: block;
  font-size: 14px;
  text-align: left;
  transition:
    background 0.3s,
    color 0.3s;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.dropdown:hover .dropdown-menu {
  display: block;
}

.dropdown-menu li {
  border-bottom: 1px solid #f5f5f5;
}

.dropdown-menu li:last-child {
  border-bottom: none;
}

.dropdown-menu li a:hover {
  background-color: #f9f9f9;
  color: #f78e20;
}

.dropdown-submenu {
  position: relative;
}

.dropdown-submenu > a::after {
  content: "▸";
  margin-left: 8px;
  font-size: 12px;
  color: #999;
}

.dropdown-submenu-menu {
  display: none;
  position: absolute;
  top: 0;
  left: 100%;
  background-color: #ffffff;
  width: 220px;
  list-style: none;
  padding: 0;
  margin: 0;
  z-index: 5000;
  border: 1px solid #eee;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.dropdown-submenu-menu li a {
  color: #444;
  padding: 10px 16px;
  text-decoration: none;
  display: block;
  font-size: 13px;
  white-space: nowrap;
  transition:
    background 0.2s,
    color 0.2s;
}

.dropdown-submenu-menu li a:hover {
  background-color: #f9f9f9;
  color: #f78e20;
}

.dropdown-submenu:hover .dropdown-submenu-menu {
  display: block;
}

.container {
  max-width: 1100px;
  margin: 40px auto;
  padding: 0 20px;
}

.section-block {
  color: #ffffff;
  margin-bottom: 50px;
}

.section-title {
  color: #ffffff;
  font-size: 24px;
  font-weight: 500;
  position: relative;
  padding-bottom: 12px;
  margin-bottom: 25px;
  border-bottom: 1px solid #eee;
  text-transform: uppercase;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 60px;
  height: 4px;
  background-color: #f78e20;
}

.gray-box {
  background-color: #ffffff;
  padding: 15px 40px;
  border-radius: 4px;
  border: 1px solid #eee;
  text-align: justify;
  line-height: 1.8;
  color: #000000;
  margin-bottom: 30px;
}

.content-text {
  line-height: 1.8;
  color: #ffffff;
  font-size: 16px;
  text-align: justify;
}

.content-text-aviso {
  line-height: 1.8;
  color: #000000;
  font-size: 16px;
  text-align: justify;
}

.content-text p {
  margin: 0 0 16px 0;
}

.content-text a {
  color: #f78e20;
  text-decoration: none;
  font-weight: 500;
}

.content-text a:hover {
  text-decoration: underline;
}

.grid-info {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 50px;
}

.values-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 15px;
  list-style: none;
  padding: 0;
}

.values-list li {
  background: #ffffff;
  padding: 15px 20px;
  border: 1px solid #eee;
  border-left: 5px solid #27a9e1;
  font-weight: 500;
  color: #444;
}

.hero-slider {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto 40px auto;
  overflow: hidden;
  position: relative;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.slider-container {
  position: relative;
  width: 100%;
  height: 450px;
}

.slides {
  display: flex;
  transition: transform 0.6s ease-in-out;
  height: 100%;
}

.slides img {
  width: 100%;
  flex-shrink: 0;
  object-fit: contain;
  height: 100%;
}

.arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.9);
  color: #333;
  border: none;
  font-size: 1.2rem;
  width: 45px;
  height: 45px;
  cursor: pointer;
  z-index: 10;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.arrow:hover {
  background: #041c36;
  color: white;
}

.prev {
  left: 20px;
}
.next {
  right: 20px;
}

.social-links {
  margin-top: 25px;
}

.social-links .section-title {
  font-size: 20px;
  margin-top: 30px;
  padding-bottom: 10px;
}

.social-icons {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 20px;
  margin-top: 15px;
  flex-wrap: nowrap;
  padding-left: 0;
}

.social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.social-icons svg,
.social-icons img {
  width: 40px !important;
  height: 40px !important;
  display: block;
  object-fit: contain;
  transition:
    transform 0.2s ease,
    opacity 0.2s ease;
}

.social-icons a[href*="facebook"] svg {
  width: 48px !important;
  height: 48px !important;
}

.tiktok-icon-white {
  filter: invert(100%) brightness(3);
  width: 40px !important;
  height: 40px !important;
}

.social-icons a:hover {
  transform: scale(1.1);
  opacity: 0.9;
}

.main-footer {
  background-color: #041c36;
  color: #ffffff;
  padding: 15px 0 15px 0;
  margin-top: 30px;
  font-size: 14px;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr 0.5fr;
  gap: 50px;
  padding: 0 20px;
  align-items: start;
}

.footer-title {
  color: #ffffff;
  font-size: 18px;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 8px;
  margin-bottom: 15px;
  border-bottom: 1px solid #ffffff;
}

.footer-logo {
  height: 80px;
  width: auto;
  margin-bottom: 10px;
}

#distributor-column .footer-logo {
  height: 120px;
  width: auto;
}

.footer-description {
  line-height: 1.4;
  color: #ffffff;
  text-align: justify;
}

.contact-info a {
  color: #ffffff !important;
  text-decoration: none;
}

.contact-info a:hover {
  text-decoration: underline;
  color: #27a9e1 !important;
}

.cert-icon {
  height: 60px;
  width: auto;
  opacity: 0.8;
}

.footer-bottom {
  margin-top: 20px;
  padding-top: 15px;
  border-top: 1px solid #ffffff;
  text-align: center;
  color: #ffffff;
}

.footer-bottom a {
  color: #ffffff !important;
  text-decoration: none;
}

.footer-bottom a:hover {
  text-decoration: underline;
  opacity: 0.8;
}

.typing-text::after {
  content: "|";
  margin-left: 4px;
  animation: blink 1s infinite;
  color: #f78e20;
}

@keyframes blink {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
}

.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 40px;
  right: 40px;
  background-color: #25d366;
  color: #fff;
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
  z-index: 5000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.whatsapp-icon {
  width: 35px;
  height: 35px;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  background-color: #20ba5a;
}

.tooltip-wa {
  position: absolute;
  right: 70px;
  background-color: #333;
  color: white;
  padding: 5px 12px;
  border-radius: 5px;
  font-size: 14px;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s;
}

.whatsapp-float:hover .tooltip-wa {
  opacity: 1;
  visibility: visible;
}

.empresa-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: start;
  margin-top: 30px;
}

.progress-bar-mini {
  width: 100%;
  height: 12px;
  background-color: #f0f0f0;
  margin-bottom: 20px;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  background-color: #f78e20;
  width: 0;
}

.sector-item:nth-child(1) .progress-fill {
  animation: carga50 1.5s ease-out forwards;
}
.sector-item:nth-child(2) .progress-fill {
  animation: carga25 1.5s ease-out forwards;
}
.sector-item:nth-child(3) .progress-fill {
  animation: carga20 1.5s ease-out forwards;
}
.sector-item:nth-child(4) .progress-fill {
  animation: carga5 1.5s ease-out forwards;
}

@keyframes carga50 {
  from {
    width: 0;
  }
  to {
    width: 50%;
  }
}
@keyframes carga25 {
  from {
    width: 0;
  }
  to {
    width: 25%;
  }
}
@keyframes carga20 {
  from {
    width: 0;
  }
  to {
    width: 20%;
  }
}
@keyframes carga5 {
  from {
    width: 0;
  }
  to {
    width: 5%;
  }
}

.catalog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 20px;
  padding: 20px;
  max-width: 1100px;
  margin: 0 auto 50px auto;
}

.product-card {
  border: 1px solid #ddd;
  background: #fff;
  cursor: pointer;
  text-align: center;
  transition: 0.3s;
  border-radius: 5px;
  overflow: hidden;
  padding: 10px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: scale(1.03);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.product-card img {
  width: 100%;
  height: 140px;
  object-fit: contain;
  padding: 0;
  margin: 0;
  display: block;
}

.product-info-label {
  padding: 10px;
  background: #f4f4f4;
  border-top: 1px solid #ddd;
  margin-top: auto;
}

.product-info-label h3 {
  font-size: 0.9rem;
  margin: 5px 0;
  color: #333;
}
.product-info-label p {
  font-size: 0.75rem;
  color: #666;
  margin: 0;
}

.modal-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  z-index: 9999;
  justify-content: center;
  align-items: center;
}

.modal-content-small {
  background: white;
  width: 90%;
  max-width: 600px;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

#modal-img {
  width: 100%;
  max-height: 400px;
  object-fit: contain;
  display: block;
  margin: 0 auto;
  padding: 20px;
  box-sizing: border-box;
}

.modal-footer-info {
  padding: 20px;
  text-align: center;
  border-top: 1px solid #eee;
}

.modal-nav-tools {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 25px;
  margin-top: 15px;
}

.nav-btn {
  background: #0a498c;
  color: white;
  border: none;
  padding: 10px 18px;
  border-radius: 20px;
  cursor: pointer;
  font-size: 1rem;
}

.close-btn {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(0, 0, 0, 0.1);
  border: none;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  cursor: pointer;
  font-weight: bold;
}

.modal-title {
  font-size: 1.2rem;
  margin: 0;
}
.modal-description {
  color: #777;
  margin: 10px 0;
}

.solutions-grid {
  color: #ffffff;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 15px;
  justify-items: center;
}

.solutions-grid img {
  transition:
    transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1),
    box-shadow 0.3s ease;
  will-change: transform;
}

.solutions-grid img:hover {
  transform: scale(1.08);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2) !important;
  z-index: 2;
  position: relative;
}

.solutions-grid > div {
  transition: transform 0.3s ease;
}
.solutions-grid > div:hover {
  transform: translateY(-4px);
}

.filter-section {
  width: 100%;
  display: flex;
  margin: 40px 0;
}
.filter-container-decor {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding: 0 20px;
  list-style: none;
}
.filter-item {
  padding: 10px 22px;
  background-color: #f8f8f8;
  color: #777;
  border-radius: 2px;
  font-size: 14px;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  cursor: default;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  position: relative;
}
.filter-item.active::before {
  content: "";
  position: absolute;
  left: 12px;
  top: 25%;
  height: 50%;
  width: 2px;
  background-color: rgba(255, 255, 255, 0.8);
}
.filter-item:not(.active):hover {
  background-color: #f0f0f0;
  color: #333;
}

.filter-container {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 30px;
  padding: 0 20px;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}
.filter-btn {
  padding: 10px 24px;
  border: 1px solid #ffffff;
  background-color: #f9f9f9;
  color: #000000;
  font-size: 14px;
  font-weight: 500;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.filter-btn:hover {
  background-color: #f0f0f0;
  border-color: #ccc;
}
.filter-btn.active {
  background-color: #f78e20;
  color: white;
  border-color: #f78e20;
}

.solutions-grid--4cols {
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 20px !important;
  max-width: 1000px;
  margin: 40px auto;
  padding: 0 20px;
}
.solutions-grid--4cols img {
  width: 100%;
  height: auto;
  max-width: 100%;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}
.solutions-grid--4cols img:hover {
  transform: scale(1.05);
}
.solutions-grid--4cols h3 {
  margin-top: 12px;
  font-size: 15px;
  color: #ffffff;
  min-height: 40px;
}

.seccion-blanca {
  background-color: rgba(255, 255, 255, 0.95);
  min-height: 100vh;
  padding: 20px;
}

.catalog-grid .product-card {
  height: 100% !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: space-between !important;
}

.catalog-grid .product-card img {
  flex-shrink: 0;
  width: 100%;
  height: 140px !important;
  object-fit: contain;
  padding: 10px;
  box-sizing: border-box;
}

.catalog-grid .product-info-label {
  margin-top: auto !important;
  min-height: 80px !important;
  height: auto !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;
  align-items: center !important;
  padding: 10px 8px !important;
  background: #f4f4f4;
  border-top: 1px solid #ddd;
  border-radius: 0 0 5px 5px;
  text-align: center !important;
  box-sizing: border-box;
  gap: 4px;
}

.catalog-grid .product-info-label h3 {
  font-size: 0.9rem !important;
  margin: 0 !important;
  font-weight: 600;
  color: #333;
  line-height: 1.3;
  hyphens: none !important;
  -webkit-hyphens: none !important;
  -ms-hyphens: none !important;
  overflow-wrap: break-word;
  word-wrap: break-word;
  word-break: break-word;
  white-space: normal !important;
  text-align: center !important;
  width: 100%;
  display: block !important;
}

.catalog-grid .product-info-label p {
  font-size: 0.75rem !important;
  margin: 0 !important;
  color: #666;
  line-height: 1.3;
  hyphens: none !important;
  -webkit-hyphens: none !important;
  -ms-hyphens: none !important;
  overflow-wrap: break-word;
  word-wrap: break-word;
  word-break: break-word;
  white-space: normal !important;
  text-align: center !important;
  width: 100%;
  display: block !important;
}

@media (max-width: 768px) {
  .catalog-grid .product-card img {
    height: 120px !important;
  }
  .catalog-grid .product-info-label {
    min-height: 70px !important;
    padding: 8px 6px !important;
    gap: 3px;
  }
  .catalog-grid .product-info-label h3 {
    font-size: 0.85rem !important;
  }
  .catalog-grid .product-info-label p {
    font-size: 0.7rem !important;
  }
}

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 25px;
  height: 18px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 3500;
  position: relative;
}

.hamburger-line {
  width: 100%;
  height: 2.5px;
  background-color: #041c36;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.hamburger.active .hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.hamburger.active .hamburger-line:nth-child(2) {
  opacity: 0;
}
.hamburger.active .hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.menu-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: 2999;
}
.menu-overlay.active {
  display: block;
}

@media (max-width: 768px) {
  body {
    padding-top: 75px !important;
  }

  nav {
    height: 60px !important;
    min-height: 55px !important;
  }

  .nav-container {
    height: 55px !important;
    padding: 0 15px !important;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: row;
    gap: 0;
  }

  .nav-logo {
    height: 40px !important;
    margin: 0;
    display: block;
    order: 1;
  }

  .hamburger {
    display: flex !important;
    order: 2;
    margin-left: auto;
    position: static !important;
    transform: none !important;
    top: auto !important;
    right: auto !important;
  }

  .nav-links {
    position: fixed;
    left: -100%;
    width: 100%;
    background: #fff;
    flex-direction: column;
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
    align-items: stretch;
    padding: 0;
    margin: 0;
    gap: 0;
    scrollbar-width: none;
    border-top: 1px solid #eee;
    transition: left 0.3s ease;
    z-index: 3000;
  }
  .nav-links.active {
    left: 0;
  }

  .nav-links .nav-item,
  .nav-links .dropdown > .nav-item {
    width: 100%;
    padding: 10px 20px !important;
    margin: 0 !important;
    font-size: 18px;
    display: block;
    text-align: center;
    cursor: pointer;
    border-bottom: 1px solid #f0f0f0;
    line-height: 1.2;
    height: auto;
    box-sizing: border-box;
  }

  .nav-links .dropdown {
    width: 100%;
    display: flex;
    flex-direction: column;
  }

  .nav-links .dropdown-menu {
    position: static !important;
    width: 100% !important;
    background: #f5f6f8;
    display: block !important;
    flex-direction: column;
    padding: 0;
    margin: 0;
    border: none;
    box-shadow: none;
    left: auto !important;
    top: auto !important;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
  }
  .nav-links .dropdown.active .dropdown-menu {
    max-height: 2500px;
    overflow: visible;
  }

  .nav-links .dropdown-submenu {
    width: 100%;
    position: static !important;
  }
  .nav-links .dropdown-submenu-menu {
    position: static !important;
    width: 100% !important;
    background: #eef1f4;
    display: block !important;
    flex-direction: column;
    padding: 0;
    margin: 0;
    border: none;
    box-shadow: none;
    left: auto !important;
    top: auto !important;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
  }
  .nav-links .dropdown-submenu.active .dropdown-submenu-menu {
    max-height: 2000px;
    overflow: visible;
  }

  .nav-links .dropdown-menu li,
  .nav-links .dropdown-submenu-menu li {
    width: 100%;
    border-bottom: 1px solid #e5e7eb;
    margin: 0;
    padding: 0;
  }
  .nav-links .dropdown-menu li a,
  .nav-links .dropdown-submenu-menu li a {
    padding: 9px 20px !important;
    margin: 0 !important;
    text-align: center;
    display: block;
    color: #444;
    text-decoration: none;
    font-size: 16px;
    line-height: 1.2;
    white-space: normal !important;
    text-overflow: clip;
    overflow: visible;
  }
  .nav-links .dropdown-submenu-menu li a {
    font-size: 15px;
    padding-left: 35px !important;
    padding-right: 35px !important;
  }

  .nav-links .dropdown > .nav-item::after {
    content: " ▼";
    font-size: 11px;
    margin-left: 6px;
  }
  .nav-links .dropdown.active > .nav-item::after {
    content: " ▲";
  }
  .nav-links .dropdown-submenu > a::after {
    content: " ▼";
    font-size: 10px;
    margin-left: 6px;
  }
  .nav-links .dropdown-submenu.active > a::after {
    content: " ▲";
  }
  body.menu-open {
    overflow: hidden;
  }

  .hero-slider {
    margin-top: 0px !important;
    margin-bottom: 15px !important;
    width: 100% !important;
    max-width: 100% !important;
    border-radius: 0 !important;
  }
  .slider-container {
    height: 240px;
  }
  .arrow {
    width: 35px;
    height: 35px;
    font-size: 1rem;
  }
  .prev {
    left: 10px;
  }
  .next {
    right: 10px;
  }

  .container {
    margin-top: 10px !important;
    margin-bottom: 30px !important;
    padding: 0 15px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    max-width: 100% !important;
    box-sizing: border-box;
  }
  .section-block {
    margin-bottom: 30px !important;
  }
  .section-title {
    font-size: 20px;
  }
  .gray-box {
    padding: 15px !important;
    font-size: 14px;
    margin-bottom: 20px !important;
  }
  .content-text {
    font-size: 14px;
  }

  .grid-info,
  .footer-container {
    grid-template-columns: 1fr !important;
    text-align: left !important;
    gap: 30px;
  }
  .footer-title::after {
    left: 0 !important;
    transform: none !important;
  }
  .footer-description,
  .contact-info {
    text-align: left !important;
  }
  #distributor-column {
    align-items: flex-start !important;
    text-align: left !important;
  }

  .whatsapp-float {
    width: 50px;
    height: 50px;
    bottom: 20px;
    right: 20px;
  }
  .whatsapp-icon {
    width: 28px;
    height: 28px;
  }
  .tooltip-wa {
    display: none;
  }
}

@media (max-width: 480px) {
  nav {
    height: 65px !important;
    min-height: 60px !important;
  }
  .nav-container {
    height: 60px !important;
    padding: 0 12px !important;
  }
  .nav-logo {
    height: 42px !important;
  }
  body {
    padding-top: 65px !important;
  }

  .nav-links {
    top: 60px !important;
    height: calc(100vh - 60px) !important;
  }

  .slider-container {
    height: 200px;
  }
  .solutions-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  .catalog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .filter-btn {
    padding: 8px 14px;
    font-size: 12px;
  }
  .nav-links .nav-item,
  .nav-links .dropdown > .nav-item {
    padding: 12px 15px;
    font-size: 15px;
  }
  .nav-links .dropdown-menu li a {
    padding: 10px 25px;
    font-size: 13px;
  }
  .nav-links .dropdown-submenu-menu li a {
    padding: 8px 35px;
    font-size: 12px;
  }
}

@media (min-width: 769px) and (max-width: 1366px) {
  body {
    padding-top: 80px !important;
  }
  nav {
    height: 65px !important;
    min-height: 60px !important;
  }
  .nav-container {
    height: 60px !important;
    padding: 0 20px !important;
  }
  .nav-logo {
    height: 45px !important;
    margin: 0;
    order: 1;
  }
  .hero-slider {
    margin-top: 0 !important;
    margin-bottom: 20px !important;
  }

  .hamburger {
    display: flex !important;
    position: static !important;
    transform: none !important;
    top: auto !important;
    right: auto !important;
    order: 2;
    margin-left: auto;
  }

  .nav-links:not(.active) {
    display: none !important;
  }

  .nav-links.active {
    display: flex !important;
    position: fixed;
    left: 0;
    width: 100%;
    background: #fff;
    flex-direction: column;
    align-items: stretch;
    padding: 0;
    margin: 0;
    gap: 0;
    overflow-y: auto;
    z-index: 3000;
    border-top: 1px solid #eee;
  }

  .nav-links .nav-item,
  .nav-links .dropdown > .nav-item {
    width: 100%;
    padding: 11px 20px !important;
    margin: 0 !important;
    font-size: 19px;
    display: block;
    text-align: center;
    cursor: pointer;
    border-bottom: 1px solid #f0f0f0;
    line-height: 1.2;
    height: auto;
    box-sizing: border-box;
  }

  .nav-links .dropdown {
    width: 100%;
    display: flex;
    flex-direction: column;
  }

  .nav-links .dropdown-menu {
    position: static !important;
    width: 100% !important;
    background: #ffffff;
    display: block !important;
    flex-direction: column;
    padding: 0;
    margin: 0;
    border: none;
    box-shadow: none;
    left: auto !important;
    top: auto !important;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
  }
  .nav-links .dropdown.active .dropdown-menu {
    max-height: 2500px;
    overflow: visible;
  }

  .nav-links .dropdown-submenu {
    width: 100%;
    position: static !important;
  }
  .nav-links .dropdown-submenu-menu {
    position: static !important;
    width: 100% !important;
    background: #eef1f4;
    display: block !important;
    flex-direction: column;
    padding: 0;
    margin: 0;
    border: none;
    box-shadow: none;
    left: auto !important;
    top: auto !important;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
  }
  .nav-links .dropdown-submenu.active .dropdown-submenu-menu {
    max-height: 2000px;
    overflow: visible;
  }

  .nav-links .dropdown-menu li,
  .nav-links .dropdown-submenu-menu li {
    width: 100%;
    border-bottom: 1px solid #e5e7eb;
    margin: 0;
    padding: 0;
  }
  .nav-links .dropdown-menu li a,
  .nav-links .dropdown-submenu-menu li a {
    padding: 10px 20px !important;
    margin: 0 !important;
    text-align: center;
    display: block;
    color: #444;
    text-decoration: none;
    font-size: 17px;
    line-height: 1.2;
    white-space: normal !important;
    text-overflow: clip;
    overflow: visible;
  }
  .nav-links .dropdown-submenu-menu li a {
    font-size: 16px;
    padding-left: 35px !important;
    padding-right: 35px !important;
  }

  .nav-links .dropdown > .nav-item::after {
    content: " ▼";
    font-size: 12px;
    margin-left: 6px;
  }
  .nav-links .dropdown.active > .nav-item::after {
    content: " ▲";
  }
  .nav-links .dropdown-submenu > a::after {
    content: " ▼";
    font-size: 11px;
    margin-left: 6px;
  }
  .nav-links .dropdown-submenu.active > a::after {
    content: " ▲";
  }
  body.menu-open {
    overflow: hidden;
  }
  .hero-slider {
    margin-top: 0 !important;
    margin-bottom: 20px !important;
  }
}

@media (max-width: 768px) {
  .empresa-grid {
    grid-template-columns: 1fr !important;
    gap: 30px !important;
  }
  .solutions-grid--4cols {
    color: #ffffff;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 15px !important;
    justify-items: center;
    padding: 0 5px !important;
  }
  .solutions-grid--4cols > div {
    background: transparent !important;
    box-shadow: none !important;
    padding: 0 !important;
    margin: 0 !important;
  }
  .solutions-grid--4cols > div a {
    display: block;
    width: 100%;
    margin-bottom: 10px;
  }
  .solutions-grid--4cols > div a img {
    width: 100% !important;
    max-width: 100% !important;
    height: auto;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  }
  .solutions-grid--4cols > div h3 {
    color: #ffffff !important;
    margin: 0 !important;
    margin-top: 8px !important;
    font-weight: 600;
    font-size: 14px;
    text-align: center;
  }
}

@media (max-width: 1024px) {
  .product-info-label h3 {
    font-size: 0.85rem !important;
    margin: 3px 0 !important;
  }
  .product-info-label p {
    font-size: 0.7rem !important;
  }
}

@media (max-width: 768px) {
  .product-info-label h3 {
    font-size: 0.8rem !important;
    line-height: 1.2;
  }
  .product-info-label p {
    font-size: 0.65rem !important;
    line-height: 1.2;
  }
}

@media (max-width: 480px) {
  .product-card {
    padding: 8px !important;
  }
  .product-info-label {
    padding: 8px !important;
  }
}

@media (max-width: 1366px) {
  .nav-links {
    top: 50% !important;
    transform: translateY(-50%) !important;
    height: auto !important;
    max-height: 90vh !important;
    margin: 5vh 0 !important;

    left: 50% !important;
    transform: translate(-50%, -50%) !important;
    width: 90% !important;
    max-width: 500px !important;

    border-radius: 12px !important;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15) !important;
    border: 1px solid #eee !important;

    transition:
      left 0.3s ease,
      opacity 0.3s ease,
      transform 0.3s ease !important;
    opacity: 0;
    pointer-events: none;
  }

  .nav-links.active {
    left: 50% !important;
    opacity: 1;
    pointer-events: auto;
  }

  .menu-overlay.active {
    animation: fadeIn 0.3s ease;
  }

  @keyframes fadeIn {
    from {
      opacity: 0;
    }
    to {
      opacity: 1;
    }
  }

  .nav-links .dropdown-menu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease !important;
  }
  .nav-links .dropdown.active .dropdown-menu {
    max-height: 2000px;
  }

  .nav-links .dropdown-submenu-menu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease !important;
  }
  .nav-links .dropdown-submenu.active .dropdown-submenu-menu {
    max-height: 1500px;
  }

  .nav-links .dropdown-menu,
  .nav-links .dropdown-submenu-menu {
    transform: translateY(-10px);
    opacity: 0;
    transition:
      max-height 0.4s ease,
      transform 0.3s ease,
      opacity 0.3s ease !important;
  }
  .nav-links .dropdown.active .dropdown-menu,
  .nav-links .dropdown-submenu.active .dropdown-submenu-menu {
    transform: translateY(0);
    opacity: 1;
  }
}

@media only screen and (max-width: 412px),
  only screen and (max-device-width: 412px) {
  .hamburger {
    display: flex !important;
  }

  .nav-links {
    display: none !important;
  }

  .nav-links.active {
    display: flex !important;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #fff;
    flex-direction: column;
    overflow-y: auto;
    z-index: 9999;
  }

  .nav-links .nav-item,
  .nav-links .dropdown > .nav-item {
    display: block !important;
    width: 100% !important;
    padding: 15px 20px !important;
    text-align: center !important;
    border-bottom: 1px solid #eee;
    font-size: 18px !important;
    height: auto !important;
  }

  .nav-links .dropdown-menu,
  .nav-links .dropdown-submenu-menu {
    position: static !important;
    width: 100% !important;
    display: none !important;
    box-shadow: none !important;
    border: none !important;
  }

  .nav-links .dropdown.active .dropdown-menu,
  .nav-links .dropdown-submenu.active .dropdown-submenu-menu {
    display: block !important;
  }
}
