/* ===== Responsive / media queries ===== */
/* Orden: mobile.css completo, luego @media extraídos de módulos */

/* --- mobile.css --- */
/**
 * METRINDUST — Optimización móvil global (complementa index + secciones)
 */

html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  overflow-x: clip;
}

img,
video,
svg {
  max-width: 100%;
  height: auto;
}

/* Enlace «saltar al contenido» */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 1100;
  padding: 0.75rem 1.25rem;
  background: #113373;
  color: #ffffff;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 0.875rem;
  text-decoration: none;
  border-radius: 0 0 8px 0;
}

.skip-link:focus {
  left: 0;
  outline: 2px solid #2672ff;
  outline-offset: 2px;
}

/* Áreas táctiles mínimas (~44px) */
@media (max-width: 991.98px) {
  .navbar-toggler {
    min-width: 44px;
    min-height: 44px;
    padding: 0.5rem;
  }

  .main-nav .nav-link,
  .main-nav .nav-submenu__link {
    min-height: 44px;
    display: flex;
    align-items: center;
    padding-top: 0.65rem !important;
    padding-bottom: 0.65rem !important;
  }

  .btn-zone,
  .btn-quote,
  .lab-card__btn,
  .spec-card__cta,
  .cert-home__btn,
  .prod-featured__btn,
  .metrindust-footer-call-btn,
  .metrindust-footer-newsletter-btn {
    min-height: 44px;
  }

  .spec-home__arrow,
  .labs-home__arrow {
    width: 44px;
    height: 44px;
  }

  .metrindust-footer-social a {
    width: 44px;
    height: 44px;
  }
}

