/* =============================================
   HARVESTCHILE — MAIN STYLESHEET
   ============================================= */

@font-face {
  font-family: 'TKTypeRegular';
  src: url('/assets/fonts/TKTypeRegular.woff2') format('woff2'),
       url('/assets/fonts/TKTypeRegular.woff')  format('woff'),
       url('/assets/fonts/TKTypeRegular.ttf')   format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

/* ---- DESIGN TOKENS ---- */
:root {
  --teal-dark:   #0E645F;
  --teal-mid:    #0B8C87;
  --teal-light:  #0AB4AB;
  --teal-pale:   #E8F5F4;
  --teal-accent: #7DD8D4;

  --navy:        #0B8C87;
  --navy-mid:    #0E645F;
  --slate:       #2E4A4A;
  --gray:        #5A7272;
  --gray-light:  #C8D8D8;
  --gray-pale:   #F2F7F7;
  --white:       #FFFFFF;
  --accent-red:  #C62828;
  --text:        #0D2626;
  --text-soft:   #3A5454;

  --font-body: 'TKTypeRegular', system-ui, -apple-system, sans-serif;
  --radius: 6px;
  --radius-lg: 12px;
  --shadow: 0 1px 8px rgba(0,0,0,.07);
  --shadow-lg: 0 6px 28px rgba(0,0,0,.11);
  --transition: 0.2s ease;

  --space-xs:  8px;
  --space-sm:  16px;
  --space-md:  24px;
  --space-lg:  40px;
  --space-xl:  64px;

  --nav-bg: #0B8C87;
}

/* ---- RESET ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  font-size: 15px;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ---- TYPOGRAPHY ---- */
h1 { font-size: clamp(1.6rem, 4.5vw, 2.8rem); font-weight: 900; line-height: 1.1; letter-spacing: -.02em; }
h2 { font-size: clamp(1.25rem, 3vw, 2rem); font-weight: 800; line-height: 1.18; letter-spacing: -.015em; }
h3 { font-size: 1rem; font-weight: 700; }
h4 { font-size: .95rem; font-weight: 700; }
p  { color: var(--text-soft); line-height: 1.7; }

/* ---- LAYOUT ---- */
.container { max-width: 1160px; margin: 0 auto; padding: 0 20px; }
.section { padding: var(--space-xl) 0; }
.section--alt { background: var(--gray-pale); }

.section-header { text-align: center; margin-bottom: 40px; }
.section-eyebrow {
  font-size: .7rem; font-weight: 800; letter-spacing: .14em;
  text-transform: uppercase; color: var(--teal-mid); margin-bottom: 6px; display: block;
}
.section-desc { color: var(--text-soft); max-width: 520px; margin: 10px auto 0; }

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 12px 24px; border-radius: var(--radius);
  font-size: .85rem; font-weight: 700; cursor: pointer;
  transition: all var(--transition); border: 2px solid transparent;
  text-decoration: none; white-space: nowrap; letter-spacing: .02em;
}
.btn--sm { padding: 9px 18px; font-size: .78rem; }
.btn--primary {
  background: var(--teal-dark); color: var(--white); border-color: var(--teal-dark);
}
.btn--primary:hover { background: #094E4A; border-color: #094E4A; transform: translateY(-1px); box-shadow: 0 4px 14px rgba(14,100,95,.3); }
.btn--outline {
  background: transparent; color: var(--teal-dark); border-color: var(--teal-dark);
}
.btn--outline:hover { background: var(--teal-dark); color: var(--white); }
.btn--outline-white {
  background: transparent; color: var(--white); border-color: rgba(255,255,255,.55);
}
.btn--outline-white:hover { background: rgba(255,255,255,.1); border-color: var(--white); }
.btn--ghost {
  background: transparent; color: var(--teal-dark); border-color: var(--teal-light);
}
.btn--ghost:hover { background: var(--teal-pale); }
.btn--teal { background: var(--teal-dark); color: var(--white); font-size:.8rem; padding: 9px 18px; border-color: var(--teal-dark); }
.btn--teal:hover { background: #094E4A; }
.btn--white {
  background: var(--white); color: var(--teal-dark); border-color: var(--white); font-weight: 800;
}
.btn--white:hover { background: var(--teal-pale); }

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
  position: sticky; top: 0; z-index: 100;
  background: #0B8C87 !important;
  border-bottom: 1px solid rgba(255,255,255,.06);
  transition: box-shadow var(--transition);
}
body > header.navbar,
header#navbar {
  background: #0B8C87 !important;
}
.navbar.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,.35); }

.nav-inner {
  max-width: 1160px; margin: 0 auto; padding: 0 20px;
  display: flex; align-items: center; height: 76px; gap: 4px;
}

.logo { display: flex; align-items: center; gap: 12px; flex-shrink: 0; margin-right: auto; text-decoration: none; }
.logo-img { height: 54px; width: auto; display: block; object-fit: contain; }
.navbar .logo-img { filter: brightness(0) invert(1); }
.logo-divider { width: 1px; height: 38px; background: rgba(255,255,255,.2); }
.logo-tagline {
  display: flex; flex-direction: column; line-height: 1.2;
  font-size: .66rem; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: rgba(255,255,255,.55);
}
.logo-tagline strong {
  font-size: 1.2rem; font-weight: 900;
  color: var(--white); text-transform: none; letter-spacing: 0;
}

.navbar .logo-fallback { display: none; }
.navbar .logo-fallback[style*="flex"] { display: flex !important; }

.nav-links {
  display: flex; align-items: center; gap: 2px;
}
.nav-links > a {
  padding: 7px 13px; border-radius: 5px;
  font-size: .845rem; font-weight: 500;
  color: rgba(255,255,255,.78); transition: all var(--transition);
}
.nav-links > a:hover,
.nav-links > a.nav-active {
  color: var(--white);
  background: rgba(255,255,255,.1);
}

