@font-face {
  font-family: "Arial Rounded MT Bold";
  src: url("../fonts/ARLRDBD.TTF") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}


:root {
  --brand: #001489;
  --brand-dark: #003689;
  --brand-deep: #002560;
  --brand-soft: #bfd8ff;
  --cyan: #80b1ff;
  --ink: #002560;
  --muted: #5f6573;
  --line: #d9e5ff;
  --surface: #ffffff;
  --surface-alt: #f5f8ff;
  --shadow-sm: 0 10px 30px rgba(0, 54, 137, .10);
  --shadow-lg: 0 26px 70px rgba(0, 37, 96, .20);
  --radius-sm: 14px;
  --radius-md: 22px;
  --radius-lg: 34px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--surface);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
button { color: inherit; }
:focus-visible { outline: 3px solid rgba(128,177,255,.55); outline-offset: 4px; }

.skip-link {
  position: fixed;
  left: 16px;
  top: -80px;
  z-index: 9999;
  padding: 12px 18px;
  border-radius: 10px;
  background: var(--brand-deep);
  color: #fff;
  transition: top .2s ease;
}
.skip-link:focus { top: 16px; }

.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.section { padding: 92px 0; }
.section-sm { padding: 62px 0; }
.section-alt { background: var(--surface-alt); }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 14px;
  color: var(--brand);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.eyebrow::before { content: ""; width: 28px; height: 2px; background: var(--cyan); border-radius: 99px; }
h1, h2, h3, h4 { margin: 0; line-height: 1.12; letter-spacing: -.025em; }
h1 { font-size: clamp(2.55rem, 6vw, 5.4rem); }
h2 { font-size: clamp(2rem, 4vw, 3.35rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.65rem); }
p { margin: 0 0 1.15em; }
p:last-child { margin-bottom: 0; }
.lead { font-size: clamp(1.08rem, 1.7vw, 1.3rem); color: var(--muted); }
.muted { color: var(--muted); }
.section-heading { max-width: 760px; margin-bottom: 40px; }
.section-heading p { margin-top: 18px; }