/* Top bar compacta en móvil: contacto en fila + botón alineado */
@media (max-width: 767.98px) {
  .top-bar-item__text--full {
    display: none;
  }

  .top-bar-item__text--short {
    display: inline;
  }

  .top-bar-inner {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem 0.75rem;
    padding: 0.4rem 0;
    min-height: auto;
  }

  .top-bar-contact {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    flex: 1 1 auto;
    width: auto;
    min-width: 0;
    gap: 0.35rem 0.85rem;
  }

  .top-bar-contact .top-bar-item + .top-bar-item {
    border-left: none;
    padding-left: 0;
  }

  .top-bar-item {
    font-size: 0.75rem;
    gap: 0.35rem;
    max-width: 100%;
  }

  .top-bar-item .bi {
    font-size: 0.85rem;
  }

  .top-bar-item__text--short,
  .top-bar-item span:not([class]) {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .btn-zone {
    flex-shrink: 0;
    width: auto;
    font-size: 0.75rem;
    padding: 0.35rem 0.85rem;
    line-height: 1.3;
  }
}

@media (min-width: 768px) {
  .top-bar-item__text--short {
    display: none;
  }
}

@media (max-width: 575.98px) {
  .brand-logo {
    height: 44px;
    width: auto;
  }
}

/* Pantallas muy estrechas: botón en segunda fila, compacto y centrado */
@media (max-width: 399.98px) {
  .top-bar-inner {
    justify-content: center;
    row-gap: 0.4rem;
  }

  .top-bar-contact {
    flex: 1 1 100%;
    justify-content: center;
    gap: 0.5rem 1rem;
  }

  .btn-zone {
    flex: 0 0 auto;
    margin-left: auto;
    margin-right: auto;
  }
}

.page-internal .page-hero__title {
  font-size: clamp(1.75rem, 6vw, 2.5rem);
}

/* Hero: espacio para badge INACAL + FAB */
@media (max-width: 991.98px) {
  .hero-content {
    padding-bottom: clamp(6.5rem, 18vw, 8.5rem);
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .hero-badge {
    max-width: min(220px, 55vw);
  }

  .hero-badge-img {
    max-height: 64px;
  }
}

@media (max-width: 575.98px) {
  .hero-content {
    padding-top: clamp(7rem, 20vw, 8.5rem);
    padding-bottom: 7rem;
  }

  .hero-title br {
    display: none;
  }

  .hero-badge {
    left: 0.75rem;
    bottom: max(0.75rem, env(safe-area-inset-bottom, 0px));
  }
}

/* Nav fijo: compensar altura al hacer scroll */
@media (max-width: 991.98px) {
  .main-nav.main-nav--fixed {
    padding-top: max(0.35rem, env(safe-area-inset-top, 0px));
  }
}

/* Laboratorios */
@media (max-width: 991.98px) {
  .labs-home__slider {
    padding-left: 0;
    padding-right: 0;
  }
}

@media (max-width: 767.98px) {
  .labs-home__carousel {
    gap: 8px;
  }
}

@media (max-width: 575.98px) {
  .labs-home__grid {
    gap: 24px;
  }

  .lab-card__btn {
    width: 100%;
    max-width: 200px;
  }
}

/* Servicios: flechas dentro del área táctil */
@media (max-width: 767.98px) {
  .spec-home__carousel {
    gap: 8px;
  }

  .spec-card__inner {
    min-height: 360px;
  }

  .spec-home__slider .owl-item.center .spec-card__inner {
    min-height: 400px;
  }
}

@media (max-width: 575.98px) {
  .prod-featured__grid {
    gap: 20px;
  }

  .prod-cat {
    grid-template-columns: 1fr;
    min-height: 0;
    padding: 16px;
  }

  .prod-cat__media {
    order: -1;
    justify-content: center;
  }
}

/* Certificado */
@media (max-width: 575.98px) {
  .cert-home__title {
    font-size: 1.5rem;
  }

  .cert-home__figure {
    width: 100%;
  }
}

/* Clientes */
@media (max-width: 575.98px) {
  .clients-partners {
    margin-top: 40px;
  }

  .clients-logos-grid {
    border-radius: 16px;
    padding: 22px 16px;
  }

  .clients-logos-grid:not(.owl-carousel) {
    gap: 14px 16px;
  }
}

/* FAB: no tapar contenido ni chocar con badge */
@media (max-width: 575.98px) {
  .fab-corner {
    right: max(1rem, env(safe-area-inset-right, 0px));
    bottom: max(1rem, env(safe-area-inset-bottom, 0px));
    gap: 0.5rem;
  }

  .whatsapp-float {
    width: 52px;
    height: 52px;
    font-size: 1.65rem;
  }

  .gdl-quote-float {
    width: 48px;
    height: 48px;
    font-size: 1.15rem;
  }

  .fab-scroll-top {
    width: 44px;
    height: 44px;
  }

  main {
    padding-bottom: env(safe-area-inset-bottom, 0px);
  }
}

/* Tap highlight y doble zoom en inputs iOS */
@media (hover: none) and (pointer: coarse) {
  a,
  button,
  .btn,
  .lab-card,
  .prod-cat {
    -webkit-tap-highlight-color: rgba(38, 114, 255, 0.15);
  }

  input,
  select,
  textarea {
    font-size: 16px;
  }
}

@media (max-width: 767.98px) and (prefers-reduced-motion: no-preference) {
  .whatsapp-float {
    animation-duration: 2.4s;
  }
}


/* --- Media queries de componentes y páginas --- */

/* from about.css */
@media (max-width: 991.98px) {
  .about-home {
    padding: 64px 0 72px;
  }

  .about-home__intro {
    margin-bottom: 48px;
  }

  .about-home__content {
    padding-top: 1.5rem;
  }

  .about-home__stats {
    max-width: 100%;
  }
}

/* from about.css */
@media (max-width: 767.98px) {
  .about-home {
    padding: 48px 0 56px;
  }

  .about-home__intro {
    margin-bottom: 40px;
  }

  .about-home__stats:not(.about-home__stats--plain):not(.about-page__intro-stats) {
    grid-template-columns: 1fr;
    max-width: 200px;
    margin-left: auto;
    margin-right: auto;
  }

  .about-home__stats--plain {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    max-width: none;
    margin-left: 0;
    margin-right: 0;
  }

  .about-home__certs-title {
    margin-bottom: 1.5rem;
  }

  .cert-card__plate:not(img) {
    min-height: 88px;
    padding: 0.75rem;
  }

  .cert-card__legend {
    letter-spacing: 0.3em;
    font-size: 0.6875rem;
  }
}

/* from about.css */
@media (max-width: 575.98px) {
  .about-home__stats--plain {
    gap: 0.5rem 0.75rem;
  }

  .about-home__stats--plain .about-home__stat-value {
    font-size: clamp(1.625rem, 7vw, 2.25rem);
  }

  .about-home__stats--plain .about-home__stat-label {
    max-width: none;
    font-size: 0.6875rem;
    line-height: 1.25;
  }
}

/* from about.css */
@media (min-width: 1200px) {
  .about-home__content {
    padding-left: 1.5rem;
  }
}

/* from page-internal.css */
@media (max-width: 991.98px) {
  .page-intro {
    padding: 48px 0 36px;
  }
}

/* from page-internal.css */
@media (max-width: 767.98px) {
  .page-cta--contrast .page-cta__card {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }

  .page-cta--contrast .page-cta__content {
    max-width: none;
    text-align: center;
  }

  .page-cta--contrast .page-cta__text {
    margin-bottom: 0;
  }

  .page-cta--contrast .page-cta__actions {
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
  }
}

/* from page-internal.css */
@media (max-width: 575.98px) {
  .page-hero {
    min-height: 200px;
  }

  .page-cta__inner,
  .page-cta__card {
    padding: 1.5rem 1.25rem;
  }

  .page-cta__btn {
    width: 100%;
    max-width: 280px;
  }
}

/* from certificate.css */
@media (min-width: 992px) and (max-width: 1199.98px) {
  :root {
    --cert-band-height: clamp(280px, 34vw, 360px);
  }

  .cert-home__panel {
    padding-left: max(1.5rem, calc((100vw - 960px) / 2 + 0.75rem));
  }
}

/* from certificate.css */
@media (min-width: 1200px) and (max-width: 1399.98px) {
  :root {
    --cert-band-height: clamp(340px, 32vw, 400px);
  }

  .cert-home__panel {
    padding-left: max(2rem, calc((100vw - 1140px) / 2 + 0.75rem));
  }
}

/* from certificate.css */
@media (min-width: 1400px) {
  :root {
    --cert-band-height: 400px;
  }

  .cert-home__panel {
    padding-left: max(2rem, calc((100vw - 1320px) / 2 + 0.75rem));
  }
}

/* from certificate.css */
@media (max-width: 991.98px) {
  .cert-home {
    padding-block: clamp(2rem, 4vw, 3rem);
  }

  .cert-home__layout {
    grid-template-columns: 1fr;
    min-height: 0;
    gap: 2rem;
  }

  .cert-home__layout::before {
    display: none;
  }

  .cert-home__panel {
    min-height: 0;
    background: var(--cert-gradient);
    padding: 3rem 1.5rem 3rem;
  }

  .cert-home__content {
    max-width: 540px;
    margin-inline: auto;
    text-align: center;
  }

  .cert-home__title {
    text-align: center;
  }

  .cert-home__text {
    text-align: center;
  }

  .cert-home__visual {
    justify-content: center;
    min-height: 0;
    padding: 1.25rem 1.5rem 2rem;
    margin-top: 0;
    background: var(--cert-page-bg);
  }

  .cert-home__figure {
    margin-left: 0;
    width: min(100%, 440px);
  }
}

/* from certificate.css */
@media (max-width: 767.98px) {
  .cert-home__title {
    font-size: clamp(1.5rem, 5.5vw, 1.875rem);
  }

  .cert-home__text {
    font-size: clamp(0.875rem, 3.8vw, 1rem);
  }
}

/* from certificate.css */
@media (max-width: 575.98px) {
  .cert-home__layout {
    gap: 1.75rem;
  }

  .cert-home__panel {
    padding: 2.5rem 1.25rem 2.75rem;
  }

  .cert-home__text {
    margin-bottom: 2rem;
  }

  .cert-home__btn {
    width: 100%;
    max-width: 280px;
  }

  .cert-home__visual {
    padding: 1rem 1rem 1.75rem;
    margin-top: 0;
  }
}

/* from labs.css */
@media (hover: hover) {
  .lab-card:hover .lab-card__inner,
  .lab-card:focus-within .lab-card__inner {
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
  }

  .lab-card:hover .lab-card__reveal,
  .lab-card:focus-within .lab-card__reveal {
    grid-template-rows: 1fr;
    min-height: 48px;
    box-shadow: 0 4px 8px rgba(16, 80, 178, 0.28);
  }

  .lab-card:hover .lab-card__reveal-text,
  .lab-card:focus-within .lab-card__reveal-text {
    opacity: 1;
    transform: translateY(0);
    padding: 12px 14px 14px;
  }
}

/* from labs.css */
@media (max-width: 1199.98px) {
  .labs-home__grid {
    gap: 16px;
  }
}

/* from labs.css */
@media (max-width: 991.98px) {
  .labs-home {
    padding: 64px 0 72px;
  }

  .labs-home__header {
    margin-bottom: 36px;
  }

  .labs-home__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: 28px;
  }
}

/* from labs.css */
@media (max-width: 575.98px) {
  .labs-home {
    padding: 48px 0 56px;
  }

  .labs-home__header {
    margin-bottom: 28px;
  }

  .labs-home__grid {
    grid-template-columns: 1fr;
    max-width: 320px;
    margin: 0 auto;
  }

  .lab-card__btn {
    min-width: 120px;
  }
}

/* from services.css */
@media (max-width: 991.98px) {
  .spec-home--static .spec-home__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* from services.css */
@media (max-width: 575.98px) {
  .spec-home--static .spec-home__grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin-inline: auto;
  }

  .spec-home--static .spec-card__inner {
    min-height: 380px;
  }
}

/* from services.css */
@media (min-width: 992px) {
  .spec-home__slider.owl-carousel .owl-stage {
    display: flex;
    align-items: center;
  }
}

/* from services.css */
@media (max-width: 991.98px) {
  .spec-home {
    padding: 64px 0 80px;
  }

  .spec-home__carousel {
    padding: 0 0 20px;
  }

  .spec-home__slider .owl-item:not(.center) .spec-card {
    transform: scale(0.94);
  }
}

/* from services.css */
@media (max-width: 575.98px) {
  .spec-home {
    padding: 48px 0 64px;
  }

  .spec-home__header {
    margin-bottom: 32px;
  }

  .spec-card {
    max-width: min(100%, 360px);
    margin-inline: auto;
  }

  .spec-card__inner {
    min-height: 400px;
  }

  .spec-home__slider .owl-item.center .spec-card__inner {
    min-height: 460px;
  }

  .spec-home__slider .owl-item:not(.center) .spec-card {
    transform: scale(0.88);
    opacity: 0.85;
  }
}

/* from products.css */
@media (hover: hover) {
  .prod-page-intro__btn--primary:hover,
  .prod-page-intro__btn--primary:focus-visible {
    color: #ffffff;
    background: linear-gradient(90deg, #0d4499 0%, #1050b2 42%, #1a5fe0 100%);
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(38, 114, 255, 0.35);
  }

  .prod-page-intro__btn--outline:hover,
  .prod-page-intro__btn--outline:focus-visible {
    background: rgba(38, 114, 255, 0.08);
    color: #113373;
  }
}

/* from products.css */
@media (max-width: 575.98px) {
  .prod-page-intro__actions {
    flex-direction: column;
    align-items: stretch;
    max-width: 320px;
    margin-inline: auto;
  }
}

/* from products.css */
@media (hover: hover) {
  .prod-shop-more__btn:hover,
  .prod-shop-more__btn:focus-visible {
    color: #ffffff;
    filter: brightness(1.06);
    transform: translateY(-2px);
    box-shadow: 0 14px 32px rgba(16, 50, 108, 0.26);
  }
}

/* from products.css */
@media (hover: hover) {
  .prod-page-brands__slide img:hover {
    opacity: 1;
    transform: scale(1.03);
  }
}

/* from products.css */
@media (hover: hover) {
  .prod-page-cta__btn:hover,
  .prod-page-cta__btn:focus-visible {
    color: #ffffff;
    filter: brightness(1.06);
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(38, 114, 255, 0.35);
  }
}

/* from products.css */
@media (min-width: 1200px) {
  .prod-cat__title {
    font-size: 1.4375rem;
  }
}

/* from products.css */
@media (max-width: 1199.98px) {
  .prod-featured__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .prod-shop-cats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .page-productos .prod-shop-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

/* from products.css */
@media (max-width: 991.98px) {
  .prod-home {
    padding: 64px 0 76px;
  }

  .prod-shop-catalog {
    grid-template-columns: 1fr;
  }

  .prod-shop-sidebar {
    max-width: none;
    padding: 1.75rem 1.5rem 1.625rem;
    border-radius: 24px;
  }

  .prod-shop-sidebar__title {
    margin-bottom: 1.375rem;
    font-size: 1.5rem;
  }

  .prod-shop-sidebar__list a {
    padding: 0.625rem 1rem;
    font-size: 0.9375rem;
  }

  .prod-shop-search {
    flex-direction: column;
    align-items: stretch;
  }

  .prod-shop-search__sort {
    flex: 1 1 auto;
    width: 100%;
    min-width: 0;
  }

  .prod-shop-cats {
    padding-bottom: 10px;
  }

  .prod-shop-spotlight {
    grid-template-columns: minmax(72px, 28%) minmax(0, 1fr);
    align-items: center;
    gap: 0.75rem 0.875rem;
    min-height: 0;
    margin-top: 1.5rem;
    padding: 0.875rem 1rem;
    border-radius: 18px;
    overflow: hidden;
    text-align: left;
  }

  .prod-shop-spotlight__products {
    align-items: center;
    align-self: center;
    margin: 0;
    padding: 0;
    justify-content: center;
  }

  .prod-shop-spotlight__product-img {
    max-width: 100%;
    width: auto;
    max-height: 88px;
    margin-top: 0;
    object-position: center;
    filter: drop-shadow(2px 4px 8px rgba(17, 51, 115, 0.12));
  }

  .prod-shop-spotlight__content {
    flex-direction: row;
    align-items: flex-start;
    gap: 0.75rem;
    padding-right: 0;
  }

  .prod-shop-spotlight__icon {
    width: 56px;
    height: 56px;
  }

  .prod-shop-spotlight__icon img {
    width: 28px;
    height: 28px;
  }

  .prod-shop-spotlight__icon i {
    font-size: 1.5rem;
  }

  .prod-shop-spotlight__title {
    font-size: 1.0625rem;
    margin-bottom: 0.35rem;
  }

  .page-productos .prod-shop-spotlight__text {
    font-size: 0.8125rem;
    line-height: 1.45;
  }

  .prod-shop-spotlight__decor {
    display: none;
  }
}

/* from products.css */
@media (max-width: 767.98px) {
  .prod-cats__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .prod-cat {
    grid-template-columns: minmax(0, 1fr) minmax(96px, 42%);
    min-height: 148px;
  }

  .prod-cat__title {
    font-size: 1.0625rem;
  }

  .prod-brands__pill {
    border-radius: 20px;
    padding: 16px 20px;
  }
}

/* from products.css */
@media (max-width: 767.98px) {
  .prod-brands__carousel.is-carousel-active .prod-brands__pill {
    flex-wrap: nowrap;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .prod-shop-cats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    padding-bottom: 8px;
  }

  .prod-shop-cat::after {
    width: 80px;
    height: 12px;
    bottom: -7px;
  }

  .prod-shop-spotlight {
    margin-top: 1.25rem;
    padding: 0.75rem 0.875rem;
    border-radius: 16px;
    grid-template-columns: minmax(64px, 30%) minmax(0, 1fr);
    gap: 0.625rem 0.75rem;
  }

  .prod-shop-spotlight__products {
    margin: 0;
  }

  .prod-shop-spotlight__product-img {
    max-height: 150px;
    margin-top: 0;
  }

  .prod-shop-spotlight__content {
    flex-direction: row;
    align-items: flex-start;
    gap: 0.625rem;
    padding-right: 0;
  }

  .prod-shop-spotlight__icon {
    width: 48px;
    height: 48px;
  }

  .prod-shop-spotlight__icon img {
    width: 24px;
    height: 24px;
  }

  .prod-shop-spotlight__icon i {
    font-size: 1.25rem;
  }

  .prod-shop-spotlight__title {
    font-size: 1rem;
    margin-bottom: 0.25rem;
  }

  .page-productos .prod-shop-spotlight__text {
    font-size: 0.75rem;
    line-height: 1.42;
  }

  .prod-shop-spotlight__decor {
    display: none;
  }

  .page-productos .prod-shop-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .prod-featured__carousel:not(.is-carousel-active) .prod-featured__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .prod-cat {
    grid-template-columns: 1fr;
    text-align: left;
    min-height: 0;
  }

  .prod-cat__body {
    align-items: flex-start;
  }

  .prod-cat__title {
    font-size: 1rem;
  }

  .prod-cat__media {
    justify-content: center;
    order: -1;
  }
}

/* from products.css */
@media (max-width: 575.98px) {
  .prod-home {
    padding: 48px 0 60px;
  }

  .prod-shop-cats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: none;
    margin-inline: 0;
  }

  .page-productos .prod-shop-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: none;
    margin: 0;
  }

  .prod-featured__carousel:not(.is-carousel-active) .prod-featured__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: none;
    margin: 0;
  }

  .prod-cats__carousel:not(.is-carousel-active) .prod-cats__grid {
    grid-template-columns: 1fr;
  }

  .prod-cat__title {
    font-size: 1.375rem; /* 22px — móvil */
  }

  .prod-cat__count,
  .prod-cat__btn {
    font-size: 0.875rem; /* 14px */
    line-height: 1.35;
  }

  .prod-cat__btn {
    padding: 7px 18px;
  }

  .prod-brands__pill {
    gap: 14px 20px;
  }

  .prod-brands__pill img {
    max-height: 36px;
  }

  .prod-page-brands__logos {
    padding-inline: 14px;
  }

  .prod-page-brands__slide img {
    max-height: 36px;
  }

  .prod-page-cta {
    min-height: clamp(200px, 55vw, 260px);
    justify-content: center;
  }

  .prod-page-cta__content {
    padding: clamp(1.5rem, 4vw, 2rem);
    text-align: center;
    align-items: center;
    width: 100%;
  }

  .prod-page-cta__btn {
    margin-inline: auto;
  }
}