.nav-dropdown { position: relative; }
.nav-dropdown__toggle {
  background: none; border: none; cursor: pointer;
  padding: 7px 13px; border-radius: 5px;
  font-size: .845rem; font-weight: 500;
  color: rgba(255,255,255,.78);
  display: flex; align-items: center; gap: 5px;
  transition: all var(--transition); font-family: var(--font-body);
}
.nav-dropdown__toggle:hover,
.nav-dropdown__toggle.nav-active {
  color: var(--white); background: rgba(255,255,255,.1);
}
.nav-dropdown__toggle .arrow { font-size: .65rem; transition: transform var(--transition); }
.nav-dropdown:hover .nav-dropdown__toggle .arrow,
.nav-dropdown__toggle[aria-expanded="true"] .arrow { transform: rotate(180deg); }

.nav-dropdown__menu {
  position: absolute; top: calc(100% + 6px); left: 0;
  background: var(--white); border: 1px solid rgba(0,0,0,.1);
  border-radius: var(--radius); box-shadow: 0 8px 28px rgba(0,0,0,.14);
  min-width: 210px; padding: 5px; opacity: 0; visibility: hidden;
  transform: translateY(-6px); transition: all var(--transition);
  z-index: 200;
}
.nav-dropdown:hover .nav-dropdown__menu {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.nav-dropdown__menu a {
  display: block; padding: 9px 13px; border-radius: 5px;
  font-size: .83rem; color: var(--slate); font-weight: 500;
  transition: all var(--transition);
}
.nav-dropdown__menu a:hover,
.nav-dropdown__menu a.nav-active {
  background: var(--teal-pale); color: var(--teal-dark);
}

.lang-selector {
  display: flex; align-items: center; gap: 4px;
  font-size: .8rem; font-weight: 700; color: rgba(255,255,255,.7);
  padding: 6px 10px; border-radius: 5px; cursor: pointer;
  transition: background var(--transition); margin-left: 6px;
  flex-shrink: 0; border: 1.5px solid rgba(255,255,255,.2);
}
.lang-selector:hover { background: rgba(255,255,255,.1); color: var(--white); border-color: rgba(255,255,255,.4); }
.lang-selector .arrow { font-size: .6rem; }

.burger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer;
  padding: 8px; margin-left: 8px; border-radius: var(--radius);
  transition: background var(--transition);
}
.burger:hover { background: rgba(255,255,255,.1); }
.burger span { display: block; width: 22px; height: 2px; background: rgba(255,255,255,.85); border-radius: 2px; transition: all var(--transition); }
.burger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.burger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.burger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.nav-mobile-cta { display: none; }

/* ============================================
   PAGE HERO — versión split (texto | imagen)
   Usada en valvulas, cuchillos, servicios
   ============================================ */