.topbar {
  position: relative;
  z-index: 110;
  background: var(--brand-deep);
  color: rgba(255,255,255,.82);
  font-size: .84rem;
}
.topbar-inner {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.topbar-group { display: flex; align-items: center; gap: 22px; }
.topbar a { display: inline-flex; align-items: center; gap: 7px; transition: color .2s ease; }
.topbar a:hover { color: #fff; }
.topbar svg { width: 15px; height: 15px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(191,216,255,.9);
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(14px);
  transition: box-shadow .25s ease, background .25s ease;
}
.site-header.scrolled { box-shadow: 0 12px 30px rgba(0,20,137,.10); background: rgba(255,255,255,.97); }
.header-inner { min-height: 102px; display: flex; align-items: center; justify-content: space-between; gap: 32px; padding: 14px 0; }
.brand { display: inline-flex; align-items: center; flex: 0 0 auto; }
.brand-logo { display: block; width: auto; height: 72px; border-radius: 10px; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.site-nav { display: flex; align-items: center; gap: 6px; }
.site-nav > a, .nav-dropdown > a {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 15px;
  border-radius: 12px;
  color: #002560;
  font-size: .83rem;
  font-weight: 800;
  letter-spacing: .055em;
  text-transform: uppercase;
  transition: background .2s ease, color .2s ease;
}
.site-nav > a:hover, .nav-dropdown > a:hover { background: var(--brand-soft); color: var(--brand); }
.site-nav > a.active, .nav-dropdown > a.active { color: var(--brand); background: var(--brand-soft); }
.site-nav > a.active::after, .nav-dropdown > a.active::after {
  content: "";
  position: absolute;
  left: 15px;
  right: 15px;
  bottom: 6px;
  height: 2px;
  border-radius: 99px;
  background: var(--cyan);
}
.nav-dropdown { position: relative; }
.dropdown-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  width: 270px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, 8px);
  transition: opacity .2s ease, transform .2s ease, visibility .2s;
}
.nav-dropdown:hover .dropdown-menu, .nav-dropdown:focus-within .dropdown-menu { opacity: 1; visibility: visible; transform: translate(-50%, 0); }
.dropdown-menu a { display: block; padding: 11px 12px; border-radius: 10px; color: #002560; font-weight: 650; }
.dropdown-menu a:hover, .dropdown-menu a.active { background: var(--brand-soft); color: var(--brand); }
.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: #fff;
  cursor: pointer;
}
.menu-toggle span, .menu-toggle span::before, .menu-toggle span::after {
  display: block;
  width: 21px;
  height: 2px;
  border-radius: 99px;
  background: var(--brand-deep);
  transition: transform .25s ease, opacity .25s ease;
}
.menu-toggle span { position: relative; }
.menu-toggle span::before, .menu-toggle span::after { content: ""; position: absolute; left: 0; }
.menu-toggle span::before { top: -7px; }
.menu-toggle span::after { top: 7px; }
.menu-toggle[aria-expanded="true"] span { background: transparent; }
.menu-toggle[aria-expanded="true"] span::before { transform: translateY(7px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span::after { transform: translateY(-7px) rotate(-45deg); }

.hero {
  position: relative;
  overflow: hidden;
  padding: 80px 0 92px;
  background:
    radial-gradient(circle at 8% 10%, rgba(128,177,255,.24), transparent 27%),
    radial-gradient(circle at 92% 12%, rgba(0,20,137,.18), transparent 34%),
    linear-gradient(180deg, #f5f8ff, #fff);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .35;
  background-image: linear-gradient(rgba(0,20,137,.055) 1px, transparent 1px), linear-gradient(90deg, rgba(0,20,137,.055) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to bottom, black, transparent 84%);
}
.hero-grid { position: relative; display: grid; grid-template-columns: 1.04fr .96fr; align-items: center; gap: clamp(42px, 7vw, 92px); }
.hero-copy h1 { max-width: 780px; color: var(--brand-deep); }
.hero-copy h1 span { color: var(--brand); }
.hero-copy .lead { max-width: 660px; margin-top: 25px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 0 21px;
  border: 1px solid transparent;
  border-radius: 13px;
  font-weight: 800;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--brand); color: #fff; box-shadow: 0 12px 26px rgba(0,20,137,.25); }
.btn-primary:hover { background: var(--brand-dark); box-shadow: 0 16px 34px rgba(0,54,137,.30); }
.btn-secondary { background: #fff; border-color: var(--line); color: var(--brand-deep); }
.btn-secondary:hover { border-color: #bfd8ff; box-shadow: var(--shadow-sm); }
.btn svg { width: 18px; height: 18px; }
.hero-visual { position: relative; min-height: 500px; }
.hero-image-shell {
  position: absolute;
  inset: 0 0 22px 28px;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  background: var(--brand-deep);
}
.hero-image-shell::after { content: ""; position: absolute; inset: 0; background: linear-gradient(135deg, transparent 40%, rgba(0,37,96,.20)); pointer-events: none; }
.hero-image-shell img { width: 100%; height: 100%; object-fit: cover; }
.hero-image-shell--familia { background: linear-gradient(180deg, #001489 0%, #003689 72%, #80B1FF 100%); }
.hero-image-shell--familia img { object-position: center center; }
.hero-badge {
  position: absolute;
  left: 0;
  bottom: 0;
  width: min(260px, 67%);
  padding: 19px 21px;
  border: 1px solid rgba(255,255,255,.8);
  border-radius: 18px;
  background: rgba(255,255,255,.92);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(12px);
}
.hero-badge strong { display: block; color: var(--brand-deep); font-size: 1.08rem; }
.hero-badge span { display: block; margin-top: 4px; color: var(--muted); font-size: .9rem; }

.page-hero {
  position: relative;
  overflow: hidden;
  padding: 70px 0 72px;
  color: #fff;
  background:
    radial-gradient(circle at 80% 30%, rgba(128,177,255,.28), transparent 34%),
    linear-gradient(125deg, var(--brand-deep), var(--brand-dark));
}
.page-hero::after {
  content: "";
  position: absolute;
  width: 430px;
  height: 430px;
  right: -130px;
  top: -240px;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 50%;
  box-shadow: 0 0 0 65px rgba(255,255,255,.035), 0 0 0 130px rgba(255,255,255,.025);
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero .eyebrow { color: #bfd8ff; }
.page-hero h1 { max-width: 900px; font-size: clamp(2.3rem, 5vw, 4.2rem); }
.page-hero p { max-width: 730px; margin-top: 18px; color: rgba(255,255,255,.78); font-size: 1.08rem; }
.breadcrumbs { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; margin-bottom: 20px; color: rgba(255,255,255,.68); font-size: .83rem; }
.breadcrumbs a:hover { color: #fff; }

.card-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 24px; }
.service-card {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  min-height: 350px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: #fff;
  box-shadow: var(--shadow-sm);
  transition: transform .25s ease, box-shadow .25s ease;
}
.service-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.service-card-copy { display: flex; flex-direction: column; justify-content: center; padding: 36px; }
.service-card-copy p { margin-top: 16px; color: var(--muted); }
.text-link { display: inline-flex; align-items: center; gap: 8px; margin-top: 10px; color: var(--brand); font-weight: 850; }
.text-link svg { width: 18px; height: 18px; transition: transform .2s ease; }
.text-link:hover svg { transform: translateX(4px); }
.service-card-image { position: relative; min-height: 270px; overflow: hidden; background: var(--brand-soft); }
.service-card-image img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.9); transition: transform .45s ease; }
.service-card-image--envases { display: flex; align-items: center; justify-content: center; padding: 14px; background: linear-gradient(180deg, #001489 0%, #003689 70%, #80B1FF 100%); }
.service-card-image--envases img { width: 100%; height: 100%; object-fit: contain; object-position: center center; }
.service-card:hover .service-card-image img { transform: scale(1.045); }
.service-card-image::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(255,255,255,.25), transparent 30%); }

.split { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: clamp(42px, 7vw, 86px); }
.media-frame { position: relative; }
.media-frame::before { content: ""; position: absolute; inset: 18px -18px -18px 18px; border-radius: var(--radius-md); background: var(--brand-soft); }
.media-frame img { position: relative; width: 100%; border-radius: var(--radius-md); box-shadow: var(--shadow-lg); }
.media-frame--familia { background: linear-gradient(180deg, #001489 0%, #003689 72%, #80B1FF 100%); border-radius: var(--radius-md); overflow: hidden; }
.media-frame--familia img { display: block; aspect-ratio: 1 / 1; object-fit: cover; object-position: center center; }
.content-stack > * + * { margin-top: 20px; }

.commitment {
  position: relative;
  overflow: hidden;
  color: #fff;
  background: linear-gradient(125deg, var(--brand-deep), #003689 70%, var(--brand));
}
.commitment::before { content: ""; position: absolute; inset: 0; opacity: .16; background-image: radial-gradient(circle at 1px 1px, #fff 1px, transparent 0); background-size: 28px 28px; }
.commitment .container { position: relative; }
.commitment .eyebrow { color: #bfd8ff; }
.commitment h2 { max-width: 660px; }
.commitment-grid { display: grid; grid-template-columns: 1.1fr 1.9fr; gap: 70px; align-items: start; }
.commitment-list { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 14px; }
.commitment-item {
  display: flex;
  align-items: flex-start;
  gap: 13px;
  min-height: 94px;
  padding: 20px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 16px;
  background: rgba(255,255,255,.07);
  backdrop-filter: blur(6px);
}
.commitment-icon { display: grid; flex: 0 0 36px; width: 36px; height: 36px; place-items: center; border-radius: 11px; background: rgba(128,177,255,.22); color: #bfd8ff; }
.commitment-icon svg { width: 20px; height: 20px; }
.commitment-item span { font-weight: 700; line-height: 1.35; }

.logo-row { display: flex; flex-wrap: wrap; gap: 16px; align-items: center; margin-top: 28px; }
.logo-chip { display: grid; min-width: 154px; min-height: 84px; place-items: center; padding: 14px 18px; border: 1px solid var(--line); border-radius: 15px; background: #fff; box-shadow: var(--shadow-sm); }
.logo-chip img { max-height: 57px; max-width: 126px; object-fit: contain; }

.photo-grid { display: grid; grid-template-columns: 1.2fr .8fr; gap: 20px; }
.photo-grid img { width: 100%; height: 100%; min-height: 280px; object-fit: cover; border-radius: var(--radius-md); box-shadow: var(--shadow-sm); }
.photo-grid .stack { display: grid; gap: 20px; }
.photo-grid .stack img { min-height: 180px; }

.feature-list { display: grid; gap: 13px; margin: 28px 0 0; padding: 0; list-style: none; }
.feature-list li { display: flex; align-items: flex-start; gap: 12px; color: #002560; }
.feature-list li::before { content: ""; flex: 0 0 9px; width: 9px; height: 9px; margin-top: .52em; border-radius: 50%; background: var(--cyan); box-shadow: 0 0 0 5px rgba(128,177,255,.18); }

.action-panels { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 18px; margin-top: 32px; }
.action-panels-three { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.action-panel { padding: 24px; border: 1px solid var(--line); border-radius: 17px; background: #fff; box-shadow: var(--shadow-sm); }
.action-panel strong { display: block; font-size: 1.08rem; }
.action-panel p { margin-top: 8px; color: var(--muted); font-size: .94rem; }

.product-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 22px; }
.product-card { display: flex; flex-direction: column; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius-md); background: #fff; box-shadow: var(--shadow-sm); }
.product-card-top { min-height: 142px; padding: 28px; color: #fff; background: linear-gradient(135deg, var(--brand-dark), var(--brand)); }
.product-card-top svg { width: 42px; height: 42px; margin-bottom: 18px; color: #bfd8ff; }
.product-card-body { flex: 1; padding: 28px; }
.product-card-body p { color: var(--muted); }
.product-card .feature-list { margin-top: 20px; }
.product-tagline { margin: 18px 0 0; color: var(--brand-dark); font-size: .9rem; font-weight: 750; }

.content-card { padding: clamp(26px, 4vw, 46px); border: 1px solid var(--line); border-radius: var(--radius-md); background: #fff; box-shadow: var(--shadow-sm); }
.content-card + .content-card { margin-top: 22px; }
.content-card h2, .content-card h3 { margin-bottom: 18px; }

.gallery-two { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.gallery-two figure { margin: 0; overflow: hidden; border-radius: var(--radius-md); background: var(--brand-soft); box-shadow: var(--shadow-sm); }
.gallery-two img { width: 100%; height: 100%; min-height: 270px; object-fit: cover; }

.contact-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 18px; margin: 36px 0 42px; }
.contact-card { display: flex; gap: 16px; align-items: flex-start; padding: 23px; border: 1px solid var(--line); border-radius: 17px; background: #fff; box-shadow: var(--shadow-sm); }
.contact-card-icon { display: grid; flex: 0 0 46px; width: 46px; height: 46px; place-items: center; border-radius: 14px; background: var(--brand-soft); color: var(--brand); }
.contact-card-icon svg { width: 23px; height: 23px; }
.contact-card strong { display: block; margin-bottom: 5px; color: var(--brand-deep); }
.contact-card a:hover { color: var(--brand); }
.contact-email-content { display: grid; width: 100%; gap: 15px; }
.contact-email-section { display: grid; gap: 3px; }
.contact-email-rrhh { padding-top: 15px; border-top: 1px solid var(--line); }
.contact-email-rrhh strong { margin-bottom: 3px; }
.contact-card-wide { grid-column: 1 / -1; }
.map-shell { overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius-md); box-shadow: var(--shadow-lg); }
.map-shell iframe { display: block; width: 100%; height: 440px; border: 0; }

.legal { counter-reset: legal; }
.legal-section { padding: 28px 0; border-bottom: 1px solid var(--line); }
.legal-section:first-child { padding-top: 0; }
.legal-section:last-child { border-bottom: 0; padding-bottom: 0; }
.legal-section h2 { margin-bottom: 16px; font-size: clamp(1.22rem, 2vw, 1.55rem); letter-spacing: -.015em; }
.legal-section p { color: #3f5867; }

.cta-band.section-sm {
  display: grid;
  min-height: 240px;
  padding: 0;
  place-items: center;
}
.cta-band > .container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}
.cta-band-inner {
  display: grid;
  width: 100%;
  margin-inline: auto;
  grid-template-columns: 1.2fr auto;
  align-items: center;
  gap: 35px;
  padding: 36px 42px;
  border-radius: var(--radius-md);
  color: #fff;
  background: linear-gradient(125deg, var(--brand), var(--brand-dark));
  box-shadow: var(--shadow-lg);
}
.cta-band p { margin-top: 9px; color: rgba(255,255,255,.78); }
.cta-band .btn { background: #fff; color: var(--brand-deep); }

.site-footer { color: rgba(255,255,255,.78); background: #002560; }
.footer-main { padding: 68px 0 45px; }
.footer-grid { display: grid; grid-template-columns: 1.35fr .75fr .8fr 1.1fr; gap: 46px; }
.footer-brand .brand { color: #fff; }
.footer-brand .brand-logo { height: 102px; border-radius: 12px; box-shadow: 0 10px 24px rgba(0,0,0,.14); }
.footer-brand p { max-width: 330px; margin-top: 20px; }
.footer-title { margin-bottom: 17px; color: #fff; font-size: .9rem; font-weight: 850; letter-spacing: .09em; text-transform: uppercase; }
.footer-links { display: grid; gap: 9px; }
.footer-links a:hover { color: #fff; }
.footer-contact { display: grid; gap: 11px; }
.footer-contact a { display: inline-flex; align-items: flex-start; gap: 9px; }
.footer-contact svg { flex: 0 0 17px; width: 17px; height: 17px; margin-top: 4px; color: #80b1ff; }
.cv-box { display: flex; align-items: center; gap: 15px; margin-top: 22px; padding: 15px; border: 1px solid rgba(255,255,255,.12); border-radius: 15px; background: rgba(255,255,255,.055); }
.cv-box img { width: 44px; height: 44px; object-fit: contain; }
.cv-box strong { display: block; color: #fff; }
.cv-box span { display: block; font-size: .82rem; }
.footer-certifications { display: flex; gap: 12px; margin-top: 22px; align-items: center; flex-wrap: wrap; }
.footer-certifications img { max-width: 83px; max-height: 47px; object-fit: contain; }
.footer-certifications .rnee-badge { max-width: 116px; max-height: 64px; border-radius: 8px; background: #fff; padding: 3px 4px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.09); }
.footer-bottom-inner { min-height: 66px; display: flex; align-items: center; justify-content: space-between; gap: 20px; font-size: .82rem; }
.data-fiscal { width: 38px; height: 50px; object-fit: cover; object-position: top; border-radius: 3px; }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity .65s ease, transform .65s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}

@media (max-width: 980px) {
  .topbar { display: none; }
  .header-inner { height: 72px; }
  .menu-toggle { display: inline-flex; }
  .site-nav {
    position: fixed;
    inset: 72px 0 auto 0;
    display: grid;
    align-content: start;
    gap: 4px;
    max-height: calc(100vh - 72px);
    overflow-y: auto;
    padding: 18px 20px 28px;
    border-bottom: 1px solid var(--line);
    background: rgba(255,255,255,.98);
    box-shadow: 0 20px 40px rgba(0,20,137,.14);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity .2s ease, transform .2s ease, visibility .2s;
  }
  .site-nav.open { opacity: 1; visibility: visible; transform: translateY(0); }
  .site-nav > a, .nav-dropdown > a { width: 100%; min-height: 50px; padding-inline: 14px; }
  .site-nav > a.active::after, .nav-dropdown > a.active::after { display: none; }
  .nav-dropdown { display: grid; }
  .dropdown-menu { position: static; width: 100%; padding: 0 0 8px 18px; border: 0; box-shadow: none; opacity: 1; visibility: visible; transform: none; background: transparent; }
  .dropdown-menu a { font-size: .92rem; }
  .hero-grid, .split, .commitment-grid { grid-template-columns: 1fr; }
  .hero { padding-top: 62px; }
  .hero-copy { max-width: 780px; }
  .hero-visual { min-height: 480px; max-width: 720px; width: 100%; margin-inline: auto; }
  .card-grid { grid-template-columns: 1fr; }
  .service-card { grid-template-columns: 1fr 1fr; }
  .commitment-grid { gap: 36px; }
  .product-grid { grid-template-columns: 1fr; }
  .product-card { display: grid; grid-template-columns: .42fr .58fr; }
  .footer-grid { grid-template-columns: 1.2fr 1fr 1fr; }
  .footer-grid > :last-child { grid-column: 1 / -1; }
}

@media (max-width: 700px) {
  .cta-band.section-sm { min-height: auto; padding: 52px 0; }
  .cta-band > .container { width: min(calc(100% - 28px), var(--container)); }
  .hero-visual { min-height: 430px; }
  .hero-image-shell--familia { display: block; padding: 0; }
  .hero-image-shell--familia img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
  .media-frame--familia { display: flex; align-items: center; justify-content: center; padding: 10px; }
  .media-frame--familia img { width: 100%; height: auto; aspect-ratio: auto; object-fit: contain; }
  .container { width: min(calc(100% - 28px), var(--container)); }
  .section { padding: 70px 0; }
  .section-sm { padding: 52px 0; }
  .hero { padding: 52px 0 72px; }
  .hero-visual { min-height: 380px; }
  .hero-image-shell { inset: 0 0 18px 10px; }
  .hero-badge { width: min(245px, 77%); }
  .service-card { grid-template-columns: 1fr; }
  .service-card-copy { padding: 28px; }
  .service-card-image { order: -1; min-height: 220px; }
  .photo-grid, .gallery-two, .contact-grid, .action-panels, .action-panels-three, .commitment-list { grid-template-columns: 1fr; }
  .contact-card-wide { grid-column: auto; }
  .photo-grid .stack { grid-template-columns: 1fr 1fr; }
  .photo-grid img { min-height: 240px; }
  .photo-grid .stack img { min-height: 150px; }
  .product-card { display: flex; }
  .cta-band-inner { grid-template-columns: 1fr; padding: 30px 26px; }
  .cta-band .btn { justify-self: start; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px 26px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-grid > :last-child { grid-column: 1 / -1; }
  .footer-bottom-inner { padding: 15px 0; align-items: flex-start; }
}

@media (max-width: 480px) {
  .brand-logo { height: 60px; }
  .footer-brand .brand-logo { height: 84px; }
  .hero-actions { display: grid; grid-template-columns: 1fr; }
  .hero-actions .btn { width: 100%; }
  .hero-visual { min-height: 320px; }
  .hero-badge { left: 8px; padding: 15px 17px; }
  .page-hero { padding: 58px 0; }
  .photo-grid .stack { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand, .footer-grid > :last-child { grid-column: auto; }
  .footer-bottom-inner { flex-direction: column; }
}

.logo-chip--rnee img { max-height: 74px; max-width: 170px; }

/* Misión y Visión: mismas dimensiones y alineación */
.mvv-pair {
  align-items: stretch;
  grid-auto-rows: 1fr;
}
.mvv-pair > .content-card {
  height: 100%;
  margin-top: 0 !important;
  display: flex;
  flex-direction: column;
}
.mvv-pair > .content-card + .content-card {
  margin-top: 0 !important;
}