/* from clients.css */
@media (max-width: 991.98px) {
  .clients-home {
    padding: 64px 0 80px;
  }

  .clients-homo-logos {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .clients-homo-logos__item {
    min-height: 100px;
  }

  .clients-logos-grid:not(.owl-carousel) {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px 20px;
  }

  .clients-partners {
    margin-top: 56px;
  }
}

/* from clients.css */
@media (max-width: 575.98px) {
  .clients-home {
    padding: 48px 0 64px;
  }

  .clients-homo-logos {
    grid-template-columns: 1fr;
    max-width: 280px;
  }

  .clients-homo-note {
    padding: 16px 20px;
    gap: 14px;
    border-radius: 26px;
    max-width: 100%;
  }

  .clients-homo-note__icon {
    width: 44px;
    height: 44px;
    font-size: 1.125rem;
  }

  .clients-homo-note__text {
    font-size: 0.9375rem;
    line-height: 1.35;
  }

  .clients-logos-grid:not(.owl-carousel) {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .clients-logos-grid__cell img {
    max-height: 52px;
  }
}

/* from contacto.css */
@media (max-width: 991.98px) {
  .contact-intro__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* from contacto.css */
@media (max-width: 767.98px) {
  .contact-intro__grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

/* from contacto.css */
@media (max-width: 991.98px) {
  .quote-card {
    flex-direction: column;
    min-height: 0;
    width: 100%;
    max-width: 100%;
  }

  .quote-card__media {
    flex: none;
    height: 340px;
    border-radius: 12px 12px 0 0;
  }

  .quote-card__media img {
    min-height: 340px;
    object-position: 50% 12%;
  }

  .quote-card__form-col {
    flex: none;
    margin-left: 0;
    margin-top: -2rem;
    border-radius: 28px 28px 12px 12px;
  }
}

/* from contacto.css */
@media (max-width: 575.98px) {
  .quote-form__row {
    grid-template-columns: minmax(0, 1fr);
    gap: 0;
  }
}

/* from contacto.css */
@media (max-width: 991.98px) {
  .locations-list {
    grid-template-columns: 1fr;
    max-width: 560px;
    margin-inline: auto;
  }
}

/* from contacto.css */
@media (max-width: 575.98px) {
  .location-card {
    padding: 1.25rem;
  }

  .location-card__map {
    min-height: 200px;
  }

  .location-card__waze {
    right: 0.65rem;
    bottom: 0.65rem;
  }

  .location-card__waze img {
    width: 40px;
    height: 40px;
  }

  .location-card__actions {
    flex-direction: column;
  }

  .location-card__btn {
    width: 100%;
  }
}

/* from contacto.css */
@media (min-width: 992px) {
  .contact-page__body {
    grid-template-columns: 1fr 1fr;
    gap: 2rem 2.5rem;
    align-items: stretch;
  }

  .contact-form-wrap {
    order: 1;
    display: flex;
    flex-direction: column;
  }

  .contact-form-wrap__title,
  .contact-form-wrap__lead {
    flex-shrink: 0;
  }

  .contact-form {
    flex: 1;
  }

  .contact-map {
    order: 2;
    display: flex;
    flex-direction: column;
    position: sticky;
    top: 6rem;
    align-self: stretch;
  }

  .contact-map__frame {
    flex: 1;
    aspect-ratio: unset;
    min-height: 280px;
  }
}

/* from contacto.css */
@media (max-width: 991.98px) {
  .contact-page__body {
    align-items: start;
  }

  .contact-map,
  .contact-form-wrap {
    height: auto;
  }

  .contact-page__grid {
    grid-template-columns: 1fr;
    max-width: 360px;
    margin-left: auto;
    margin-right: auto;
  }

  .contact-map {
    order: -1;
    display: block;
  }

  .contact-map__frame {
    aspect-ratio: 4 / 3;
    flex: none;
  }

  .contact-form__message-col .form-control {
    min-height: 0;
  }

  .contact-map__actions {
    flex-direction: column;
  }

  .contact-map__btn {
    width: 100%;
  }
}

/* from contacto.css */
@media (max-width: 575.98px) {
  .contact-map,
  .contact-form-wrap {
    padding: 1.25rem;
  }

  .contact-map__title {
    font-size: 1.25rem;
  }

  .contact-form__submit {
    width: 100%;
  }
}

/* from reclamaciones.css */
@media (max-width: 991.98px) {
  .claims-page__grid {
    grid-template-columns: 1fr;
  }

  .claims-info {
    order: -1;
  }
}

/* from reclamaciones.css */
@media (max-width: 575.98px) {
  .claims-page {
    padding: 48px 0 64px;
  }

  .claims-info,
  .claims-form-wrap {
    padding: 1.25rem;
  }

  .claims-form__submit {
    width: 100%;
  }
}

/* from nosotros.css */
@media (max-width: 991.98px) {
  .page-hero--headline .page-hero__headline {
    font-size: clamp(2rem, 5.5vw, 2.75rem);
  }
}

/* from nosotros.css */
@media (max-width: 767.98px) {
  .page-hero--headline .page-hero__headline {
    font-size: clamp(1.75rem, 5.5vw, 2.25rem);
  }
}

/* from nosotros.css */
@media (max-width: 575.98px) {
  .page-hero--headline .page-hero__headline {
    font-size: clamp(1.5rem, 5.5vw, 2rem);
  }
}

/* from nosotros.css */
@media (max-width: 767.98px) {
  .page-hero--headline {
    min-height: clamp(260px, 55vw, 400px);
    background-position: 70% center;
  }

  .page-hero--headline::before {
    background: linear-gradient(
      90deg,
      rgba(11, 42, 133, 0.95) 0%,
      rgba(17, 51, 115, 0.88) 45%,
      rgba(26, 80, 178, 0.55) 75%,
      rgba(38, 114, 255, 0.2) 100%
    );
  }
}

/* from nosotros.css */
@media (hover: hover) {
  .about-page__video-trigger:hover,
  .about-page__video-trigger:focus-visible {
    box-shadow: 0 24px 56px rgba(16, 50, 108, 0.24);
    transform: translateY(-2px);
  }

  .about-page__video-trigger:hover .about-page__video-play,
  .about-page__video-trigger:focus-visible .about-page__video-play {
    background: rgba(17, 51, 115, 0.2);
  }
}

/* from nosotros.css */
@media (max-width: 767.98px) {
  .about-page__intro-certs-carousel:not(.is-carousel-active) .about-page__intro-certs-slider.owl-carousel {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

/* from nosotros.css */
@media (max-width: 767.98px) {
  .about-page__intro-stats.about-home__stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: 1.25rem;
    padding: 1.25rem 1rem;
  }

  .about-page__intro-stats .about-home__stat::after {
    display: none;
  }

  .about-page__intro-stats .about-home__stat:nth-child(odd) {
    border-right: 1px solid rgba(255, 255, 255, 0.35);
  }

  .about-page__intro-stats .about-home__stat:nth-child(1),
  .about-page__intro-stats .about-home__stat:nth-child(2) {
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.28);
  }
}

/* from nosotros.css */
@media (max-width: 575.98px) {
  .about-page__intro-stats.about-home__stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: 1rem;
    column-gap: 0.5rem;
    padding: 1rem 0.75rem;
  }

  .about-page__intro-stats .about-home__stat {
    padding: 0.35rem 0.25rem;
  }

  .about-page__intro-stats .about-home__stat:nth-child(odd) {
    border-right: 1px solid rgba(255, 255, 255, 0.35);
  }

  .about-page__intro-stats .about-home__stat:nth-child(1),
  .about-page__intro-stats .about-home__stat:nth-child(2) {
    padding-bottom: 0.85rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.28);
  }

  .about-page__intro-stats .about-home__stat-value {
    font-size: clamp(1.5rem, 6vw, 2rem);
  }

  .about-page__intro-stats .about-home__stat-label {
    max-width: none;
    font-size: 0.6875rem;
    line-height: 1.25;
  }
}

/* from nosotros.css */
@media (hover: hover) {
  .about-pillar-card:hover,
  .about-pillar-card:focus-within {
    transform: translateY(-4px);
    box-shadow: 0 14px 32px rgba(16, 50, 108, 0.14);
  }
}

/* from nosotros.css */
@media (max-width: 991.98px) {
  .about-page__intro {
    padding-top: 64px;
    padding-bottom: 48px;
  }

  .about-pillars,
  .about-why {
    padding: 56px 0 64px;
  }
}

/* from nosotros.css */
@media (max-width: 575.98px) {
  .about-page__intro {
    padding-top: 48px;
  }
}

/* from nosotros.css */
@media (hover: hover) {
  .about-gallery__item:hover,
  .about-gallery__item:focus-visible {
    transform: translateY(-4px);
    box-shadow: 0 14px 32px rgba(16, 50, 108, 0.16);
  }

  .about-gallery__item:hover img,
  .about-gallery__item:focus-visible img {
    transform: scale(1.06);
  }

  .about-gallery__item:hover .about-gallery__overlay,
  .about-gallery__item:focus-visible .about-gallery__overlay {
    opacity: 1;
  }
}

/* from nosotros.css */
@media (max-width: 991.98px) {
  .about-history,
  .about-gallery,
  .about-testimonials {
    padding: 56px 0 72px;
  }

  .history-slide {
    grid-template-columns: 1fr;
    gap: 1.25rem;
    min-height: 0;
  }

  .about-gallery__grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 160px;
  }

  .about-gallery__item--wide {
    grid-column: span 2;
  }

  .about-gallery__item--tall {
    grid-row: span 1;
  }

  .about-history__carousel,
  .about-testimonials__carousel {
    padding: 0 44px 52px;
  }
}

/* from nosotros.css */
@media (max-width: 575.98px) {
  .about-gallery__grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 200px;
  }

  .about-gallery__item--wide,
  .about-gallery__item--tall {
    grid-column: span 1;
    grid-row: span 1;
  }

  .history-slide {
    padding: 1.125rem;
  }

  .testimonial-card {
    padding: 1.5rem 1.25rem;
  }

  .about-history__carousel,
  .about-testimonials__carousel {
    padding: 0 44px 48px;
  }

  .about-history__arrow,
  .about-testimonials__arrow {
    width: 40px;
    height: 40px;
    top: calc(50% - 24px);
  }

  .about-history__arrow--prev,
  .about-testimonials__arrow--prev {
    left: 0;
  }

  .about-history__arrow--next,
  .about-testimonials__arrow--next {
    right: 0;
  }
}

/* from nosotros.css */
@media (hover: hover) {
  .about-culture__cta-btn:hover,
  .about-culture__cta-btn:focus-visible {
    color: #1050b2;
    background: #f5f9ff;
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.16);
  }
}

/* from nosotros.css */
@media (max-width: 1199.98px) {
  .about-culture__header {
    margin-bottom: clamp(2rem, 5vw, 3rem);
  }

  .about-culture__card {
    padding-top: clamp(2rem, 4vw, 2.5rem);
  }

  .about-culture__mv-row {
    grid-template-columns: minmax(0, 1fr) minmax(160px, 260px) minmax(0, 1fr);
    gap: 1rem 1.25rem;
    margin-top: 0;
    align-items: end;
  }

  .about-culture__mv-block {
    width: 100%;
    max-width: none;
    padding-bottom: 1rem;
  }

  .about-culture__team {
    max-width: 260px;
    align-self: center;
  }

  .about-culture__value:nth-child(n) {
    margin-top: 0;
  }

  .about-culture__values-list {
    flex-wrap: wrap;
    justify-content: center;
    row-gap: 1.25rem;
  }

  .about-culture__value {
    flex: 0 1 calc(16.666% - 1rem);
    min-width: 88px;
  }

  .about-culture__value-icon {
    width: 64px;
    height: 64px;
  }

  .about-culture__value-label {
    white-space: normal;
    font-size: 0.8125rem;
  }
}

/* from nosotros.css */
@media (max-width: 991.98px) {
  .about-culture__header {
    margin-bottom: clamp(1.75rem, 4vw, 2.5rem);
  }

  .about-culture__title {
    margin-bottom: clamp(0.875rem, 2vw, 1.25rem);
  }

  .about-culture__card {
    padding-top: clamp(1.75rem, 4vw, 2.25rem);
  }

  .about-culture__cta {
    justify-content: flex-start;
    gap: 1.25rem;
  }

  .about-culture__cta-content {
    flex: 0 1 auto;
  }

  .about-culture__mv-row {
    grid-template-columns: 1fr;
    gap: 0;
    justify-items: center;
    margin-top: 0;
  }

  .about-culture__team {
    order: -1;
    width: min(380px, 72vw);
    max-width: 380px;
    margin: 0 auto 1.25rem;
  }

  .about-culture__mv-block {
    width: 100%;
    max-width: 36rem;
    padding-bottom: 1.25rem;
  }

  .about-culture__mv-block--mission,
  .about-culture__mv-block--vision {
    align-self: center;
    text-align: center;
    justify-self: center;
  }

  .about-culture__card .about-culture__mv-title {
    margin-bottom: clamp(0.75rem, 1.75vw, 1rem);
  }

  .about-culture__mv-block--vision .about-culture__mv-text {
    margin-left: auto;
    margin-right: auto;
  }

  .about-culture__mv-text {
    max-width: none;
  }

  .about-culture__values-list {
    flex-wrap: wrap;
    justify-content: center;
    row-gap: 1.5rem;
    column-gap: 1rem;
  }

  .about-culture__value {
    flex: 0 1 calc(33.333% - 0.75rem);
    min-width: 100px;
  }

  .about-culture__value:nth-child(n) {
    margin-top: 0;
  }

  .about-culture__value-icon {
    width: 64px;
    height: 64px;
  }

  .about-culture__value-label {
    white-space: normal;
  }
}