.page-hero {
  position: relative; overflow: hidden;
  background: #0B8C87; color: var(--white);
  min-height: 300px; display: flex; align-items: center;
}
.page-hero__bg {
  position: absolute; inset: 0; z-index: 0;
}
.page-hero__bg--teal {
  background: linear-gradient(135deg, #0B8C87 0%, #0E645F 100%);
}
.page-hero__bg--dark {
  background: linear-gradient(135deg, #0a8a85 0%, #0B8C87 100%);
}
.page-hero__bg::after {
  content: ''; position: absolute;
  top: -60px; right: -60px;
  width: 380px; height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(10,180,171,.18) 0%, transparent 68%);
  pointer-events: none;
}
.page-hero__inner {
  position: relative; z-index: 1;
  padding: 44px 20px 40px; width: 100%;
}

/* Layout de 2 columnas para páginas de producto */
.page-hero__inner--split {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: nowrap;
}
.page-hero__text {
  flex: 1;
  min-width: 0;
}
.page-hero__img-wrap {
  flex-shrink: 0;
  width: 300px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.page-hero__product-img {
  width: 100%;
  max-width: 300px;
  height: auto;
  object-fit: contain;
  /* Pequeña sombra para que resalte sobre el fondo teal */
  filter: drop-shadow(0 8px 24px rgba(0,0,0,.25));
}

.page-hero__inner h1 { color: var(--white); margin-bottom: 10px; }
.page-hero__inner p  { color: rgba(255,255,255,.72); max-width: 500px; font-size: 1rem; }
.breadcrumb {
  font-size: .73rem; color: rgba(255,255,255,.45); margin-bottom: 14px;
  display: flex; align-items: center; gap: 6px; flex-wrap: wrap;
}
.breadcrumb a { color: rgba(255,255,255,.55); transition: color var(--transition); }
.breadcrumb a:hover { color: var(--teal-light); }
.breadcrumb-sep { color: rgba(255,255,255,.3); font-size: .6rem; }

.hero-checks { display: flex; flex-direction: column; gap: 8px; margin-top: 18px; }
.hero-checks span {
  font-size: .82rem; color: rgba(255,255,255,.82);
  display: flex; align-items: flex-start; gap: 10px;
}
.hero-check-icon {
  width: 20px; height: 20px; border-radius: 50%; flex-shrink: 0;
  background: rgba(10,180,171,.15); border: 1.5px solid rgba(10,180,171,.5);
  display: flex; align-items: center; justify-content: center;
  color: var(--teal-light); font-size: .7rem; margin-top: 1px;
}

/* ---- HOME HERO ---- */
.hero {
  position: relative; overflow: hidden; background: var(--white);
  padding: 0;
}
.hero-bg-shape {
  position: absolute; top: 0; right: 0;
  width: 55%; height: 100%; z-index: 0;
  background: linear-gradient(135deg, rgba(10,180,171,.07) 0%, rgba(14,100,95,.05) 100%);
  clip-path: polygon(8% 0%, 100% 0%, 100% 100%, 0% 100%);
  pointer-events: none;
}
.hero-inner {
  max-width: 1160px; margin: 0 auto; padding: 0 20px;
  display: grid; grid-template-columns: 1fr 1.1fr; gap: 0; align-items: stretch;
  position: relative; z-index: 1; width: 100%; min-height: 480px;
}
.hero-text-wrap {
  display: flex; flex-direction: column; justify-content: center;
  padding: 52px 40px 52px 0;
}
.eyebrow {
  font-size: .68rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase;
  color: var(--teal-mid); margin-bottom: 10px; display: block;
}
.hero-text-wrap h1 { margin-bottom: 14px; }
.hero-text-wrap h1 .accent { color: var(--teal-light); }
.hero-desc { font-size: 1rem; color: var(--text-soft); max-width: 400px; margin-bottom: 24px; }
.hero-actions { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 24px; }
.hero-badges { display: flex; gap: 10px; flex-wrap: wrap; }
.badge {
  background: var(--gray-pale); border: 1px solid var(--gray-light);
  border-radius: 6px; padding: 7px 12px; text-align: center;
  font-size: .6rem; font-weight: 800; letter-spacing: .06em; color: var(--slate); line-height: 1.3;
}

.hero-visual {
  display: flex; align-items: center; justify-content: center;
  padding: 32px 0;
}
.hero-visual img {
  width: 100%; max-width: 480px; object-fit: contain; height: auto;
}

.hero-dots {
  display: flex; gap: 7px; margin-top: 16px;
}
.hero-dots span {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--gray-light); transition: all .3s ease; cursor: pointer;
}
.hero-dots span.active { background: var(--teal-mid); width: 20px; border-radius: 3px; }

/* ---- BRANDS BAR ---- */
.brands-bar {
  background: #0E645F; color: var(--white);
  padding: 22px 20px;
}
.brands-bar-inner {
  max-width: 1160px; margin: 0 auto;
  display: flex; flex-direction: column; gap: 12px;
}
.brands-label {
  font-size: .65rem; font-weight: 800; letter-spacing: .13em;
  text-transform: uppercase; color: rgba(255,255,255,.55);
}
.brands-logos { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
.brand-logo { font-weight: 900; font-size: 1.1rem; letter-spacing: .05em; color: var(--white); }
.brand-sep { color: rgba(255,255,255,.25); font-size: 1.1rem; }
.brands-certifs { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; margin-top: 2px; }
.brands-certifs .badge {
  background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.2); color: rgba(255,255,255,.9);
}
.brands-certifs .certif-text {
  font-size: .72rem; font-weight: 700; color: rgba(255,255,255,.75);
}

/* ---- PRODUCTS GRID ---- */
.products-grid {
  display: flex; flex-direction: column; gap: 0;
}
.product-card {
  display: grid;
  grid-template-columns: 56px 110px 1fr 28px;
  align-items: center;
  gap: 18px;
  border-radius: 0;
  border: none;
  border-bottom: 1px solid #EAF0F0;
  box-shadow: none;
  padding: 20px 20px;
  background: var(--white);
  text-decoration: none;
  transition: background var(--transition);
}
.product-card:nth-child(odd) { background: #FAFCFC; }
.product-card:hover { background: var(--teal-pale); }

.product-card__circle {
  width: 52px; height: 52px; border-radius: 50%;
  background: rgba(10,180,171,.1); border: 1.5px solid rgba(10,180,171,.25);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; color: var(--teal-dark); flex-shrink: 0;
}
.product-card__img {
  width: 110px; height: 88px;
  background: none !important;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.product-card__img img { max-width: 100%; max-height: 88px; object-fit: contain; }
.product-card__body { padding: 0; }
.product-card__body h3 {
  font-size: .95rem; font-weight: 900; letter-spacing: .04em;
  margin-bottom: 3px; color: var(--text); text-transform: uppercase;
}
.product-card__body p { font-size: .83rem; margin-bottom: 5px; color: var(--text-soft); }
.product-card__cta {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: .78rem; font-weight: 700; color: var(--teal-dark);
  letter-spacing: .04em; text-transform: uppercase;
}
.product-card__chevron {
  font-size: 1.5rem; color: var(--gray-light); font-weight: 300; text-align: right; flex-shrink: 0;
}
.product-card:hover .product-card__chevron { color: var(--teal-mid); }

/* ---- INDUSTRIES GRID ---- */
.industries-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 12px; }
/* 7 columnas para la sección de aplicaciones de cuchillos */
.industries-grid--7 { grid-template-columns: repeat(7, 1fr); }

.industry-card {
  border: none; background: none; padding: 10px 4px;
  text-align: center;
}
.industry-icon {
  width: 52px; height: 52px; border-radius: 50%;
  border: 1.5px solid rgba(11,140,135,.25);
  background: rgba(10,180,171,.06);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; margin: 0 auto 8px; color: var(--teal-mid);
}
.industry-card h4 {
  font-size: .68rem; line-height: 1.3; font-weight: 700;
  letter-spacing: .04em; color: var(--text); text-transform: uppercase;
}

/* ---- CTA REUNION ---- */
.cta-reunion {
  background: var(--teal-dark);
  border-radius: var(--radius-lg); padding: 26px 32px;
  display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap;
}
.cta-reunion__text { display: flex; align-items: center; gap: 16px; }
.cta-icon { font-size: 2rem; flex-shrink: 0; }
.cta-reunion__text strong { display: block; color: var(--white); font-size: 1rem; margin-bottom: 3px; }
.cta-reunion__text p { color: rgba(255,255,255,.78); font-size: .85rem; margin: 0; }

/* ---- PRODUCT TABS ---- */
.product-tabs {
  display: flex; gap: 0; border-bottom: 2px solid #E5EEEE;
  margin-bottom: 28px; overflow-x: auto; -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.product-tabs::-webkit-scrollbar { display: none; }
.product-tabs button {
  background: none; border: none; cursor: pointer; font-family: var(--font-body);
  padding: 13px 16px; font-size: .77rem; font-weight: 800; color: var(--gray);
  border-bottom: 3px solid transparent; margin-bottom: -2px;
  white-space: nowrap; transition: all var(--transition);
  letter-spacing: .06em; text-transform: uppercase;
}
.product-tabs button:hover { color: var(--teal-dark); }
.product-tabs button.active { color: var(--teal-dark); border-bottom-color: var(--teal-dark); }
.tab-panel { display: none; }
.tab-panel.active { display: block; }

/* ---- SERIES NAV ---- */
.series-nav {
  display: flex; gap: 10px; overflow-x: auto; padding-bottom: 10px; margin-bottom: 32px;
  scrollbar-width: thin; -webkit-overflow-scrolling: touch;
}
.series-nav__item {
  background: var(--white); border: 2px solid #E5EEEE; border-radius: var(--radius-lg);
  padding: 14px 16px; min-width: 130px; text-align: center; cursor: pointer;
  transition: all var(--transition); flex-shrink: 0; text-decoration: none; display: block;
}
.series-nav__item:hover { border-color: var(--teal-mid); background: var(--teal-pale); }
.series-nav__item.active { border-color: var(--teal-mid); background: var(--teal-pale); }
.series-nav__item strong { display: block; font-size: .88rem; color: var(--text); margin-bottom: 2px; }
.series-nav__item span { font-size: .7rem; color: var(--text-soft); display: block; line-height: 1.3; }
.series-nav__item small { font-size: .65rem; color: var(--gray); margin-top: 3px; display: block; }

/* ---- PRODUCT DETAIL ---- */
.product-detail {
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start;
  background: var(--white); border: 1px solid #E5EEEE; border-radius: var(--radius-lg);
  padding: 36px; box-shadow: var(--shadow);
}
.product-detail__eyebrow {
  font-size: .7rem; font-weight: 800; letter-spacing: .12em;
  text-transform: uppercase; color: var(--teal-mid); margin-bottom: 5px;
}
.product-detail__text h2 { margin-bottom: 10px; color: var(--teal-dark); }
.product-detail__text p { margin-bottom: 14px; }
.detail-feats { margin: 14px 0; }
.detail-feats li {
  padding: 6px 0; font-size: .86rem; color: var(--text-soft);
  border-bottom: 1px solid #EAF0F0; display: flex; align-items: flex-start; gap: 9px;
}
.detail-feats li::before { content: '✓'; color: var(--teal-mid); font-weight: 800; flex-shrink: 0; margin-top: 1px; }
.detail-actions { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 20px; }

.product-detail__specs h4 {
  margin-bottom: 12px; color: var(--text); font-size: .88rem;
  text-transform: uppercase; letter-spacing: .06em;
}
.specs-grid {
  display: grid; grid-template-columns: 1fr; gap: 0; margin-bottom: 20px;
  border: 1px solid #E5EEEE; border-radius: var(--radius); overflow: hidden;
}
.spec {
  background: var(--white); padding: 10px 14px; border-bottom: 1px solid #EAF0F0;
  display: grid; grid-template-columns: 1fr 1fr; gap: 8px; align-items: center;
}
.spec:last-child { border-bottom: none; }
.spec:nth-child(even) { background: #FAFCFC; }
.spec strong { display: block; font-size: .67rem; letter-spacing: .08em; text-transform: uppercase; color: var(--gray); }
.spec span { font-size: .83rem; color: var(--text); font-weight: 500; }

/* ---- WHY GRID ---- */
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }

/* 5 columnas para servicios — usa auto-fit para que sea fluido */
.why-grid--5 {
  grid-template-columns: repeat(5, 1fr);
}

.why-item {
  background: var(--white); border-radius: var(--radius-lg); padding: 20px 16px;
  text-align: center; border: 1px solid #E5EEEE; transition: all var(--transition);
}
.why-item:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); border-color: var(--teal-accent); }
.why-icon {
  width: 48px; height: 48px; border-radius: 50%;
  border: 1.5px solid rgba(10,180,171,.3); background: var(--teal-pale);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; margin: 0 auto 12px; color: var(--teal-mid);
}
.why-item strong { display: block; color: var(--text); margin-bottom: 5px; font-size: .88rem; text-transform: uppercase; letter-spacing: .04em; }
.why-item p { font-size: .8rem; }

/* ---- SERVICES LIST ---- */
.services-list { display: flex; flex-direction: column; }
.service-item {
  background: var(--white); border-bottom: 1px solid #EAF0F0;
  padding: 28px 0; display: grid; grid-template-columns: 200px 1fr 24px;
  gap: 24px; align-items: start; transition: all var(--transition);
}
.service-item:hover { background: #FAFCFC; }
.service-img { width: 200px; height: 140px; border-radius: var(--radius-lg); object-fit: cover; flex-shrink: 0; }
.service-img-placeholder {
  width: 200px; height: 140px; border-radius: var(--radius-lg);
  background: var(--teal-pale); display: flex; align-items: center; justify-content: center;
  font-size: 2.5rem; flex-shrink: 0; border: 1.5px solid rgba(10,180,171,.2);
  overflow: hidden;
}
.service-img-placeholder img { width: 100%; height: 100%; object-fit: cover; }
.service-body h3 {
  font-size: .85rem; font-weight: 900; color: var(--teal-dark);
  letter-spacing: .08em; text-transform: uppercase; margin-bottom: 2px;
}
.service-tagline { font-size: .88rem; font-weight: 600; color: var(--text-soft); margin-bottom: 10px; }
.service-body p { font-size: .86rem; margin-bottom: 10px; }
.service-list li {
  font-size: .83rem; color: var(--text-soft); padding: 3px 0;
  display: flex; align-items: flex-start; gap: 7px;
}
.service-list li::before { content: '✓'; color: var(--teal-mid); font-weight: 800; flex-shrink: 0; margin-top: 2px; }
.service-chevron { font-size: 1.3rem; color: var(--gray-light); align-self: center; }

/* ---- CATALOG PAGE ---- */
.cat-filter {
  display: flex; gap: 0; margin-bottom: 24px; border-bottom: 2px solid #E5EEEE;
  overflow-x: auto; scrollbar-width: none;
}
.cat-filter::-webkit-scrollbar { display: none; }
.cat-btn {
  padding: 10px 16px; border: none; border-bottom: 3px solid transparent; margin-bottom: -2px;
  font-size: .76rem; font-weight: 800; color: var(--gray); cursor: pointer;
  transition: all var(--transition); background: none; white-space: nowrap;
  letter-spacing: .06em; text-transform: uppercase;
  display: flex; flex-direction: column; align-items: center; gap: 5px; text-decoration: none;
}
.cat-btn .cat-btn-icon { font-size: 1.1rem; }
.cat-btn:hover { color: var(--teal-dark); }
.cat-btn.active { color: var(--teal-dark); border-bottom-color: var(--teal-dark); }

.cat-grid {
  display: flex; flex-direction: column; gap: 0;
  margin-bottom: 32px; border: 1px solid #E5EEEE; border-radius: var(--radius-lg); overflow: hidden;
}
.cat-card {
  background: var(--white); border: none; border-bottom: 1px solid #EAF0F0;
  padding: 18px 22px; display: grid; grid-template-columns: 130px 1fr auto;
  gap: 20px; align-items: center; transition: background var(--transition);
}
.cat-card:last-child { border-bottom: none; }
.cat-card:hover { background: #FAFCFC; }
.cat-card__thumb {
  width: 130px; height: 88px; border-radius: var(--radius);
  background: var(--gray-pale); display: flex; align-items: center; justify-content: center;
  overflow: hidden; flex-shrink: 0;
}
.cat-card__thumb img { width: 100%; height: 100%; object-fit: cover; }
.cat-card__thumb--placeholder {
  background: linear-gradient(135deg, var(--teal-pale), rgba(10,180,171,.08));
  font-size: .58rem; font-weight: 800; color: var(--teal-dark); text-align: center;
  padding: 8px; line-height: 1.4; letter-spacing: .04em; white-space: pre-line;
  width: 100%; height: 100%; display: flex; align-items: center; justify-content: center;
}
.cat-card__body h4 { font-size: .96rem; font-weight: 800; margin-bottom: 4px; color: var(--text); }
.cat-card__body p { font-size: .83rem; color: var(--text-soft); }
.cat-meta { display: flex; gap: 12px; margin-top: 8px; flex-wrap: wrap; }
.cat-meta span { font-size: .7rem; color: var(--gray); font-weight: 600; display: flex; align-items: center; gap: 4px; }

.cat-download {
  padding: 10px 18px; border: 2px solid var(--teal-dark); border-radius: var(--radius);
  font-size: .78rem; font-weight: 800; color: var(--teal-dark); white-space: nowrap;
  transition: all var(--transition); display: flex; align-items: center; gap: 6px;
  letter-spacing: .04em; text-transform: uppercase; flex-shrink: 0;
}
.cat-download:hover { background: var(--teal-dark); color: var(--white); }

.cat-cta {
  background: var(--teal-pale); border: 1px solid rgba(10,180,171,.25); border-radius: var(--radius-lg);
  padding: 22px 26px; display: flex; align-items: center; justify-content: space-between;
  gap: 16px; flex-wrap: wrap; margin-bottom: 32px;
}
.cat-cta p { font-size: .88rem; margin: 0; color: var(--text-soft); }

.cat-features { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 32px; }
.cat-feat {
  text-align: center; padding: 20px 16px;
  border: 1px solid #E5EEEE; border-radius: var(--radius-lg); background: var(--white);
}
.cat-feat .feat-icon {
  width: 44px; height: 44px; border-radius: 50%;
  border: 1.5px solid rgba(10,180,171,.3); background: var(--teal-pale);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; margin: 0 auto 10px; color: var(--teal-mid);
}
.cat-feat strong {
  display: block; font-size: .82rem; color: var(--teal-dark); margin-bottom: 4px;
  font-weight: 800; letter-spacing: .04em; text-transform: uppercase;
}
.cat-feat p { font-size: .77rem; }

.empty-state {
  text-align: center; padding: 64px 20px;
  border: 2px dashed var(--gray-light); border-radius: var(--radius-lg);
}
.empty-state__icon { font-size: 2.8rem; margin-bottom: 14px; }
.empty-state h3 { margin-bottom: 7px; }
.empty-state p { margin-bottom: 18px; }

/* ---- CONTACT PAGE ---- */
.contact-how-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-bottom: 40px;
}
.contact-how-item {
  background: var(--white); border: 1px solid #E5EEEE; border-radius: var(--radius-lg);
  padding: 22px 16px; text-align: center;
}
.contact-how-icon {
  width: 50px; height: 50px; border-radius: 50%; background: var(--teal-pale);
  border: 1.5px solid rgba(10,180,171,.3);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; margin: 0 auto 12px; color: var(--teal-mid);
}
.contact-how-item strong {
  display: block; font-size: .83rem; font-weight: 800; margin-bottom: 5px;
  color: var(--text); text-transform: uppercase; letter-spacing: .04em;
}
.contact-how-item p { font-size: .78rem; margin-bottom: 7px; }
.contact-how-item a { color: var(--teal-dark); font-size: .83rem; font-weight: 600; }
.contact-how-item a:hover { text-decoration: underline; }

.contact-layout {
  display: grid; grid-template-columns: 1fr 260px; gap: 28px; align-items: start;
}
.contact-form-section h3 { font-size: 1.1rem; font-weight: 800; margin-bottom: 20px; color: var(--text); }

.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 11px; }
.form-full { grid-column: 1 / -1; }
.form-group { display: flex; flex-direction: column; gap: 4px; }
.form-group label { font-size: .75rem; font-weight: 700; color: var(--text); letter-spacing: .03em; }
.form-group input,
.form-group select,
.form-group textarea {
  border: 1.5px solid var(--gray-light); border-radius: var(--radius);
  padding: 10px 13px; font-size: 15px; font-family: var(--font-body);
  color: var(--text); background: var(--white); transition: border var(--transition);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { outline: none; border-color: var(--teal-mid); }
.form-group textarea { resize: vertical; min-height: 110px; }
.form-group input.field-error,
.form-group select.field-error,
.form-group textarea.field-error { border-color: var(--accent-red); }

.form-checkbox { display: flex; align-items: center; gap: 10px; margin: 12px 0; }
.form-checkbox input { width: 16px; height: 16px; accent-color: var(--teal-dark); cursor: pointer; flex-shrink: 0; }
.form-checkbox label { font-size: .78rem; color: var(--text-soft); cursor: pointer; }
.form-checkbox a { color: var(--teal-dark); font-weight: 600; }

.contact-aside { display: flex; flex-direction: column; gap: 14px; }
.aside-card {
  background: var(--white); border: 1px solid #E5EEEE; border-radius: var(--radius-lg);
  padding: 16px;
}
.aside-card .aside-icon {
  width: 34px; height: 34px; border-radius: 50%; background: var(--teal-pale);
  border: 1.5px solid rgba(10,180,171,.3);
  display: flex; align-items: center; justify-content: center;
  font-size: .9rem; margin-bottom: 10px; color: var(--teal-mid);
}
.aside-card strong { display: block; font-size: .83rem; color: var(--text); margin-bottom: 4px; font-weight: 700; }
.aside-card p { font-size: .78rem; }

.map-container {
  border-radius: var(--radius-lg); overflow: hidden; margin: 32px 0;
  border: 1px solid #E5EEEE;
}
.map-container iframe { display: block; width: 100%; }
.map-address {
  padding: 14px 18px; background: var(--white); border-top: 1px solid #EAF0F0;
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 10px;
}
.map-address strong { display: block; font-size: .88rem; margin-bottom: 2px; }
.map-address p { font-size: .8rem; }
.map-address a { color: var(--teal-dark); font-weight: 700; font-size: .8rem; }

.alert { padding: 10px 15px; border-radius: var(--radius); font-size: .84rem; margin-bottom: 14px; }
.alert-success { background: var(--teal-pale); color: var(--teal-dark); border: 1px solid rgba(10,180,171,.3); }
.alert-error   { background: #fee2e2; color: #dc2626; border: 1px solid #fca5a5; }

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: #0B8C87 !important;
  color: rgba(255,255,255,.7);
  padding: 52px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 220px 1fr 1fr 1fr 1fr;
  gap: 28px; margin-bottom: 36px;
}
.footer-logo { margin-bottom: 10px; display: inline-block; }
.footer-brand p {
  font-size: .78rem; color: rgba(255,255,255,.45);
  margin-bottom: 14px; margin-top: 8px; line-height: 1.6;
}
.footer-social { display: flex; gap: 7px; }
.footer-social a {
  width: 34px; height: 34px; background: rgba(255,255,255,.07); border-radius: 6px;
  display: flex; align-items: center; justify-content: center; font-size: .82rem;
  transition: all var(--transition); color: rgba(255,255,255,.7);
}
.footer-social a:hover { background: var(--teal-mid); color: var(--white); }
.footer-col h5 {
  font-size: .68rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase;
  color: rgba(255,255,255,.35); margin-bottom: 14px;
}
.footer-col a {
  display: block; font-size: .82rem; color: rgba(255,255,255,.62);
  padding: 4px 0; transition: color var(--transition);
}
.footer-col a:hover { color: var(--teal-light); }
.footer-contact-item { display: flex; align-items: flex-start; gap: 8px; margin-bottom: 8px; }
.footer-contact-icon { font-size: .9rem; color: var(--teal-light); flex-shrink: 0; margin-top: 2px; }
.footer-contact-item p { font-size: .78rem; color: rgba(255,255,255,.62); }
.footer-contact-item a { color: rgba(255,255,255,.62); }
.footer-contact-item a:hover { color: var(--teal-light); }
.footer-badge {
  display: flex; align-items: center; gap: 6px; margin-top: 12px;
  font-size: .65rem; font-weight: 800; letter-spacing: .08em; color: rgba(255,255,255,.4);
  text-transform: uppercase;
}
.footer-engineered {
  font-size: .72rem; font-weight: 700; color: rgba(255,255,255,.6);
  text-transform: uppercase; letter-spacing: .08em; margin-top: 12px;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.07); padding: 16px 0;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 8px;
}
.footer-bottom p { font-size: .73rem; color: rgba(255,255,255,.3); }
.footer-bottom-links { display: flex; gap: 16px; }
.footer-bottom-links a { color: rgba(255,255,255,.35); font-size: .73rem; transition: color var(--transition); }
.footer-bottom-links a:hover { color: var(--teal-light); }

/* ---- ADMIN PANEL ---- */
.admin-wrap { min-height: 100vh; background: #EFF4F4; }
.admin-header {
  background: #0B8C87; color: var(--white); padding: 13px 20px;
  display: flex; align-items: center; justify-content: space-between; gap: 12px; flex-wrap: wrap;
}
.admin-main { max-width: 1020px; margin: 0 auto; padding: 24px 16px; }
.admin-card {
  background: var(--white); border-radius: var(--radius-lg);
  border: 1px solid #E5EEEE; padding: 24px; margin-bottom: 20px;
}
.admin-card h2 { font-size: 1.05rem; margin-bottom: 18px; display: flex; align-items: center; gap: 8px; }
.admin-table { width: 100%; border-collapse: collapse; font-size: .84rem; min-width: 560px; }
.admin-table th {
  text-align: left; padding: 8px 12px; background: #F4F8F8;
  font-size: .67rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; color: var(--gray);
  border-bottom: 1px solid #E5EEEE;
}
.admin-table td { padding: 10px 12px; border-bottom: 1px solid #EAF0F0; vertical-align: middle; }
.admin-table tr:last-child td { border-bottom: none; }
.admin-tag {
  display: inline-block; padding: 3px 8px; border-radius: 12px; font-size: .68rem; font-weight: 700;
}
.tag-valvulas  { background: #dbeafe; color: #1d4ed8; }
.tag-cuchillos { background: var(--teal-pale); color: var(--teal-dark); }
.tag-bombas    { background: #fef3c7; color: #92400e; }
.tag-fichas    { background: #ede9fe; color: #5b21b6; }

.admin-form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 13px; }
.admin-form-full { grid-column: 1 / -1; }
.admin-form-group { display: flex; flex-direction: column; gap: 4px; }
.admin-form-group label { font-size: .75rem; font-weight: 700; color: var(--text); }
.admin-form-group input,
.admin-form-group select,
.admin-form-group textarea {
  border: 1.5px solid var(--gray-light); border-radius: var(--radius);
  padding: 9px 12px; font-size: 15px; font-family: var(--font-body); color: var(--text);
  transition: border var(--transition); background: var(--white);
}
.admin-form-group input:focus,
.admin-form-group select:focus { outline: none; border-color: var(--teal-mid); }
.btn-danger {
  background: #fee2e2; color: #dc2626; border-radius: var(--radius);
  font-size: .76rem; font-weight: 700; padding: 6px 11px; border: none; cursor: pointer;
  transition: all var(--transition); white-space: nowrap;
}
.btn-danger:hover { background: #dc2626; color: var(--white); }

.login-wrap {
  min-height: 100vh; background: #0B8C87;
  display: flex; align-items: center; justify-content: center; padding: 20px;
}
.login-card {
  background: var(--white); border-radius: var(--radius-lg); padding: 36px;
  width: 100%; max-width: 360px; box-shadow: 0 20px 60px rgba(0,0,0,.3);
}
.login-card h1 { font-size: 1.4rem; margin-bottom: 4px; }
.login-card p  { font-size: .84rem; margin-bottom: 22px; }

/* ---- IMAGES ---- */
.hero-visual img { max-width: 480px; width: 100%; object-fit: contain; }
.product-detail__specs img.serie-img {
  max-width: 220px; width: 100%; display: block;
  margin: 0 auto 14px; object-fit: contain;
}
.contact-office-img {
  width: 100%; height: 100%; object-fit: cover;
  border-radius: var(--radius-lg);
}

/* =============================================
   RESPONSIVE — TABLET (≤900px)
   ============================================= */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; min-height: auto; }
  .hero-text-wrap { padding: 40px 0 20px; }
  .hero-visual { padding: 20px 0 36px; }
  .hero-visual img { max-width: 340px; }
  .industries-grid { grid-template-columns: repeat(3, 1fr); }
  .industries-grid--7 { grid-template-columns: repeat(4, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid--5 { grid-template-columns: repeat(3, 1fr); }
  .cat-features { grid-template-columns: repeat(2, 1fr); }
  .contact-how-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-layout { grid-template-columns: 1fr; }
  .product-detail { grid-template-columns: 1fr; padding: 24px; gap: 28px; }
  .service-item { grid-template-columns: 160px 1fr 20px; }
  .service-img, .service-img-placeholder { width: 160px; height: 120px; }

  /* Hero split en tablet: imagen más pequeña */
  .page-hero__inner--split { gap: 24px; }
  .page-hero__img-wrap { width: 220px; }
  .page-hero__product-img { max-width: 220px; }
}

/* =============================================
   RESPONSIVE — MOBILE (≤640px)
   ============================================= */
@media (max-width: 640px) {

  /* Navbar mobile */
  .burger { display: flex; }
  .lang-selector { padding: 5px 8px; font-size: .75rem; }
  .logo-img { height: 44px !important; }
  .nav-inner { height: 68px; }

  .nav-links {
    position: fixed;
    top: 68px; left: 0; right: 0; bottom: 0;
    background: #0B8C87;
    padding: 10px 14px 32px;
    z-index: 99;
    overflow-y: auto;
    flex-direction: column;
    gap: 1px;
    align-items: stretch;
    transform: translateX(100%);
    transition: transform .26s cubic-bezier(.4,0,.2,1);
    display: flex;
  }
  .nav-links.open { transform: translateX(0); }
  .nav-links > a {
    padding: 13px 14px; border-radius: var(--radius);
    font-size: .93rem; font-weight: 500;
    color: rgba(255,255,255,.85);
    border-bottom: 1px solid rgba(255,255,255,.07);
  }
  .nav-links > a:hover, .nav-links > a.nav-active {
    background: rgba(255,255,255,.08); color: var(--white);
  }
  .nav-dropdown { width: 100%; }
  .nav-dropdown__toggle {
    width: 100%; justify-content: space-between;
    padding: 13px 14px; font-size: .93rem; font-weight: 500;
    color: rgba(255,255,255,.85);
    border-radius: var(--radius); border-bottom: 1px solid rgba(255,255,255,.07);
  }
  .nav-dropdown__toggle:hover { background: rgba(255,255,255,.08); color: var(--white); }
  .nav-dropdown__menu {
    position: static;
    opacity: 1; visibility: hidden; max-height: 0; overflow: hidden;
    transform: none; box-shadow: none; border: none;
    background: rgba(255,255,255,.06); border-radius: var(--radius);
    padding: 0; margin: 0 0 2px;
    transition: max-height .25s ease, visibility .25s ease, padding .25s ease;
  }
  .nav-dropdown__menu.open { visibility: visible; max-height: 300px; padding: 5px; }
  .nav-dropdown__menu a { color: rgba(255,255,255,.78); font-size: .88rem; }
  .nav-dropdown__menu a:hover { background: rgba(255,255,255,.08); color: var(--white); }
  .nav-dropdown:hover .nav-dropdown__menu {
    opacity: 1; visibility: hidden; max-height: 0; padding: 0;
  }
  .nav-dropdown:hover .nav-dropdown__menu.open {
    visibility: visible; max-height: 300px; padding: 5px;
  }
  .nav-mobile-cta { display: block; margin-top: 14px; padding: 0 2px; }
  .nav-mobile-cta .btn { width: 100%; justify-content: center; font-size: .93rem; padding: 13px; }

  .section { padding: 44px 0; }

  /* Hero mobile — dos columnas como el index */
  .hero-inner {
    grid-template-columns: 1.1fr 1fr;
    min-height: auto;
    align-items: center;
  }
  .hero-text-wrap { padding: 28px 0 28px; }
  .hero-text-wrap h1 { font-size: 1.45rem; }
  .hero-desc { font-size: .82rem; margin-bottom: 14px; }
  .hero-actions { gap: 8px; }
  .hero-actions .btn { font-size: .78rem; padding: 10px 12px; }
  .hero-badges { display: none; }
  .hero-visual { padding: 0; justify-content: flex-end; }
  .hero-visual img { max-width: 100%; }
  .hero-bg-shape { display: none; }

  /* Page hero split en móvil: dos columnas, imagen a la derecha */
  .page-hero__inner--split {
    flex-direction: row;
    align-items: center;
    gap: 12px;
    padding: 24px 16px 20px;
    flex-wrap: nowrap;
  }
  .page-hero__text {
    flex: 1;
    min-width: 0;
  }
  /* Texto más compacto en móvil */
  .page-hero__inner--split h1 { font-size: 1.3rem; }
  .page-hero__inner--split p  { font-size: .78rem; }
  .page-hero__inner--split .hero-checks { display: none; }
  .page-hero__img-wrap {
    width: 120px;
    flex-shrink: 0;
    justify-content: flex-end;
  }
  .page-hero__product-img {
    max-width: 120px;
    width: 100%;
  }

  /* Products mobile */
  .product-card { grid-template-columns: 40px 80px 1fr 16px; padding: 14px 12px; gap: 10px; }
  .product-card__circle { width: 40px; height: 40px; font-size: 1rem; }
  .product-card__img { width: 80px; height: 68px; }
  .product-card__img img { max-height: 68px; }

  /* Industries mobile */
  .industries-grid { grid-template-columns: repeat(3, 1fr); gap: 8px; }
  .industries-grid--7 { grid-template-columns: repeat(3, 1fr); }
  .industry-icon { width: 44px; height: 44px; font-size: 1.2rem; }
  .industry-card h4 { font-size: .63rem; }

  /* Catalog mobile */
  .cat-card { grid-template-columns: 88px 1fr; grid-template-rows: auto auto; padding: 14px 14px; gap: 12px; }
  .cat-card__thumb { width: 88px; height: 68px; }
  .cat-download { grid-column: 1 / -1; text-align: center; justify-content: center; font-size: .74rem; }
  .cat-features { grid-template-columns: 1fr 1fr; }

  /* Contact mobile */
  .contact-how-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .contact-how-item { padding: 14px 10px; }
  .contact-how-icon { width: 42px; height: 42px; font-size: 1.1rem; }
  .form-grid { grid-template-columns: 1fr; }

  /* CTA mobile */
  .cta-reunion { flex-direction: column; text-align: center; padding: 22px 18px; gap: 16px; }
  .cta-reunion__text { flex-direction: column; align-items: center; }
  .cta-reunion .btn--white { width: 100%; justify-content: center; }

  /* Services mobile */
  .service-item { grid-template-columns: 1fr; padding: 20px 0; gap: 14px; }
  .service-item .service-chevron { display: none; }
  .service-img, .service-img-placeholder { width: 100%; height: 160px; }

  /* Product detail mobile */
  .product-detail { padding: 18px 14px; gap: 24px; }
  .detail-actions { flex-direction: column; }
  .detail-actions .btn { justify-content: center; }

  /* Why mobile */
  .why-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .why-grid--5 { grid-template-columns: 1fr 1fr; }

  /* Page hero mobile */
  .page-hero { min-height: auto; }

  /* Footer mobile */
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .footer-bottom { flex-direction: column; gap: 6px; text-align: center; }
  .footer-bottom-links { justify-content: center; }

  /* Admin mobile */
  .admin-form-grid { grid-template-columns: 1fr; }
  .admin-card { padding: 16px; }
  .admin-main { padding: 14px 10px; }

  /* Series nav mobile */
  .series-nav__item { min-width: 110px; }
}

@media (max-width: 380px) {
  .contact-how-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .why-grid--5 { grid-template-columns: 1fr; }
  .cat-features { grid-template-columns: 1fr; }
  .industries-grid { grid-template-columns: repeat(2, 1fr); }
  .industries-grid--7 { grid-template-columns: repeat(2, 1fr); }
  .hero-inner { grid-template-columns: 1fr !important; }
  .hero-visual { justify-content: center; padding: 0 0 20px; }
  .page-hero__inner--split { gap: 16px; }
}

@media (prefers-reduced-motion: reduce) {
  * { transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; }
}
/* Íconos de imagen en cards de producto (index) */
.pcard-icon-img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  display: block;
}

/* Íconos de imagen en "Cómo podemos ayudarle" (contacto) */
.contact-how-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}
.footer-icon-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.footer-icon-img {
  width: 16px;
  height: 16px;
  object-fit: contain;
}