/* from nosotros.css */
@media (max-width: 767.98px) {
  .about-culture__header {
    margin-bottom: clamp(1.5rem, 4vw, 2rem);
  }

  .about-culture__title {
    margin-bottom: clamp(0.75rem, 1.75vw, 1rem);
  }

  .about-culture__team {
    width: min(340px, 80vw);
    max-width: 340px;
    margin-bottom: 1rem;
  }

  .about-culture__mv-block {
    padding-bottom: 1rem;
  }

  .about-culture__divider {
    margin-top: 0;
  }

  .about-culture__values-list {
    row-gap: 1.25rem;
  }

  .about-culture__value {
    flex: 0 1 calc(33.333% - 0.75rem);
  }

  .about-culture__cta {
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    text-align: center;
    gap: 1rem;
    margin-top: clamp(2rem, 4vw, 3rem);
  }

  .about-culture__cta-content {
    flex: 0 0 auto;
  }

  .about-culture__cta-btn {
    width: 100%;
    max-width: 320px;
    margin-inline: auto;
  }
}

/* from nosotros.css */
@media (max-width: 575.98px) {
  .about-culture__value {
    flex: 0 1 calc(50% - 0.5rem);
    min-width: 0;
  }

  .about-culture__value-icon {
    width: 56px;
    height: 56px;
  }
}

/* from nosotros.css */
@media (max-width: 991.98px) {
  .about-policy__content {
    max-width: none;
  }
}

/* from nosotros.css */
@media (max-width: 767.98px) {
  .about-policy {
    padding: clamp(48px, 10vw, 72px) 0;
  }

  .about-policy__header {
    margin-bottom: 1.75rem;
  }
}

/* from blog.css */
@media (max-width: 767.98px) {
  .blog-search {
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0.75rem;
  }

  .blog-search__label {
    text-align: left;
  }

  .blog-search__form {
    flex: none;
    max-width: none;
    width: 100%;
    min-width: 0;
  }
}

/* from blog.css */
@media (hover: hover) {
  .blog-webinar-card:hover,
  .blog-webinar-card:focus-visible {
    transform: translateY(-4px);
    box-shadow: 0 16px 36px rgba(16, 50, 108, 0.18);
  }

  .blog-webinars__cta:hover,
  .blog-webinars__cta:focus-visible {
    color: #ffffff;
    filter: brightness(1.06);
    transform: translateY(-2px);
    box-shadow: 0 14px 32px rgba(16, 50, 108, 0.26);
  }
}

/* from blog.css */
@media (max-width: 767.98px) {
  .blog-webinars__grid {
    grid-template-columns: 1fr;
    max-width: 520px;
    margin-inline: auto;
  }
}

/* from blog.css */
@media (hover: hover) {
  .blog-card:hover,
  .blog-card:focus-visible {
    transform: translateY(-4px);
    box-shadow: 0 14px 32px rgba(16, 50, 108, 0.12);
  }

  .blog-page__cta:hover,
  .blog-page__cta:focus-visible {
    color: #ffffff;
    filter: brightness(1.06);
    transform: translateY(-2px);
    box-shadow: 0 14px 32px rgba(16, 50, 108, 0.26);
  }
}

/* from blog.css */
@media (max-width: 991.98px) {
  .blog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* from blog.css */
@media (max-width: 575.98px) {
  .blog-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin-inline: auto;
  }
}

/* from single-layout.css */
@media (max-width: 991.98px) {
  .single-page__layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .sidebar {
    order: 2;
  }
}

/* from single-layout.css */
@media (max-width: 575.98px) {
  .single-page {
    padding: 36px 0 56px;
  }
}

/* from single-product.css */
@media (hover: hover) {
  .product-info__cta:hover,
  .product-info__cta:focus-visible {
    color: #ffffff;
    background: #0090ff;
    transform: none;
    box-shadow: none;
  }
}

/* from single-product.css */
@media (hover: hover) {
  .product-info__sheet:hover,
  .product-info__sheet:focus-visible {
    background: rgba(0, 144, 255, 0.06);
    border-color: #0090ff;
    color: #1050b2;
  }
}

/* from single-product.css */
@media (max-width: 991.98px) {
  .product-detail__layout {
    grid-template-columns: 1fr;
  }
}

/* from single-product.css */
@media (max-width: 767.98px) {
  .product-options__grid {
    grid-template-columns: 1fr;
  }
}

/* from single-product.css */
@media (max-width: 575.98px) {
  .page-single-product .product-detail .product-gallery__thumbs {
    flex-wrap: nowrap;
  }

  .page-single-product .product-detail .product-gallery__thumb {
    flex: 1 1 0;
  }

  .product-options__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .product-qty {
    width: 100%;
    max-width: 160px;
    margin-inline: auto;
  }

  .product-info__cta {
    width: 100%;
  }
}

/* from single-product.css */
@media (hover: hover) {
  .single-related__card:hover,
  .single-related__card:focus-visible {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(16, 50, 108, 0.12);
  }
}

/* from single-product.css */
@media (max-width: 991.98px) {
  .single-product__top {
    grid-template-columns: 1fr;
  }

  .single-related__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* from single-product.css */
@media (max-width: 575.98px) {
  .single-product {
    padding: 1.25rem;
  }

  .product-summary__actions {
    flex-direction: column;
  }

  .product-summary__btn {
    width: 100%;
  }

  .single-related__grid {
    grid-template-columns: 1fr;
    max-width: 280px;
    margin: 0 auto;
  }
}

/* from single-lab.css */
@media (hover: hover) {
  .lab-intro__btn--primary:hover,
  .lab-intro__btn--primary:focus-visible {
    color: #ffffff;
    background: linear-gradient(90deg, #0d4499 0%, #1050b2 42%, #1a5fe0 100%);
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(38, 114, 255, 0.35);
  }

  .lab-intro__btn--outline:hover,
  .lab-intro__btn--outline:focus-visible {
    background: rgba(38, 114, 255, 0.08);
    color: #113373;
  }
}

/* from single-lab.css */
@media (max-width: 991.98px) {
  .lab-intro__features {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: clamp(1.75rem, 4vw, 2.25rem);
  }

  .lab-intro__feature:nth-child(odd):not(:last-child)::after {
    display: none;
  }

  .lab-intro__feature:nth-child(1)::after,
  .lab-intro__feature:nth-child(3)::after {
    display: block;
  }

  .lab-intro__feature:nth-child(2)::after {
    display: none;
  }

  .lab-intro--design-2 .lab-intro__layout {
    grid-template-columns: 1fr;
    gap: clamp(1.75rem, 4vw, 2.5rem);
  }

  .lab-intro--design-2 .lab-intro__media {
    order: -1;
  }

  .lab-intro--design-2 .lab-intro__features {
    grid-template-columns: 1fr;
  }

  .lab-intro--design-2 .lab-intro__feature:not(:last-child)::after {
    display: none;
  }

  .lab-services__intro {
    grid-template-columns: 1fr;
    gap: clamp(1.75rem, 4vw, 2.5rem);
  }

  .lab-services__media {
    order: -1;
  }

  .lab-services__carousel {
    padding-inline: 48px;
  }

  .lab-complementary__layout {
    grid-template-columns: 1fr;
    gap: clamp(1.75rem, 4vw, 2.5rem);
  }

  .lab-complementary__media {
    order: -1;
  }

  .lab-specialized__carousel {
    padding-inline: 48px;
  }
}

/* from lab-services */
@media (max-width: 575.98px) {
  .lab-services__carousel {
    padding-inline: 40px;
  }

  .lab-services__arrow {
    width: 40px;
    height: 40px;
  }

  .lab-services__card-media {
    min-height: 140px;
  }

  .lab-specialized__carousel {
    padding-inline: 40px;
  }

  .lab-specialized__arrow {
    width: 40px;
    height: 40px;
  }
}

/* from single-lab.css */
@media (max-width: 575.98px) {
  .lab-intro__texture {
    background-position: right;
    background-size: contain;
    opacity: 0.85;
  }

  .lab-intro__features {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: 1.5rem;
    column-gap: 0.5rem;
  }

  .lab-intro__feature:nth-child(odd):not(:last-child)::after {
    display: none;
  }

  .lab-intro__feature:nth-child(1)::after,
  .lab-intro__feature:nth-child(3)::after {
    display: block;
  }

  .lab-intro__feature:nth-child(2)::after,
  .lab-intro__feature:nth-child(4)::after {
    display: none;
  }

  .lab-intro__feature {
    padding: 0 0.5rem;
  }

  .lab-intro__icon img {
    height: 4.5rem;
  }

  .lab-intro__feature-text {
    max-width: none;
    font-size: 0.9375rem;
  }

  .lab-intro__actions {
    flex-direction: column;
    align-items: stretch;
    max-width: 320px;
    margin-inline: auto;
  }
}

/* from single-lab.css */
@media (max-width: 575.98px) {
  .single-lab {
    padding: 1.25rem;
  }
}

/* from single-lab.css */
@media (max-width: 991.98px) {
  .lab-equipment__layout,
  .service-activities__layout {
    grid-template-columns: 1fr;
  }

  .lab-equipment__media,
  .service-activities__media {
    max-width: 560px;
    margin-inline: auto;
  }
}

/* from single-lab.css */
@media (max-width: 575.98px) {
  .lab-equipment__texture,
  .service-activities__texture {
    opacity: 0.4;
  }

  .service-activities__note-text {
    font-size: 1rem;
  }

  .lab-accordion__btn {
    min-height: 52px;
    padding-inline: 1.1rem;
  }

  .lab-accordion__body {
    padding-left: 1.1rem;
  }
}

/* from single-lab.css */
@media (max-width: 991.98px) {
  .lab-process__steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: 2.5rem;
  }

  .lab-process__step:nth-child(2)::after {
    display: none;
  }

  .lab-process__step:nth-child(1)::after,
  .lab-process__step:nth-child(3)::after {
    display: block;
  }
}

/* from single-lab.css */
@media (max-width: 575.98px) {
  .lab-process__texture {
    background-position: right;
    background-size: contain;
    opacity: 0.95;
  }

  .lab-process__steps {
    grid-template-columns: 1fr;
    row-gap: 2rem;
  }

  .lab-process__step::after {
    display: none !important;
  }

  .lab-process__step-text {
    max-width: 18rem;
  }
}

/* from single-lab.css */
@media (max-width: 1365.98px) {
  .lab-cta > .container {
    max-width: 100%;
    padding: 0;
  }
}

/* from single-lab.css */
@media (hover: hover) {
  .lab-cta__btn:hover,
  .lab-cta__btn:focus-visible {
    color: #003594;
    background: #f5f9ff;
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
  }
}

/* from single-lab.css */
@media (max-width: 1199.98px) {
  .lab-cta__content {
    max-width: min(55%, 30rem);
  }

  .lab-cta__media {
    width: min(40%, 380px);
  }

  .lab-cta__media img {
    width: min(100%, 360px);
  }
}

/* from single-lab.css */
@media (max-width: 991.98px) {
  .lab-cta__banner {
    min-height: clamp(240px, 38vw, 300px);
  }

  .lab-cta__content {
    max-width: min(55%, 22rem);
    padding: clamp(1.75rem, 4vw, 2.5rem) clamp(1.25rem, 3vw, 1.5rem);
  }

  .lab-cta__title {
    font-size: clamp(1.375rem, 3.8vw, 1.75rem);
  }

  .lab-cta__text {
    font-size: clamp(0.9375rem, 2.2vw, 1.0625rem);
  }

  .lab-cta__media {
    width: min(46%, 300px);
    opacity: 1;
  }

  .lab-cta__media img {
    width: min(100%, 280px);
    right: clamp(-0.5rem, -1vw, 0);
    bottom: clamp(-1.5rem, -3vw, -0.75rem);
    transform: rotate(-10deg);
  }
}

/* from single-lab.css */
@media (max-width: 767.98px) {
  .lab-cta__banner {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    min-height: 0;
    padding-bottom: clamp(9rem, 36vw, 12rem);
  }

  .lab-cta__content {
    width: 100%;
    max-width: none;
    padding: 1.75rem 1.5rem 0;
  }

  .lab-cta__title {
    font-size: clamp(1.375rem, 4.8vw, 1.625rem);
    max-width: 18rem;
  }

  .lab-cta__text {
    max-width: 20rem;
  }

  .lab-cta__media {
    top: auto;
    width: min(62%, 280px);
    height: clamp(8.5rem, 34vw, 11rem);
  }

  .lab-cta__media img {
    right: -0.25rem;
    bottom: -1rem;
    width: min(100%, 260px);
    transform: rotate(-10deg);
  }
}

/* from single-lab.css */
@media (max-width: 575.98px) {
  .lab-cta__banner {
    padding-bottom: clamp(8rem, 42vw, 10.5rem);
  }

  .lab-cta__content {
    padding: 1.5rem 1.25rem 0;
  }

  .lab-cta__title {
    font-size: clamp(1.25rem, 5.5vw, 1.5rem);
    max-width: none;
  }

  .lab-cta__text {
    font-size: 0.9375rem;
    max-width: none;
  }

  .lab-cta__media {
    width: min(72%, 240px);
    height: clamp(7.5rem, 38vw, 9.5rem);
    align-self: flex-end;
  }

  .lab-cta__media img {
    right: 0;
    bottom: -0.75rem;
    width: min(100%, 220px);
    transform: rotate(-8deg);
  }
}

/* Lab CTA diseño 2 responsive (igual que service-cta design-2) */
@media (max-width: 1199.98px) {
  .lab-cta--design-2 .lab-cta__content {
    max-width: min(58%, 32rem);
  }
}

@media (max-width: 991.98px) {
  .lab-cta--design-2,
  .lab-cta--design-2 .lab-cta__banner {
    min-height: clamp(220px, 34vw, 280px);
  }

  .lab-cta--design-2 .lab-cta__content {
    max-width: min(58%, 24rem);
  }
}

@media (max-width: 575.98px) {
  .lab-cta--design-2,
  .lab-cta--design-2 .lab-cta__banner {
    min-height: clamp(280px, 70vw, 380px);
  }

  .lab-cta--design-2 .lab-cta__banner {
    flex-direction: row;
    padding-bottom: 0;
  }

  .lab-cta--design-2 .lab-cta__content {
    max-width: min(70%, 22rem);
    padding: 1.75rem 1.5rem;
  }

  .lab-cta--design-2 .lab-cta__bg {
    background-position: right bottom;
    background-size: contain;
    opacity: 0.95;
  }
}


/* from single-lab.css */
@media (max-width: 991.98px) {
  .lab-industries__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    row-gap: 1.75rem;
  }
}

/* from single-lab.css */
@media (max-width: 575.98px) {
  .lab-industries__texture {
    background-position: left;
    background-size: contain;
    opacity: 0.95;
  }

  .lab-industries__panel {
    padding: 1.5rem 1rem;
  }

  .lab-industries__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.25rem 0.75rem;
  }
}

/* from single-lab.css */
@media (min-width: 992px) {
  .lab-related__arrow--prev {
    display: none;
  }
}

/* from single-lab.css */
@media (max-width: 991.98px) {
  .lab-related__carousel {
    padding-right: clamp(2.75rem, 8vw, 3.5rem);
  }
}

/* from single-lab.css */
@media (max-width: 575.98px) {
  .lab-related__texture {
    background-position: right;
    background-size: contain;
    opacity: 0.95;
  }

  .lab-related__carousel {
    padding-right: 3rem;
  }

  .lab-related__arrow {
    width: 44px;
    height: 44px;
  }

  .lab-related__arrow--next {
    right: 0;
  }
}

/* from single-lab.css */
@media (max-width: 991.98px) {
  .lab-benefits__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: clamp(1.75rem, 4vw, 2.5rem);
  }

  .lab-benefits__item:nth-child(2n)::after {
    display: none;
  }
}

/* from single-lab.css */
@media (max-width: 575.98px) {
  .lab-benefits__texture {
    background-position: left;
    background-size: contain;
    opacity: 0.95;
  }

  .lab-benefits__grid {
    grid-template-columns: 1fr;
    row-gap: 2rem;
  }

  .lab-benefits__item::after {
    display: none;
  }

  .lab-benefits__item:not(:last-child) {
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(38, 114, 255, 0.18);
  }

  .lab-benefits__text {
    max-width: 20rem;
  }
}

/* from single-service.css */
@media (max-width: 991.98px) {
  .service-intro__layout {
    grid-template-columns: 1fr;
    gap: clamp(2rem, 5vw, 2.75rem);
  }

  .service-intro__content {
    max-width: none;
  }

  .service-intro__media {
    max-width: min(100%, 520px);
    margin-inline: auto;
  }
}

/* from single-service.css */
@media (max-width: 575.98px) {
  .service-intro__texture {
    background-position: right;
    background-size: contain;
  }
}

/* from single-service.css */
@media (hover: hover) {
  .service-highlights__btn--primary:hover,
  .service-highlights__btn--primary:focus-visible {
    color: #ffffff;
    background: linear-gradient(90deg, #0d4499 0%, #1050b2 42%, #1a5fe0 100%);
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(38, 114, 255, 0.35);
  }

  .service-highlights__btn--outline:hover,
  .service-highlights__btn--outline:focus-visible {
    background: rgba(38, 114, 255, 0.08);
    color: #113373;
  }
}

/* from single-service.css */
@media (max-width: 991.98px) {
  .service-highlights__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: clamp(1.75rem, 4vw, 2.25rem);
  }

  .service-highlights__item:nth-child(odd):not(:last-child)::after {
    display: none;
  }

  .service-highlights__item:nth-child(1)::after,
  .service-highlights__item:nth-child(3)::after {
    display: block;
  }

  .service-highlights__item:nth-child(2)::after {
    display: none;
  }
}

/* from single-service.css */
@media (max-width: 575.98px) {
  .service-highlights__texture {
    background-position: left;
    background-size: contain;
  }

  .service-highlights__grid {
    grid-template-columns: 1fr;
    row-gap: 1.5rem;
  }

  .service-highlights__item::after {
    display: none !important;
  }

  .service-highlights__label {
    max-width: 16rem;
  }

  .service-highlights__actions {
    flex-direction: column;
    align-items: stretch;
    max-width: 320px;
    margin-inline: auto;
  }
}

/* from single-service.css */
@media (max-width: 575.98px) {
  .service-tanks__texture {
    background-position: right;
    background-size: contain;
    opacity: 0.95;
  }

  .service-tanks__carousel {
    padding: 0 2.75rem;
  }

  .service-tanks__arrow {
    width: 44px;
    height: 44px;
  }
}

/* from single-service.css */
@media (max-width: 991.98px) {
  .service-methods__layout {
    grid-template-columns: 1fr;
  }

  .service-methods__media {
    order: -1;
  }

  .service-methods__note {
    align-items: flex-start;
  }

  .service-methods__steps,
  .gdl-steps__list {
    grid-template-columns: 1fr;
    row-gap: 2rem;
  }

  .service-methods__step::after,
  .gdl-steps__item::after {
    display: none;
  }
}

@media (max-width: 1199.98px) and (min-width: 992px) {
  .gdl-steps__list--cols-4 {
    --gdl-steps-cols: 2;
    --gdl-steps-icon-size: 92px;
  }

  .gdl-steps__list--cols-4 .gdl-steps__item:nth-child(4n)::after {
    display: block;
  }

  .gdl-steps__list--cols-4 .gdl-steps__item:nth-child(2n)::after,
  .gdl-steps__list--cols-4 .gdl-steps__item:last-child::after {
    display: none;
  }
}

/* from single-service.css */
@media (max-width: 575.98px) {
  .service-methods__texture,
  .gdl-steps__texture {
    background-position: left;
    background-size: contain;
  }
}

/* service-stages responsive */
@media (max-width: 1199.98px) {
  .service-stages__card {
    padding: 2.25rem;
  }
}

@media (max-width: 991.98px) {
  .service-stages__grid {
    grid-template-columns: 1fr;
    max-width: 28rem;
    margin-left: auto;
    margin-right: auto;
  }

  .service-stages__card {
    padding: 2rem;
  }

  .service-stages__note {
    flex-wrap: wrap;
    border-radius: 20px;
    text-align: center;
  }
}

@media (max-width: 575.98px) {
  .service-stages__card {
    padding: 1.5rem;
    border-radius: 20px;
  }

  .service-stages__card-heading {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .service-stages__card-title {
    text-align: center;
  }

  .service-stages__note-text {
    font-size: 0.9375rem;
  }
}


/* service-included responsive */
@media (max-width: 991.98px) {
  .service-included__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 575.98px) {
  .service-included__grid {
    grid-template-columns: 1fr;
    padding-left: 0.75rem;
  }

  .service-included__icon {
    top: 0.65rem;
    left: 0.65rem;
  }

  .service-included__body {
    padding: 1rem 1.1rem 1.2rem;
  }
}

/* from single-service.css */
@media (max-width: 991.98px) {
  .service-gains__grid {
    grid-template-columns: 1fr;
    row-gap: 2rem;
  }

  .service-gains__item::after {
    display: none;
  }

  .service-gains__item:not(:last-child) {
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(38, 114, 255, 0.18);
  }
}

/* from single-service.css */
@media (max-width: 575.98px) {
  .service-gains__texture {
    background-position: right;
    background-size: contain;
    opacity: 0.95;
  }

  .service-gains__text {
    max-width: 20rem;
  }
}

/* from single-service.css */
@media (hover: hover) {
  .service-cta__btn:hover,
  .service-cta__btn:focus-visible {
    color: #003594;
    background: #f5f9ff;
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
  }
}

/* from single-service.css */
@media (max-width: 991.98px) {
  .service-cta,
  .service-cta__banner {
    min-height: clamp(300px, 38vw, 340px);
  }

  .service-cta__content {
    padding-right: 1.5rem;
  }

  .service-cta__media {
    width: min(50%, 340px);
    opacity: 0.95;
  }
}

/* from single-service.css */
@media (max-width: 575.98px) {
  .service-cta,
  .service-cta__banner {
    min-height: clamp(300px, 62vw, 440px);
  }

  .service-cta__banner {
    flex-direction: column;
    align-items: flex-start;
    padding-bottom: 0;
    justify-content: center;
  }

  .service-cta__content {
    width: 100%;
    padding: 1.75rem 1.5rem 1.75rem;
  }

  .service-cta__media {
    display: none;
  }

  .service-cta__media img {
    right: -0.5rem;
    bottom: 0;
    width: min(75%, 280px);
  }
}

/* Service CTA diseño 2 responsive */
@media (max-width: 1199.98px) {
  .service-cta--design-2 .service-cta__content {
    max-width: min(58%, 32rem);
  }
}

@media (max-width: 991.98px) {
  .service-cta--design-2,
  .service-cta--design-2 .service-cta__banner {
    min-height: clamp(220px, 34vw, 280px);
  }

  .service-cta--design-2 .service-cta__content {
    max-width: min(58%, 24rem);
  }
}

@media (max-width: 575.98px) {
  .service-cta--design-2,
  .service-cta--design-2 .service-cta__banner {
    min-height: clamp(280px, 70vw, 380px);
  }

  .service-cta--design-2 .service-cta__banner {
    flex-direction: row;
    padding-bottom: 0;
  }

  .service-cta--design-2 .service-cta__content {
    max-width: min(70%, 22rem);
    padding: 1.75rem 1.5rem;
  }

  .service-cta--design-2 .service-cta__bg {
    background-position: right bottom;
    background-size: contain;
    opacity: 0.95;
  }
}


/* from single-service.css */
@media (max-width: 991.98px) {
  .service-deliverables__layout {
    grid-template-columns: minmax(0, 1fr) minmax(0, 0.85fr);
    gap: clamp(1rem, 2vw, 1.5rem);
  }

  .service-deliverables__content {
    max-width: none;
  }

  .service-deliverables__item {
    width: min(100%, 20rem);
  }

  .service-deliverables__item:nth-child(2) {
    margin-left: clamp(0.85rem, 2.2vw, 1.5rem);
  }

  .service-deliverables__item:nth-child(3) {
    margin-left: clamp(1.7rem, 4.4vw, 3rem);
  }

  .service-deliverables__item:nth-child(4) {
    margin-left: clamp(2.55rem, 6.6vw, 4.5rem);
  }

  .service-deliverables__item:nth-child(5) {
    margin-left: clamp(3.4rem, 8.8vw, 6rem);
  }

  .service-deliverables__item:nth-child(6) {
    margin-left: clamp(4.25rem, 11vw, 7.5rem);
  }

  .service-deliverables__item:nth-child(7) {
    margin-left: clamp(5.1rem, 13.2vw, 9rem);
  }

  .service-deliverables__item:nth-child(8) {
    margin-left: clamp(5.95rem, 15.4vw, 10.5rem);
  }

  .service-deliverables__media {
    min-height: clamp(260px, 38vw, 380px);
  }

  .service-deliverables__media img {
    width: min(100%, 380px);
    max-height: clamp(280px, 42vw, 400px);
  }
}

/* from single-service.css */
@media (max-width: 767.98px) {
  .service-deliverables__layout {
    grid-template-columns: 1fr;
    gap: clamp(2rem, 5vw, 2.75rem);
  }

  .service-deliverables__media {
    order: -1;
    justify-content: center;
    align-items: center;
    min-height: 0;
  }

  .service-deliverables__media img {
    width: min(100%, 320px);
    max-height: none;
    object-position: center;
  }

  .service-deliverables__item:nth-child(n) {
    margin-left: 0;
    width: 100%;
  }
}

/* from single-service.css */
@media (max-width: 575.98px) {
  .service-deliverables__texture {
    background-position: left;
    background-size: contain;
    opacity: 0.75;
  }
}

/* from single-service.css */
@media (max-width: 991.98px) {
  .service-industries__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    row-gap: 1.75rem;
  }
}

/* from single-service.css */
@media (max-width: 575.98px) {
  .service-industries {
    background-color: #ffffff;
  }

  .service-industries__texture {
    background-position: right;
    background-size: contain;
  }

  .service-industries__panel {
    padding: 1.5rem 1rem;
  }

  .service-industries__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.25rem 0.75rem;
  }
}

/* from single-post.css */
@media (max-width: 991.98px) {
  .page-single-post .sidebar--post .sidebar__sticky {
    position: static;
  }

  .single-related__posts {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .entry-header,
  .page-single-post .entry-content,
  article.single-post .entry-content,
  .entry-footer {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .post-navigation {
    margin-left: 1.25rem;
    margin-right: 1.25rem;
  }
}

/* from single-post.css */
@media (max-width: 767.98px) {
  .single-related__posts {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin: 0 auto;
  }

  article.single-post {
    border-radius: 20px;
  }

  .entry-footer__copy-label {
    display: none;
  }
}

/* from single-post.css */
@media (max-width: 575.98px) {
  .post-navigation {
    grid-template-columns: 1fr;
  }

  .post-navigation__link--next {
    text-align: left;
    align-items: flex-start;
  }

  .entry-header__title {
    font-size: clamp(1.5rem, 7vw, 1.85rem);
  }
}

/* from product-category.css */
@media (hover: hover) {
  .product-archive__card:hover,
  .product-archive__card:focus-visible {
    transform: translateY(-4px);
    background: linear-gradient(180deg, #2672ff 0%, #1a50b2 52%, #113373 100%);
    border-color: transparent;
    box-shadow: 0 10px 28px rgba(16, 80, 178, 0.28);
    outline: none;
  }

  .product-archive__card:hover .product-archive__thumb,
  .product-archive__card:focus-visible .product-archive__thumb {
    border-bottom-color: rgba(255, 255, 255, 0.45);
  }

  .product-archive__card:hover .product-archive__thumb img,
  .product-archive__card:focus-visible .product-archive__thumb img {
    transform: scale(1.06);
  }

  .product-archive__card:hover .product-archive__name,
  .product-archive__card:focus-visible .product-archive__name,
  .product-archive__card:hover .product-archive__model,
  .product-archive__card:focus-visible .product-archive__model {
    color: rgba(255, 255, 255, 0.92);
  }

  .product-archive__card:hover .product-archive__status,
  .product-archive__card:focus-visible .product-archive__status {
    background: rgba(255, 255, 255, 0.16);
    color: #ffffff;
  }

  .product-archive__card:hover .product-archive__btn,
  .product-archive__card:focus-visible .product-archive__btn {
    background: #ffffff;
    color: #1050b2;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
  }
}

/* from product-category.css */
@media (max-width: 991.98px) {
  .product-archive__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .product-archive .sidebar .prod-shop-sidebar {
    padding: 1.75rem 1.5rem 1.625rem;
    border-radius: 24px;
  }

  .product-archive .sidebar .prod-shop-sidebar__list a {
    padding: 0.625rem 1rem;
    font-size: 0.9375rem;
  }
}

/* from product-category.css */
@media (max-width: 575.98px) {
  .product-archive {
    padding: 36px 0 56px;
  }

  .product-archive__grid {
    grid-template-columns: 1fr;
    max-width: 300px;
    margin: 0 auto;
  }

  .product-archive__toolbar {
    flex-direction: column;
    align-items: stretch;
  }

  .product-archive__sort {
    justify-content: space-between;
  }
}

/* from animations.css */
@media (min-width: 992px) and (prefers-reduced-motion: no-preference) {
  .hero-bg {
    animation: heroKenBurns 20s ease-in-out infinite alternate;
  }

  .hero:hover .hero-bg {
    animation-play-state: paused;
  }
}

/* from animations.css */
@media (max-width: 991.98px) {
  .main-nav.main-nav--fixed {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    background: rgba(11, 42, 133, 0.98);
  }

  .main-nav .nav-link::after {
    display: none;
  }
}

/* from animations.css */
@media (hover: hover) {
  .clients-homo-logos__item img,
  .clients-logos-grid__cell img {
    transition:
      transform 0.25s var(--ease-out),
      filter 0.25s var(--ease-out);
    filter: grayscale(0.15);
  }

  .clients-homo-logos__item:hover img,
  .clients-logos-grid__cell:hover img {
    transform: scale(1.06);
    filter: grayscale(0);
  }
}

/* from animations.css */
@media (max-width: 991.98px) {
  :root {
    --reveal-distance: 16px;
    --reveal-duration: 0.45s;
  }

  .hero-content > .hero-title,
  .hero-content > .hero-sub,
  .hero-content > .btn-quote,
  .hero-badge {
    animation-duration: 0.5s;
  }

  /* Evita desplazamiento horizontal por reveal lateral */
  .about-home,
  .cert-home,
  .labs-home,
  .spec-home,
  .prod-home,
  .clients-home {
    overflow-x: clip;
  }
}

/* from animations.css */
@media (max-width: 575.98px) {
  :root {
    --reveal-distance: 12px;
    --reveal-duration: 0.4s;
  }

  .reveal--left,
  .reveal--right {
    transform: translateY(var(--reveal-distance));
  }

  .reveal--left.is-visible,
  .reveal--right.is-visible {
    transform: none;
  }
}

/* from animations.css */
@media (hover: none) {
  .cert-card:hover,
  .cert-card:focus-within {
    transform: none;
    box-shadow: 0 4px 12px rgba(16, 50, 108, 0.18);
  }
}

/* from animations.css */
@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .hero-bg,
  .hero:hover .hero-bg {
    animation: none;
    transform: none;
  }

  .hero-content > .hero-title,
  .hero-content > .hero-sub,
  .hero-content > .btn-quote,
  .hero-badge,
  .hero-scroll {
    opacity: 1;
    transform: translateX(-50%);
    animation: none;
  }

  .hero-scroll__wheel {
    animation: none;
    opacity: 0.85;
    transform: none;
  }

  .section-badge.is-visible::before {
    animation: none;
  }

  .about-home__stat.is-visible {
    animation: none;
  }

  .cert-card:hover,
  .cert-card:focus-within {
    transform: none;
  }

  .clients-homo-logos__item img,
  .clients-logos-grid__cell img {
    filter: none;
  }

  .clients-homo-logos__item:hover img,
  .clients-logos-grid__cell:hover img {
    transform: none;
  }

  .lab-card:hover .lab-card__inner,
  .lab-card:focus-within .lab-card__inner,
  .lab-card:hover .lab-card__media img,
  .lab-card:focus-within .lab-card__media img {
    transform: none;
  }

  .prod-featured__card:hover,
  .prod-featured__card:focus-within,
  .prod-cat:hover,
  .prod-cat:focus-visible {
    transform: none;
  }

  .prod-featured__card:hover .prod-featured__thumb img,
  .prod-featured__card:focus-within .prod-featured__thumb img {
    transform: none;
  }

  .spec-home__slider .owl-item:not(.center) .spec-card {
    opacity: 1;
  }
}

/* from home-section-backgrounds.css */
@media (max-width: 767.98px) {
  :root {
    --home-pattern-opacity: 0.035;
  }

  .page-home--bg-v3 .labs-home::after,
  .page-home--bg-v3 .spec-home::after,
  .page-home--bg-v3 .prod-home::after,
  .page-home--bg-v3 .clients-home::after {
    opacity: 0.04;
  }
}

/* from home-section-backgrounds.css */
@media (prefers-reduced-motion: reduce) {
  .page-home--bg-v3 .about-home__particles,
  .page-home--bg-v3 .labs-home__particles,
  .page-home--bg-v3 .spec-home__particles,
  .page-home--bg-v3 .prod-home__particles,
  .page-home--bg-v3 .clients-home__particles {
    display: none;
  }
}

/* from bg-waves.css */
@media (prefers-reduced-motion: reduce) {
  .bg-waves__parallax > use {
    animation: none;
  }
}

/* from bg-waves.css */
@media (max-width: 768px) {
  .bg-waves__svg {
    height: 48px;
    min-height: 48px;
  }
}

/* from bg-waves.css */
@media (prefers-reduced-motion: reduce) {
  .bg-waves__ribbons--1,
  .bg-waves__ribbons--2 {
    animation: none;
  }
}

/* from hero.css */
@media (max-width: 991.98px) {
  .top-bar-contact .top-bar-item + .top-bar-item {
    border-left: none;
    padding-left: 0;
  }
}

/* from hero.css */
@media (min-width: 576px) {
  .hero-badge {
    bottom: clamp(1.125rem, 3vh + 0.75rem, 2rem);
  }
}

/* from hero.css */
@media (min-width: 992px) {
  .hero-badge {
    left: 3rem;
  }
}

/* from hero.css */
@media (min-width: 1200px) {
  .hero-badge {
    left: 4.375rem;
  }
}

/* from hero.css */
@media (min-width: 992px) {
  .brand-logo {
    height: 58px;
  }

  .hero-content {
    padding-bottom: 6rem;
  }
}

/* from hero.css */
@media (max-width: 991.98px) {
  .hero-title {
    font-size: clamp(2rem, 6vw, 3.125rem);
    line-height: 1.16;
  }

  .hero-content {
    padding-top: clamp(6.5rem, 16vh, 9rem);
  }
}

/* from hero.css */
@media (max-width: 575.98px) {
  .hero-title {
    font-size: 1.75rem;
    line-height: 1.2;
  }

  .hero-sub {
    margin-top: 1rem;
    font-size: 0.9375rem;
  }

  .btn-quote {
    margin-top: 1.75rem;
    font-size: 0.9375rem;
    padding: 0.8rem 2rem;
  }
}

/* from footer.css */
@media (max-width: 991.98px) {
  .metrindust-footer-top {
    padding: 36px 0 28px;
  }

  .metrindust-footer-newsletter-row {
    flex-direction: column;
    align-items: stretch;
  }

  .metrindust-footer-newsletter-title {
    max-width: none;
    text-align: center;
  }

  .metrindust-footer-newsletter-form {
    justify-content: stretch;
  }

  .metrindust-footer-newsletter-pill {
    max-width: none;
  }

  .metrindust-footer-main {
    padding: 36px 0 32px;
  }

  .metrindust-footer-bottom {
    padding: 22px 0 32px;
  }
}

/* from footer.css */
@media (max-width: 575.98px) {
  .metrindust-footer-newsletter-pill {
    flex-direction: column;
    border-radius: 16px;
    min-height: 0;
  }

  .metrindust-footer-newsletter-pill input[type="email"] {
    padding: 14px 18px;
  }

  .metrindust-footer-newsletter-btn {
    border-radius: 0 0 16px 16px;
    width: 100%;
    padding: 14px 20px;
  }
}

/* from whatsapp-float.css */
@media (prefers-reduced-motion: reduce) {
  .whatsapp-float {
    animation: none;
  }

  .whatsapp-float:hover,
  .whatsapp-float:focus-visible {
    transform: none;
  }

  .fab-scroll-top {
    transform: none;
    transition:
      opacity 0.22s ease,
      visibility 0.22s ease,
      background 0.2s ease,
      box-shadow 0.2s ease;
  }

  .fab-scroll-top.is-visible {
    transform: none;
  }
}

/* from nav.css */
@media (min-width: 992px) {
  .main-nav > .container {
    flex-wrap: nowrap;
    align-items: center;
  }

  .main-nav__panel.offcanvas-lg {
    position: static;
    z-index: auto;
    flex-grow: 1;
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    width: auto;
    max-width: none;
    transform: none !important;
    visibility: visible !important;
    background: transparent;
    border: 0;
    box-shadow: none;
  }

  .main-nav__panel-body {
    display: flex;
    flex-grow: 1;
    justify-content: flex-end;
    padding: 0;
    overflow: visible;
  }

  .main-nav__list > .nav-item--dropdown > .nav-item__row > .nav-link.active::after {
    transform: scaleX(1);
  }
}

/* from nav.css */
@media (max-width: 991.98px) {
  .main-nav__panel.offcanvas-lg {
    --bs-offcanvas-width: 95vw;
  }

  .main-nav__panel {
    background: linear-gradient(180deg, #0b2a85 0%, #113373 48%, #0d3278 100%) !important;
    border-left: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: -12px 0 40px rgba(0, 0, 0, 0.28);
  }

  .main-nav:has(.main-nav__panel.show) .navbar-toggler {
    visibility: hidden;
    pointer-events: none;
  }

  .main-nav__panel-header {
    flex-shrink: 0;
    padding: 1rem 1.25rem;
    padding-top: max(1rem, env(safe-area-inset-top, 0px));
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .main-nav__panel-title {
    margin: 0;
    font-family: "Roboto", sans-serif;
    font-weight: 600;
    font-size: 1.125rem;
    color: #ffffff;
  }

  .main-nav__panel-body {
    display: flex;
    flex-direction: column;
    min-height: 0;
    flex: 1 1 auto;
    padding: 0;
    padding-bottom: max(0px, env(safe-area-inset-bottom, 0px));
    overflow: hidden;
  }

  .main-nav__list {
    width: 100%;
    flex: 1 1 auto;
    gap: 0;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 0.5rem;
  }

  .main-nav__list > .nav-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .main-nav__list > .nav-item:last-child {
    border-bottom: 0;
  }

  .main-nav__list > .nav-item > .nav-link,
  .main-nav__list > .nav-item--dropdown > .nav-item__row > .nav-link {
    width: 100%;
    padding-left: 1.25rem !important;
    padding-right: 3.25rem !important;
  }

  .site-header .main-nav__panel .main-nav__list .nav-link,
  .site-header .main-nav__panel .main-nav__list .nav-link.active,
  .site-header .main-nav__panel .main-nav__list .nav-link[aria-current="page"],
  .site-header .main-nav__panel .main-nav__list .nav-link:hover,
  .site-header .main-nav__panel .main-nav__list .nav-link:focus-visible {
    color: #ffffff !important;
    text-shadow: none;
    opacity: 1;
  }

  .site-header .main-nav__panel .main-nav__list .nav-link.active,
  .site-header .main-nav__panel .main-nav__list .nav-link[aria-current="page"] {
    font-weight: 700;
  }

  .site-header .main-nav__panel .nav-item__caret {
    color: inherit !important;
  }

  .nav-item--dropdown > .nav-item__row {
    position: relative;
    align-items: stretch;
    width: 100%;
    border: 0;
    background: transparent;
  }

  .nav-item--dropdown > .nav-item__row > .nav-link {
    flex: 1;
    min-width: 0;
    border: 0;
    background: transparent;
  }

  .nav-item__subtoggle {
    position: absolute;
    right: 0.65rem;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    min-height: 0;
    margin: 0;
    padding: 0;
    border: 0 !important;
    border-radius: 50%;
    background: transparent !important;
    color: rgba(255, 255, 255, 0.9);
    transition: background 0.2s ease, color 0.2s ease;
  }

  .nav-item__subtoggle:hover,
  .nav-item__subtoggle:focus-visible {
    background: rgba(255, 255, 255, 0.1) !important;
    color: #ffffff;
  }

  .nav-item--dropdown.is-sub-open .nav-item__subtoggle {
    background: rgba(255, 255, 255, 0.08) !important;
  }

  .nav-item__subtoggle:focus-visible {
    outline: 2px solid #2672ff;
    outline-offset: 2px;
  }

  /* Bloque de contacto al pie del menú móvil */
  .main-nav__contact {
    flex-shrink: 0;
    margin-top: auto;
    padding: 1.25rem 1.25rem 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(0, 0, 0, 0.12);
  }

  .main-nav__contact-title {
    margin: 0 0 0.85rem;
    font-family: "Roboto", sans-serif;
    font-weight: 600;
    font-size: 0.8125rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.72);
  }

  .main-nav__contact-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 0.65rem;
  }

  .main-nav__contact-link {
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
    font-family: "Roboto", sans-serif;
    font-size: 0.875rem;
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.92);
    text-decoration: none;
    transition: color 0.2s ease, opacity 0.2s ease;
  }

  .main-nav__contact-link .bi {
    flex-shrink: 0;
    margin-top: 0.1rem;
    font-size: 1rem;
    color: #6eb4ff;
  }

  .main-nav__contact-link:hover,
  .main-nav__contact-link:focus-visible {
    color: #ffffff;
    opacity: 1;
  }

  .main-nav__contact-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 44px;
    margin-top: 1rem;
    padding: 0.6rem 1rem;
    border-radius: 999px;
    border: none;
    background: linear-gradient(90deg, #113373 0%, #1050b2 42%, #2972ff 100%);
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-size: 0.875rem;
    color: #ffffff !important;
    text-decoration: none;
    transition: filter 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
  }

  .main-nav__contact-cta:hover,
  .main-nav__contact-cta:focus-visible {
    filter: brightness(1.05);
    color: #ffffff !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
  }
}

/* from nav.css */
@media (min-width: 992px) {
  .nav-item__row {
    width: auto;
  }
}

/* from nav.css */
@media (max-width: 991.98px) {
  .nav-submenu {
    background: rgba(0, 0, 0, 0.15);
  }

  .nav-submenu__link {
    padding-left: 2rem;
  }
}

/* from nav.css */
@media (min-width: 992px) {
  .nav-item--dropdown {
    position: relative;
  }

  .nav-item__subtoggle {
    display: none;
  }

  /* Sin hueco entre enlace y panel: padding-top cuenta como zona hover */
  .nav-submenu.collapse {
    display: none !important;
    height: auto !important;
    visibility: visible;
    position: absolute;
    top: 100%;
    left: 50%;
    z-index: 1030;
    transform: translateX(-50%);
    min-width: 230px;
    margin: 0;
    padding: 0.5rem 0 0.4rem;
    border: 1px solid rgba(17, 51, 115, 0.08);
    border-radius: 0.5rem;
    background: #ededf0;
    box-shadow: 0 12px 32px rgba(17, 51, 115, 0.12);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease, visibility 0.2s ease;
  }

  /* Puente invisible para no perder hover al bajar el cursor */
  .nav-submenu.collapse::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 0.5rem;
  }

  .nav-item--dropdown:hover .nav-submenu:not(.nav-submenu--mobile-only):not(.nav-submenu--labs),
  .nav-item--dropdown:focus-within .nav-submenu:not(.nav-submenu--mobile-only):not(.nav-submenu--labs) {
    display: block !important;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%);
  }

  .nav-submenu--mobile-only.collapse {
    display: none !important;
    opacity: 0 !important;
    pointer-events: none !important;
  }

  .nav-item--dropdown-mobile:hover .nav-item__caret,
  .nav-item--dropdown-mobile:focus-within .nav-item__caret {
    transform: none;
  }

  .nav-item--dropdown:hover .nav-item__caret,
  .nav-item--dropdown:focus-within .nav-item__caret {
    transform: rotate(180deg);
  }

  .nav-submenu__link {
    padding: 0.55rem 1.15rem;
    min-height: auto;
    font-weight: 400;
    color: #5c5c60;
  }

  .nav-submenu__link:hover,
  .nav-submenu__link:focus-visible {
    background: rgba(26, 79, 156, 0.08);
    color: #1a4f9c;
  }

  .nav-submenu__icon {
    background: transparent;
    color: #1a4f9c;
    border-radius: 0;
  }

  .nav-submenu__link:hover .nav-submenu__icon,
  .nav-submenu__link:focus-visible .nav-submenu__icon {
    background: transparent;
    color: #0e36a2;
  }

  .nav-submenu__footer {
    border-top-color: rgba(17, 51, 115, 0.1);
  }

  .nav-submenu__cta {
    color: #1a4f9c;
  }

  .nav-submenu__cta:hover,
  .nav-submenu__cta:focus-visible {
    color: #0e36a2;
  }
}

/* from nav.css */
@media (min-width: 992px) {
  .page-internal .main-nav__panel {
    background: transparent;
  }
}

/* from nav.css */
@media (max-width: 575.98px) {
  .main-nav__panel {
    border-left: 0;
  }
}

/* from nav.css */
@media (max-width: 991.98px) {
  .nav-submenu__footer {
    padding-left: 2rem;
    padding-bottom: 0.9rem;
  }
}

/* from nav.css */
@media (min-width: 992px) {
  .nav-submenu--labs.collapse {
    width: min(680px, calc(100vw - 32px));
    padding: 0.75rem 0.75rem 0.65rem;
    transform: translateX(-60%);
  }

  .nav-item--dropdown:hover .nav-submenu.nav-submenu--labs,
  .nav-item--dropdown:focus-within .nav-submenu.nav-submenu--labs {
    display: grid !important;
    grid-template-columns: 1fr 1fr;
    gap: 2px 8px;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-60%);
  }

  .nav-submenu--labs .nav-submenu__link {
    border-radius: 10px;
    padding: 0.5rem 0.7rem;
    font-size: 0.85rem;
    white-space: nowrap;
  }

  .nav-submenu--labs .nav-submenu__footer {
    grid-column: 1 / -1;
    justify-content: space-between;
    padding: 0.7rem 0.7rem 0.2rem;
  }
}

/* from nav.css */
@media (prefers-reduced-motion: reduce) {
  .nav-submenu.collapse,
  .nav-item__caret,
  .nav-item__chevron {
    transition: none;
  }
}

/* from site-header.css */
@media (min-width: 992px) {
  .site-header:not(.site-header--scrolled) .main-nav .nav-link {
    color: #1050b2 !important;
    text-shadow: none;
    font-family: "Roboto", sans-serif;
    font-size: 18px;
    font-weight: 400;
    padding: 0.5rem 1.05rem !important;
    letter-spacing: 0;
  }

  .site-header:not(.site-header--scrolled) .main-nav .nav-link.active,
  .site-header:not(.site-header--scrolled) .main-nav .nav-link[aria-current="page"] {
    font-weight: 700;
    color: #113373 !important;
  }

  .site-header:not(.site-header--scrolled) .main-nav .nav-link:hover,
  .site-header:not(.site-header--scrolled) .main-nav .nav-link:focus-visible {
    color: #113373 !important;
    opacity: 1;
  }

  .site-header:not(.site-header--scrolled) .main-nav .nav-item__caret {
    color: inherit;
  }

  .site-header:not(.site-header--scrolled) .main-nav .nav-link::after {
    left: 1.05rem;
    right: 1.05rem;
    bottom: 0.08rem;
    height: 3px;
    background: #113373;
    border-radius: 2px;
  }

  .site-header:not(.site-header--scrolled) .main-nav .nav-link:not(.active):not([aria-current="page"])::after,
  .site-header:not(.site-header--scrolled) .main-nav .nav-link:not(.active):not([aria-current="page"]):hover::after,
  .site-header:not(.site-header--scrolled) .main-nav .nav-link:not(.active):not([aria-current="page"]):focus-visible::after {
    transform: scaleX(0) !important;
  }

  .site-header .main-nav .nav-link {
    color: #1050b2 !important;
    text-shadow: none;
    font-weight: 400;
  }

  .site-header .main-nav .nav-link.active,
  .site-header .main-nav .nav-link[aria-current="page"] {
    font-weight: 700;
    color: #113373 !important;
  }
}

/* from site-header.css */
@media (min-width: 1400px) {
  .site-header .brand-logo {
    width: 350px;
  }
}

/* from site-header.css */
@media (min-width: 992px) {
  .site-header .main-nav > .container {
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    gap: 0.75rem;
  }

  .site-header .main-nav__panel.offcanvas-lg {
    flex: 1 1 auto;
    width: auto;
    max-width: none;
    min-width: 1px;
    overflow: visible;
    display: flex !important;
    visibility: visible !important;
    transform: none !important;
  }

  .site-header .main-nav__panel-body {
    display: flex !important;
    flex: 1 1 auto;
    width: auto;
    min-width: 0;
    overflow: visible;
  }

  .site-header .main-nav__list {
    flex-wrap: nowrap;
    gap: 0.15rem;
  }
}

/* from site-header.css */
@media (min-width: 992px) {
  .site-header.site-header--scrolled .main-nav__panel.offcanvas-lg {
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    pointer-events: auto !important;
  }

  .site-header.site-header--scrolled .main-nav .nav-link,
  .site-header.site-header--scrolled .main-nav .nav-item__caret {
    color: #ffffff !important;
  }

  .site-header.site-header--scrolled .main-nav > .container {
    gap: 1rem;
  }

  .site-header.site-header--scrolled .main-nav .nav-link {
    font-size: 16px;
    padding: 0.5rem 0.85rem !important;
  }

  .site-header.site-header--scrolled .main-nav .nav-link::after {
    left: 0.85rem;
    right: 0.85rem;
  }
}

/* from site-header.css */
@media (min-width: 1400px) {
  .site-header.site-header--scrolled .brand-logo {
    width: 250px;
  }
}

/* from site-header.css */
@media (max-width: 1399.98px) and (min-width: 1200px) {
  .site-header:not(.site-header--scrolled) .main-nav .nav-link {
    padding-left: 0.8rem !important;
    padding-right: 0.8rem !important;
    font-size: 16px;
  }

  .site-header:not(.site-header--scrolled) .main-nav .nav-link::after {
    left: 0.8rem;
    right: 0.8rem;
  }

  .site-header .brand-logo {
    width: 280px;
  }

  .site-header.site-header--scrolled .brand-logo {
    width: 280px;
  }

  .site-header.site-header--scrolled .main-nav .nav-link {
    padding-left: 0.75rem !important;
    padding-right: 0.75rem !important;
    font-size: 15px;
  }

  .site-header.site-header--scrolled .main-nav .nav-link::after {
    left: 0.75rem;
    right: 0.75rem;
  }
}

/* from site-header.css */
@media (max-width: 1199.98px) and (min-width: 992px) {
  .site-header:not(.site-header--scrolled) .main-nav .nav-link {
    padding-left: 0.75rem !important;
    padding-right: 0.75rem !important;
    font-size: 16px;
  }

  .site-header .brand-logo,
  .site-header.site-header--scrolled .brand-logo {
    width: 250px;
  }

  .site-header.site-header--scrolled .brand-logo {
    width: 195px;
  }

  .site-header.site-header--scrolled .main-nav .nav-link {
    padding-left: 0.65rem !important;
    padding-right: 0.65rem !important;
    font-size: 15px;
  }

  .site-header.site-header--scrolled .main-nav .nav-link::after {
    left: 0.65rem;
    right: 0.65rem;
  }
}

/* from site-header.css */
@media (max-width: 575.98px) {
  .site-header.site-header--scrolled .main-nav {
    padding: max(0.875rem, env(safe-area-inset-top, 0px)) 0 1rem;
  }
}

/* from site-header.css */
@media (max-width: 991.98px) {
  .site-header .top-bar-contact .top-bar-item + .top-bar-item {
    border-left: 0;
    padding-left: 0;
  }

  .site-header .top-bar .btn-zone {
    display: none;
  }

  .site-header .main-nav {
    padding: 1rem 0;
  }

  .site-header .main-nav > .container {
    align-items: center;
  }

  .site-header .navbar-brand {
    padding: 0.35rem 0;
  }

  .site-header .brand-logo,
  .site-header.site-header--scrolled .brand-logo {
    width: 280px;
  }

  .site-header.site-header--scrolled .main-nav {
    padding: max(0.875rem, env(safe-area-inset-top, 0px)) 0 1rem;
  }

  .site-header .main-nav__panel .main-nav__list .nav-link,
  .site-header .main-nav__panel .main-nav__list .nav-link.active,
  .site-header .main-nav__panel .main-nav__list .nav-link[aria-current="page"],
  .site-header .main-nav__panel .main-nav__list .nav-link:hover,
  .site-header .main-nav__panel .main-nav__list .nav-link:focus-visible {
    color: #ffffff !important;
    text-shadow: none;
    opacity: 1;
  }

  .site-header .main-nav__panel .main-nav__list .nav-link.active,
  .site-header .main-nav__panel .main-nav__list .nav-link[aria-current="page"] {
    font-weight: 700;
  }

  .site-header .main-nav__panel .nav-item__caret {
    color: inherit !important;
  }
}

/* from home-header-bar.css */
@media (max-width: 991.98px) {
  .page-home--header-bar .hero:not(.hero--peek) .hero-content {
    padding-top: clamp(2rem, 5vh, 3rem);
  }
}

/* from home-header-bar.css */
@media (max-width: 991.98px) {
  .page-home--header-bar .hero--peek .hero-content {
    padding-top: clamp(2rem, 5vh, 3rem);
  }
}

/* from home-carousels.css */
@media (min-width: 768px) {
  .home-carousel {
    overflow: visible;
    padding-bottom: 0;
  }

  .home-carousel .swiper-pagination {
    display: none;
  }

  .about-home__certs-carousel .swiper-wrapper {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
    max-width: 1100px;
    margin: 0 auto;
    width: 100% !important;
    transform: none !important;
  }

  .about-home__certs-carousel .swiper-slide {
    width: auto !important;
    height: auto;
    margin: 0 !important;
  }

  .prod-cats__carousel .swiper-wrapper.prod-cats__grid {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    width: 100% !important;
    transform: none !important;
  }

  .prod-cats__carousel .swiper-slide {
    display: block;
    width: auto !important;
    height: auto;
    margin: 0 !important;
  }

  .prod-cats__carousel .swiper-slide .prod-cat {
    width: 100%;
    max-width: none;
    margin: 0;
    height: 100%;
    min-height: 0;
  }
}

/* from home-carousels.css */
@media (min-width: 768px) and (max-width: 991.98px) {
  .prod-cats__carousel .swiper-wrapper.prod-cats__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

/* from home-carousels.css */
@media (min-width: 992px) {
  .prod-featured__carousel.home-carousel {
    overflow: visible;
    padding-bottom: 0;
  }

  .prod-featured__carousel .swiper-pagination {
    display: none;
  }

  .prod-featured__carousel .swiper-wrapper.prod-featured__grid {
    display: grid !important;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: clamp(12px, 1.5vw, 16px);
    padding-bottom: 0;
    align-items: stretch;
    width: 100% !important;
    box-sizing: border-box;
    transform: none !important;
  }

  .prod-featured__carousel .swiper-slide {
    display: block;
    width: auto !important;
    height: auto;
    margin: 0 !important;
    flex-shrink: 0;
  }

  .prod-featured__carousel .swiper-slide .prod-featured__card {
    width: 100%;
    max-width: none;
    margin: 0;
    min-height: 100%;
  }
}

/* from home-carousels.css */
@media (min-width: 992px) and (max-width: 1199.98px) {
  .prod-featured__carousel .swiper-wrapper.prod-featured__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  }
}

/* from home-carousels.css */
@media (max-width: 991.98px) {
  .prod-featured__carousel.is-carousel-active {
    overflow: hidden;
    padding-bottom: 2.5rem;
  }

  .prod-featured__carousel.is-carousel-active .swiper-pagination {
    display: block;
  }

  .prod-featured__carousel.is-carousel-active .swiper-wrapper.prod-featured__grid {
    display: flex !important;
    grid-template-columns: unset !important;
    gap: 0;
    padding-bottom: 0;
    max-width: none;
    margin: 0;
    align-items: stretch;
  }

  .prod-featured__carousel.is-carousel-active .swiper-slide {
    height: auto;
    display: flex;
    flex-shrink: 0;
    box-sizing: border-box;
  }

  .prod-featured__carousel.is-carousel-active .prod-featured__card {
    width: 100%;
    max-width: none;
    margin: 0;
    min-height: 100%;
  }

  .prod-featured__carousel.is-carousel-active .prod-featured__thumb img {
    max-height: none;
  }
}

/* from home-carousels.css */
@media (max-width: 449.98px) {
  .prod-featured__carousel.is-carousel-active {
    padding-left: 4px;
    padding-right: 4px;
  }
}

/* from home-carousels.css */
@media (max-width: 767.98px) {
  .home-carousel.is-carousel-active {
    padding-bottom: 2.5rem;
  }

  .about-home__certs-carousel.is-carousel-active .cert-card {
    max-width: 300px;
    margin: 0 auto;
  }

  .prod-cats__carousel.is-carousel-active .swiper-wrapper.prod-cats__grid {
    display: flex !important;
    grid-template-columns: unset !important;
    gap: 0;
  }

  .prod-cats__carousel.is-carousel-active .swiper-slide {
    height: auto;
    flex-shrink: 0;
    box-sizing: border-box;
  }

  .prod-cats__carousel.is-carousel-active .prod-cat {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 16px 18px 18px;
    text-align: left;
  }

  .prod-cats__carousel.is-carousel-active .prod-cat__body {
    align-items: flex-start;
  }

  .prod-cats__carousel.is-carousel-active .prod-cat__media {
    order: -1;
    justify-content: center;
  }

  .prod-cats__carousel.is-carousel-active .prod-cat__title {
    font-size: 1.0625rem;
    line-height: 1.25;
  }

  .prod-cats__carousel.is-carousel-active .prod-cat__count,
  .prod-cats__carousel.is-carousel-active .prod-cat__btn {
    font-size: 0.8125rem;
  }

  .prod-cats__carousel.is-carousel-active .prod-cat__btn {
    margin: 0 auto;
  }
}

/* --- Estilos migrados desde inline HTML --- */
.product-category__brands-text {
  margin: 0;
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: var(--color-text);
  line-height: 1.5;
}
