/* ============================================================
   RALQUÍMICA — V3.0 (OPUS 4.7)
   Tokens, base, layout, sections, responsivo
   ============================================================ */

:root {
  /* Brand */
  --blue-950: #051630;
  --blue-900: #08245a;
  --blue-800: #0a3478;
  --blue-700: #0d4499;
  --blue-600: #1957b8;
  --blue-100: #e9f0fb;
  --blue-50:  #f2f6fc;
  --red:      #e22935;
  --red-dark: #c81f2a;
  --red-soft: #ffe6e8;

  /* Neutral */
  --ink:    #0c1426;
  --ink-2:  #1c2740;
  --muted:  #5a6478;
  --muted-2:#8993a6;
  --line:   #e3e8f0;
  --soft:   #f4f7fb;
  --white:  #fff;

  /* Effects */
  --shadow-sm: 0 6px 18px rgba(4, 25, 57, .07);
  --shadow:    0 24px 60px rgba(4, 25, 57, .14);
  --shadow-lg: 0 40px 100px rgba(4, 25, 57, .22);

  --radius-sm: 10px;
  --radius:    18px;
  --radius-lg: 28px;

  --container: 1200px;
  --section-space: clamp(68px, 6.2vw, 88px);
  --section-heading-space: clamp(32px, 3.5vw, 44px);
  --ease: cubic-bezier(.22, 1, .36, 1);
}

/* ============================================================
   Base
   ============================================================ */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  font-feature-settings: "ss01", "cv11";
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, a { -webkit-tap-highlight-color: transparent; }
button { font-family: inherit; cursor: pointer; }

h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 {
  font-family: "Inter", system-ui, sans-serif;
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -.025em;
  color: var(--blue-950);
}
h2 { font-size: clamp(2rem, 1.4rem + 2.4vw, 3.4rem); }
em { font-style: normal; }

.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.section { padding: var(--section-space) 0; }

.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;
}
.skip-link {
  position: fixed; top: 12px; left: 12px; z-index: 1000; padding: 10px 16px;
  color: var(--white); background: var(--blue-950); border-radius: 8px;
  transform: translateY(-150%); transition: transform .2s var(--ease);
}
.skip-link:focus { transform: translateY(0); }

:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ============================================================
   Header
   ============================================================ */
.site-header {
  position: fixed; z-index: 100; top: 0; left: 0; width: 100%;
  border-bottom: 1px solid transparent;
  transition: background .25s var(--ease), border-color .25s var(--ease), box-shadow .25s var(--ease);
}
.site-header.scrolled {
  background: rgba(255, 255, 255, .92);
  border-color: rgba(8, 40, 93, .08);
  box-shadow: 0 8px 30px rgba(4, 25, 57, .06);
  backdrop-filter: blur(20px) saturate(1.2);
  -webkit-backdrop-filter: blur(20px) saturate(1.2);
}
.header-inner {
  min-height: 86px;
  display: flex; align-items: center; justify-content: space-between; gap: 30px;
}
.brand { display: inline-flex; align-items: center; flex: none; }
.brand-logo {
  width: auto; height: 46px;
  display: block;
}
.brand-logo-light { height: 44px; }

.main-nav {
  display: flex; align-items: center; gap: 28px;
  font-size: .87rem; font-weight: 600;
}
.main-nav > a:not(.button) {
  position: relative; padding: 28px 0;
  color: var(--ink-2);
  transition: color .2s var(--ease);
}
.main-nav > a:not(.button)::after {
  content: ""; position: absolute; left: 0; bottom: 21px;
  width: 0; height: 2px; background: var(--red);
  transition: width .25s var(--ease);
}
.main-nav > a:not(.button):hover { color: var(--blue-950); }
.main-nav > a:not(.button):hover::after { width: 100%; }

.menu-toggle {
  display: none; border: 0; background: none; padding: 8px;
}
.menu-toggle span:not(.sr-only) {
  display: block; width: 25px; height: 2px; margin: 5px 0;
  background: var(--blue-900); transition: .25s var(--ease);
}

/* ============================================================
   Buttons
   ============================================================ */
.button {
  position: relative;
  overflow: hidden;
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 54px; padding: 0 26px;
  border: 0; border-radius: 100px;
  font-weight: 700; font-size: .94rem; line-height: 1;
  letter-spacing: -.005em;
  transition: transform .25s var(--ease), background .2s var(--ease), box-shadow .25s var(--ease), color .2s var(--ease);
  cursor: pointer;
  isolation: isolate;
}
.button > * { position: relative; z-index: 2; }
.button:hover { transform: translateY(-2px); }

/* Shine effect — used on primary CTAs */
.button-primary::before,
.button-small::before,
.button-white::before {
  content: "";
  position: absolute; z-index: 1;
  top: 0; left: -120%;
  width: 60%; height: 100%;
  background: linear-gradient(115deg,
    transparent 0%,
    rgba(255, 255, 255, .0) 30%,
    rgba(255, 255, 255, .42) 50%,
    rgba(255, 255, 255, .0) 70%,
    transparent 100%
  );
  transform: skewX(-22deg);
  animation: btn-shine 3.6s ease-in-out infinite;
  pointer-events: none;
}
.button-small::before { animation-duration: 3.2s; }
.button-white::before { background: linear-gradient(115deg, transparent 0%, rgba(10, 52, 120, .0) 30%, rgba(10, 52, 120, .25) 50%, rgba(10, 52, 120, .0) 70%, transparent 100%); }

@keyframes btn-shine {
  0%   { left: -120%; }
  55%  { left: 130%; }
  100% { left: 130%; }
}

.button-small {
  min-height: 44px; padding-inline: 18px;
  color: var(--white); background: var(--blue-800);
  font-size: .82rem; gap: 7px;
  box-shadow: 0 8px 22px rgba(10, 52, 120, .28);
}
.button-small svg { width: 16px; fill: currentColor; }
.button-small:hover { background: var(--blue-900); box-shadow: 0 14px 30px rgba(10, 52, 120, .42); }

.button-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--blue-800) 0%, var(--blue-700) 100%);
  box-shadow: 0 18px 38px rgba(10, 52, 120, .32);
  padding-right: 22px;
}
.button-primary:hover {
  background: linear-gradient(135deg, var(--blue-900) 0%, var(--blue-800) 100%);
  box-shadow: 0 22px 44px rgba(10, 52, 120, .42);
}
.button-primary svg:first-child { width: 19px; fill: currentColor; }
.button-primary .button-arrow {
  display: inline-flex; align-items: center; justify-content: center;
  width: 28px; height: 28px;
  background: rgba(255, 255, 255, .18);
  border-radius: 50%;
  transition: transform .25s var(--ease), background .25s var(--ease);
  font-size: .9rem;
}
.button-primary:hover .button-arrow { transform: translateX(4px); background: rgba(255, 255, 255, .3); }

.button-white { color: var(--blue-900); background: var(--white); }
.button-white:hover { box-shadow: 0 18px 34px rgba(1, 18, 43, .22); }
.button-large { min-height: 64px; padding-inline: 30px; flex: none; font-size: 1rem; }
.button-large svg { width: 20px; fill: currentColor; }

.button-ghost {
  color: var(--blue-800); background: transparent;
  border: 1.5px solid var(--blue-800);
}
.button-ghost:hover { color: var(--white); background: var(--blue-800); }

.text-link, .arrow-link {
  display: inline-flex; align-items: center; gap: 10px;
  font-weight: 700; font-size: .92rem;
}
.text-link span, .arrow-link span {
  display: inline-flex; align-items: center; justify-content: center;
  width: 28px; height: 28px;
  color: var(--white); font-size: .9rem;
  background: var(--blue-800); border-radius: 50%;
  box-shadow: 0 4px 12px rgba(10, 52, 120, .3);
  transition: transform .25s var(--ease), background .2s var(--ease);
}
.text-link:hover span, .arrow-link:hover span {
  transform: translate(3px, -2px);
  background: var(--blue-900);
}
.arrow-link { color: var(--blue-800); }

/* ============================================================
   Section primitives
   ============================================================ */
.section-kicker {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--red);
  font-size: .72rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase;
}
.section-kicker.light { color: #ff7d86; }

/* Reveal */
.reveal {
  opacity: 0; transform: translateY(28px);
  transition: opacity .7s var(--ease), transform .7s var(--ease), filter .7s var(--ease);
}
.reveal.visible { opacity: 1; transform: none; }
.delay-1 { transition-delay: .12s; }
.delay-2 { transition-delay: .24s; }

@media (min-width: 901px) {
  .reveal {
    transform: translateY(54px) scale(.985);
    filter: blur(5px);
    transition-duration: .95s;
    will-change: opacity, transform, filter;
  }
  .reveal.visible {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
    filter: blur(0);
  }
  .hero-copy .reveal {
    transform: translateX(-42px);
  }
  .hero-copy .reveal.visible {
    transform: translateX(0);
  }
  .hero-visual.reveal,
  .why-content.reveal,
  .about-panel.reveal,
  .faq-list.reveal {
    transform: translateX(54px) scale(.985);
  }
  .why-visual.reveal,
  .about-copy.reveal,
  .faq-heading.reveal {
    transform: translateX(-54px) scale(.985);
  }
  .hero-visual.reveal.visible,
  .why-content.reveal.visible,
  .about-panel.reveal.visible,
  .faq-list.reveal.visible,
  .why-visual.reveal.visible,
  .about-copy.reveal.visible,
  .faq-heading.reveal.visible {
    transform: translateX(0) scale(1);
  }
  .delay-1 { transition-delay: .16s; }
  .delay-2 { transition-delay: .3s; }
}

/* ============================================================
   Hero
   ============================================================ */
.hero {
  position: relative; overflow: hidden;
  padding: 118px 0 0;
  background: linear-gradient(180deg, #fbfcfe 0%, #ffffff 70%);
}
.hero-mesh {
  position: absolute; inset: -10% -10% auto -10%; height: 80%;
  background:
    radial-gradient(ellipse 35% 40% at 18% 18%, rgba(13, 68, 153, .12), transparent 60%),
    radial-gradient(ellipse 30% 35% at 88% 30%, rgba(226, 41, 53, .10), transparent 65%),
    radial-gradient(ellipse 40% 30% at 50% 90%, rgba(13, 68, 153, .06), transparent 70%);
  filter: blur(8px);
  pointer-events: none;
}
.hero-grid-pattern {
  position: absolute; inset: 0; opacity: .35; pointer-events: none;
  background-image:
    linear-gradient(rgba(10, 52, 120, .045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(10, 52, 120, .045) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 70% 70% at 50% 30%, black, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 70% 70% at 50% 30%, black, transparent 75%);
}

.hero-layout {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1.05fr .95fr;
  align-items: center; gap: 72px;
  min-height: 600px;
}

.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  margin-bottom: 26px;
  padding: 8px 14px 8px 10px;
  color: var(--blue-800);
  background: rgba(13, 68, 153, .08);
  border: 1px solid rgba(13, 68, 153, .14);
  border-radius: 100px;
  font-size: .73rem; font-weight: 700; letter-spacing: .04em;
}
.eyebrow-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 4px rgba(226, 41, 53, .18);
  animation: pulse 2.4s var(--ease) infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(226, 41, 53, .18); }
  50%      { box-shadow: 0 0 0 7px rgba(226, 41, 53, .05); }
}

.hero h1 {
  max-width: 660px; margin-bottom: 24px;
  font-size: clamp(2.5rem, 1.5rem + 4vw, 4.7rem);
  letter-spacing: -.035em;
}
.hero h1 em {
  display: block;
  color: var(--red);
  font-family: "Fraunces", "Inter", serif;
  font-weight: 500;
  font-style: italic;
  letter-spacing: -.02em;
}
.mobile-title-break { display: none; }
.hero-lead {
  max-width: 575px; margin-bottom: 36px;
  color: var(--muted);
  font-size: 1.08rem; line-height: 1.6;
}

.hero-actions {
  display: flex; align-items: center; gap: 26px; flex-wrap: wrap;
}

.hero-trust {
  display: flex; align-items: center; gap: 22px;
  margin-top: 42px;
}
.hero-trust-mobile { display: none; }
.trust-meta { display: flex; flex-direction: column; gap: 3px; }
.trust-meta strong {
  color: var(--blue-950);
  font-size: .95rem; font-weight: 800; letter-spacing: -.01em;
}
.trust-meta span {
  color: var(--muted); font-size: .76rem; line-height: 1.4;
  max-width: 200px;
}
.trust-divider {
  width: 1px; height: 38px;
  background: var(--line);
}

/* Hero visual — dual-image stack */
.hero-visual {
  position: relative;
  min-height: 540px;
}
.hero-stack {
  position: relative;
  width: 100%; height: 540px;
}
.hero-frame {
  position: absolute;
  overflow: hidden;
  border-radius: 24px;
  box-shadow: var(--shadow-lg);
  background: #eef2f8;
}
.hero-frame > img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease);
}
.hero-frame:hover > img { transform: scale(1.06); }

.hero-frame-main {
  z-index: 2;
  top: 0; right: 0;
  width: 80%; height: 440px;
  border-radius: 28px 28px 28px 110px;
}
.hero-frame-main > img { object-position: center 55%; }
.hero-frame-secondary {
  z-index: 1;
  left: 0; bottom: 0;
  width: 50%; height: 220px;
  border-bottom-right-radius: 80px;
  border: 6px solid var(--white);
}
.hero-frame-secondary > img { object-position: center 55%; }

.floating-card {
  position: absolute; z-index: 4;
  display: flex; align-items: center; gap: 13px;
  padding: 14px 18px 14px 14px;
  background: var(--white);
  border-radius: 14px;
  box-shadow: 0 18px 44px rgba(4, 25, 57, .18);
  animation: float 6s var(--ease) infinite;
}
.floating-card:nth-of-type(2) { animation-delay: -3s; }
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-8px); }
}
.floating-card strong { display: block; color: var(--blue-950); font-size: .82rem; font-weight: 800; }
.floating-card small  { display: block; color: var(--muted); font-size: .68rem; line-height: 1.3; margin-top: 2px; }

.card-pin  { left: -28px; bottom: 60px; }
.card-pin strong { color: var(--red); }
.card-pin .pin-icon { background: var(--red); }

.pin-icon {
  position: relative; flex: none;
  width: 36px; height: 36px;
  background: var(--blue-800);
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
}
.pin-icon::after {
  content: ""; position: absolute; inset: 9px;
  background: var(--white); border-radius: 50%;
}
.cats-icon {
  display: grid; place-items: center; flex: none;
  width: 38px; height: 38px;
  color: var(--white); background: var(--red);
  border-radius: 10px;
}
.cats-icon svg {
  width: 20px; height: 20px;
  fill: none; stroke: currentColor; stroke-width: 2.2;
  stroke-linecap: round;
}

.hero-shape { position: absolute; pointer-events: none; }
.shape-red {
  top: -28px; right: -54px;
  width: 140px; height: 140px;
  background: var(--red);
  border-radius: 50%;
  opacity: .9;
}
.shape-ring {
  left: -34px; bottom: 18px;
  width: 130px; height: 130px;
  border: 18px solid var(--blue-800);
  border-radius: 50%;
  opacity: .85;
}

/* Hero marquee */
.hero-marquee-wrap {
  position: relative;
  width: 100vw;
  margin: 42px 0 0;
  margin-left: calc(50% - 50vw);
  padding: 18px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(244, 247, 251, .55);
}
.hero-marquee {
  width: 100%;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, black 6%, black 94%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, black 6%, black 94%, transparent);
}
.marquee-track {
  display: inline-flex; align-items: center; gap: 32px;
  white-space: nowrap;
  will-change: transform;
  animation: marquee 42s linear infinite;
  color: var(--blue-900); font-size: .82rem; font-weight: 800; letter-spacing: .06em;
  text-transform: uppercase;
}
.marquee-track .dot {
  display: inline-block; width: 7px; height: 7px;
  background: var(--red); border-radius: 50%;
  flex: none;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}


/* ============================================================
   Intro
   ============================================================ */
.intro-layout {
  display: grid; grid-template-columns: 1.08fr .92fr;
  gap: clamp(40px, 7vw, 105px);
  align-items: end;
}
.section-heading h2 { max-width: 700px; margin-bottom: 0; }
.intro-text { padding-bottom: 6px; }
.intro-text p {
  margin-bottom: 26px;
  color: var(--muted); font-size: 1.04rem;
}

/* ============================================================
   Solutions
   ============================================================ */
.solutions {
  position: relative; overflow: hidden;
  color: var(--white);
  background: var(--blue-950);
}
.solutions-bg {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 50% 60% at 85% 15%, rgba(13, 68, 153, .35), transparent 60%),
    radial-gradient(ellipse 40% 50% at 10% 90%, rgba(226, 41, 53, .10), transparent 60%);
}
.solutions::before {
  content: ""; position: absolute;
  width: 620px; height: 620px;
  right: -230px; top: -250px;
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 50%;
  box-shadow:
    0 0 0 90px rgba(255, 255, 255, .025),
    0 0 0 180px rgba(255, 255, 255, .018);
  pointer-events: none;
}
.solutions .container { position: relative; z-index: 2; }

.section-top {
  display: grid; grid-template-columns: 1.25fr .75fr;
  gap: 70px; align-items: end;
  margin-bottom: var(--section-heading-space);
}
.section-top h2 { max-width: 720px; margin-bottom: 0; color: var(--white); }
.section-top > p { margin-bottom: 8px; color: #aebbd0; }

.solution-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}
.solution-card {
  position: relative; min-height: 400px;
  overflow: hidden;
  padding: 34px 34px 88px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 22px;
  display: flex; flex-direction: column;
  transition: transform .35s var(--ease), border-color .25s var(--ease);
}
.solution-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, .25);
}
.card-meta {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 24px;
}
.card-tag {
  display: inline-flex; align-items: center;
  padding: 6px 12px;
  background: rgba(255, 255, 255, .12);
  border-radius: 100px;
  font-size: .67rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  color: var(--white);
}
.card-number {
  color: rgba(255, 255, 255, .42);
  font-size: .72rem; font-weight: 800; letter-spacing: .14em;
}
.solution-content { flex: 1; position: relative; z-index: 3; }
.solution-content h3 {
  max-width: 380px; margin: 0 0 12px;
  font-size: clamp(1.4rem, 1rem + 1vw, 1.85rem);
  color: var(--white);
  letter-spacing: -.025em;
}
.solution-content p { max-width: 440px; margin: 0; color: #b7c2d4; font-size: .94rem; }
.solution-content ul { margin: 22px 0 0; padding: 0; list-style: none; color: #d8dfeb; font-size: .85rem; }
.solution-content li {
  position: relative; margin: 8px 0; padding-left: 18px;
}
.solution-content li::before {
  content: ""; position: absolute; left: 0; top: .65em;
  width: 8px; height: 2px; background: var(--red);
}

.solution-link {
  position: absolute; left: 34px; right: 34px; bottom: 28px;
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, .14);
  color: var(--white);
  font-size: .82rem; font-weight: 700;
  transition: color .25s var(--ease), border-color .25s var(--ease);
}
.link-arrow {
  display: inline-flex; align-items: center; justify-content: center;
  width: 36px; height: 36px;
  border: 1px solid rgba(255, 255, 255, .35);
  border-radius: 50%;
  font-size: 1rem;
  transition: transform .3s var(--ease), background .25s var(--ease), color .25s var(--ease);
}
.solution-card:hover .link-arrow {
  background: var(--red); border-color: var(--red); color: var(--white);
  transform: rotate(45deg);
}

.solution-featured {
  background: linear-gradient(140deg, var(--blue-800) 0%, #0a2c62 60%, var(--blue-900) 100%);
}
.solution-icon {
  display: grid; place-items: center;
  width: 62px; height: 62px; margin-bottom: 22px;
  color: var(--white);
  background: rgba(255, 255, 255, .1);
  border-radius: 15px;
}
.solution-icon svg, .step-icon svg {
  width: 34px;
  fill: none; stroke: currentColor; stroke-width: 1.7;
  stroke-linecap: round; stroke-linejoin: round;
}

.solution-image { display: flex; align-items: flex-end; }
.solution-image > img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 32%;
  transition: transform .9s var(--ease);
}
.solution-image:hover > img { transform: scale(1.05); }
.image-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(3, 18, 43, .98) 0%, rgba(3, 18, 43, .55) 55%, rgba(3, 18, 43, .1) 100%);
}

.solution-product {
  background: linear-gradient(150deg, #f4f7fb 0%, #e6ecf3 100%);
  color: var(--blue-950);
}
.solution-product .card-tag {
  background: rgba(8, 40, 93, .1);
  color: var(--blue-900);
}
.solution-product .card-number { color: rgba(8, 40, 93, .45); }
.solution-product .solution-content { width: 58%; }
.solution-product .solution-content h3 { color: var(--blue-950); }
.solution-product .solution-content p { color: var(--muted); }
.solution-product .solution-link { color: var(--blue-900); border-top-color: rgba(8, 40, 93, .15); }
.solution-product .link-arrow { border-color: rgba(8, 40, 93, .3); color: var(--blue-800); }
.solution-product:hover .link-arrow { background: var(--blue-800); border-color: var(--blue-800); color: var(--white); }
.product-art {
  position: absolute; right: 28px; top: 28px;
  width: 38%; height: 240px;
  overflow: hidden;
  background: var(--white);
  border-radius: 100px 100px 18px 18px;
  box-shadow: 0 14px 32px rgba(4, 25, 57, .14);
}
.product-art img { width: 100%; height: 100%; object-fit: cover; object-position: center 35%; }
.anvisa-badge {
  display: inline-flex; align-items: center; gap: 8px;
  margin-top: 18px; padding: 7px 13px 7px 9px;
  background: rgba(8, 40, 93, .08); color: var(--blue-800);
  border-radius: 100px;
  font-size: .73rem; font-weight: 700; letter-spacing: -.005em;
}
.anvisa-badge svg {
  width: 14px; height: 14px; color: #15a058;
}

/* ============================================================
   Catalog
   ============================================================ */
.catalog { background: var(--soft); }
.catalog-heading {
  display: grid; grid-template-columns: 1fr .6fr;
  gap: 60px; align-items: end;
  margin-bottom: var(--section-heading-space);
}
.catalog-heading h2 { margin-bottom: 0; }
.catalog-heading > p { margin: 0 0 6px; color: var(--muted); }

.catalog-filter {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin-bottom: 32px;
}
.filter-pill {
  padding: 10px 18px;
  color: var(--ink-2); background: var(--white);
  border: 1px solid var(--line); border-radius: 100px;
  font-size: .82rem; font-weight: 700;
  transition: background .2s var(--ease), color .2s var(--ease), border-color .2s var(--ease);
}
.filter-pill:hover { border-color: var(--blue-800); color: var(--blue-800); }
.filter-pill.is-active {
  color: var(--white); background: var(--blue-900); border-color: var(--blue-900);
}

.catalog-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
.catalog-item {
  position: relative; margin: 0;
  aspect-ratio: 1 / 1.05;
  overflow: hidden;
  background: linear-gradient(160deg, #ffffff 0%, #f4f7fb 100%);
  border: 1px solid var(--line);
  border-radius: 16px;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), opacity .35s var(--ease), border-color .25s var(--ease);
}
.catalog-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 38%;
  transition: transform .9s var(--ease);
}
.catalog-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 36px rgba(4, 25, 57, .12);
}
.catalog-item:hover img { transform: scale(1.08); }
.catalog-item.is-hidden {
  display: none;
}

.catalog-cta {
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; flex-wrap: wrap;
  margin-top: 30px; padding: 22px 30px;
  background: var(--white); border: 1px solid var(--line); border-radius: 16px;
}
.catalog-cta p { margin: 0; color: var(--ink-2); font-weight: 600; }

/* ============================================================
   Why
   ============================================================ */
.why { overflow: hidden; }
.why-layout {
  display: grid; grid-template-columns: .9fr 1.1fr;
  gap: clamp(40px, 8vw, 110px);
  align-items: center;
}
.why-visual { position: relative; min-height: 560px; }
.why-photo {
  position: absolute;
  left: 0; top: 0;
  width: 88%; height: 480px;
  overflow: hidden;
  background: #09162c;
  border-radius: 18px 130px 18px 18px;
  box-shadow: var(--shadow);
}
.why-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center 30%; }
.why-mini-photo {
  position: absolute;
  right: -10px; top: 80px;
  width: 36%; height: 200px;
  overflow: hidden;
  background: var(--blue-100);
  border: 6px solid var(--white);
  border-radius: 90px 18px 18px 18px;
  box-shadow: var(--shadow);
}
.why-mini-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center 35%; }

.experience-badge {
  position: absolute; z-index: 3;
  left: -10px; bottom: -8px;
  display: flex; align-items: center; gap: 16px;
  min-width: 270px; padding: 26px 28px;
  color: var(--white); background: var(--red);
  border-radius: 16px;
  box-shadow: 0 24px 48px rgba(226, 41, 53, .28);
}
.experience-badge strong {
  font-family: "Inter", sans-serif;
  font-size: 3.3rem; font-weight: 900; letter-spacing: -.045em;
  line-height: 1;
}
.experience-badge span { font-size: .73rem; font-weight: 600; line-height: 1.35; }
.dots {
  position: absolute; z-index: -1;
  right: 20px; bottom: 40px;
  width: 130px; height: 120px;
  background-image: radial-gradient(var(--blue-800) 1.5px, transparent 1.5px);
  background-size: 13px 13px;
}

.why-content h2 { margin-bottom: 22px; }
.why-content h2 em {
  color: var(--red); font-style: normal;
  font-family: "Fraunces", "Inter", serif;
  font-weight: 500; font-style: italic;
}
.why-lead { margin-bottom: 38px; color: var(--muted); font-size: 1.04rem; }
.why-lead em {
  color: var(--blue-800); font-family: "Fraunces", "Inter", serif;
  font-style: italic; font-weight: 500;
}

.benefit-list {
  display: flex; flex-direction: column;
}
.benefit {
  display: grid; grid-template-columns: 56px 1fr;
  gap: 22px; padding: 24px 0;
  border-top: 1px solid var(--line);
}
.benefit:last-child { border-bottom: 1px solid var(--line); }
.benefit-num {
  display: grid; place-items: center;
  width: 46px; height: 46px;
  color: var(--white); background: var(--red);
  border-radius: 50%;
  font-size: .72rem; font-weight: 800; letter-spacing: .04em;
  box-shadow: 0 8px 18px rgba(226, 41, 53, .3);
}
.benefit h3 { margin: 0 0 5px; font-size: 1.06rem; }
.benefit p  { margin: 0; color: var(--muted); font-size: .9rem; }

/* ============================================================
   How (steps)
   ============================================================ */
.how {
  position: relative; overflow: hidden;
  color: var(--white);
  background: var(--blue-900);
}
.how-bg {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 50% 50% at 18% 25%, rgba(255, 255, 255, .06), transparent 60%),
    radial-gradient(ellipse 50% 50% at 85% 80%, rgba(226, 41, 53, .12), transparent 60%);
}
.how::after {
  content: "R";
  position: absolute;
  right: 5%; bottom: -180px;
  color: rgba(255, 255, 255, .04);
  font-family: "Inter", sans-serif;
  font-size: clamp(18rem, 28vw, 30rem);
  font-weight: 900;
  line-height: 1;
  pointer-events: none;
}
.how .container { position: relative; z-index: 2; }

.how-heading {
  max-width: 720px; margin: 0 auto var(--section-heading-space);
  text-align: center;
}
.how-heading h2 { margin-bottom: 18px; color: var(--white); }
.how-heading p { max-width: 620px; margin: 0 auto; color: #c5d3e7; }

.steps {
  position: relative;
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.steps::before {
  content: ""; position: absolute;
  top: 64px; left: 14%; right: 14%;
  border-top: 1px dashed rgba(255, 255, 255, .28);
}
.step {
  position: relative; padding: 32px 22px;
  text-align: center;
}
.step-icon {
  position: relative; z-index: 2;
  display: grid; place-items: center;
  width: 80px; height: 80px;
  margin: 0 auto 26px;
  color: var(--blue-800); background: var(--white);
  border: 8px solid rgba(255, 255, 255, .14);
  border-radius: 50%;
  background-clip: padding-box;
  animation: step-icon-pulse 5s ease-in-out infinite;
}
.step-icon::after {
  content: "";
  position: absolute;
  inset: -9px;
  border: 2px solid rgba(255, 255, 255, .45);
  border-radius: 50%;
  pointer-events: none;
  animation: step-icon-ring 5s ease-out infinite;
}
.step-icon svg {
  position: relative;
  z-index: 2;
}
.step:nth-child(2) .step-icon,
.step:nth-child(2) .step-icon::after { animation-delay: .8s; }
.step:nth-child(3) .step-icon,
.step:nth-child(3) .step-icon::after { animation-delay: 1.6s; }
.step:nth-child(4) .step-icon,
.step:nth-child(4) .step-icon::after { animation-delay: 2.4s; }

@keyframes step-icon-pulse {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    border-color: rgba(255, 255, 255, .14);
  }
  45% {
    transform: scale(1.04);
    box-shadow: 0 0 22px rgba(255, 255, 255, .18);
    border-color: rgba(255, 255, 255, .28);
  }
}
@keyframes step-icon-ring {
  0% {
    opacity: .55;
    transform: scale(.92);
  }
  80%, 100% {
    opacity: 0;
    transform: scale(1.22);
  }
}
.step h3 { margin-bottom: 10px; color: var(--white); font-size: 1.15rem; }
.step p  { max-width: 265px; margin: 0 auto; color: #c5d3e7; font-size: .86rem; }

.how-action { margin-top: 34px; text-align: center; }

/* ============================================================
   About
   ============================================================ */
.about { background: var(--soft); }
.about-layout {
  display: grid; grid-template-columns: 1.05fr .95fr;
  gap: clamp(50px, 7vw, 100px); align-items: center;
}
.about-copy h2 { margin-bottom: 28px; }
.about-copy > p { color: var(--muted); margin-bottom: 16px; }

.about-pillars {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 16px; margin: 32px 0;
}
.pillar {
  padding: 20px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
}
.pillar strong {
  display: block; margin-bottom: 6px;
  color: var(--blue-950);
  font-size: .96rem; font-weight: 800; letter-spacing: -.01em;
}
.pillar span { display: block; color: var(--muted); font-size: .82rem; line-height: 1.4; }

.about-seal { display: flex; align-items: center; gap: 16px; }
.about-seal > img {
  flex: none;
  width: 68px; height: 72px;
  object-fit: contain;
}
.about-seal p { margin: 0; color: var(--muted); font-size: .82rem; line-height: 1.55; }
.about-seal strong { display: block; color: var(--blue-950); font-weight: 800; }
.inline-social { color: var(--blue-800); font-weight: 800; }
.inline-social:hover { color: var(--red); }

.about-panel {
  position: relative; overflow: hidden;
  min-height: 440px; padding: 70px 56px;
  color: var(--white);
  background-color: var(--blue-950);
  background-image:
    linear-gradient(145deg, rgba(5, 22, 48, .88) 0%, rgba(10, 52, 120, .82) 100%),
    url("assets/catalog/fachada.webp");
  background-size: cover, cover;
  background-position: center, center 40%;
  background-repeat: no-repeat, no-repeat;
  border-radius: 22px 120px 22px 22px;
}
.about-line {
  width: 56px; height: 4px;
  margin-bottom: 36px;
  background: var(--red);
}
.about-panel blockquote {
  position: relative; z-index: 2;
  margin: 0;
  font-family: "Fraunces", "Inter", serif;
  font-size: clamp(1.45rem, 1rem + 1.4vw, 2.2rem);
  font-weight: 400;
  line-height: 1.32;
  letter-spacing: -.02em;
}
.about-panel blockquote::before {
  content: "“";
  display: block;
  margin-bottom: 8px;
  color: var(--red);
  font-family: "Fraunces", serif;
  font-size: 3rem; line-height: .8;
}
.about-signature {
  position: absolute; left: 56px; bottom: 44px; z-index: 2;
  font-family: "Inter", sans-serif;
  font-size: .82rem; font-weight: 800; letter-spacing: .04em;
}
.about-signature small {
  display: block; margin-top: 5px;
  font-family: "Inter", sans-serif;
  font-size: .52rem; font-weight: 700; letter-spacing: .18em;
  color: rgba(255, 255, 255, .55);
}
.about-decor {
  position: absolute;
  right: -120px; top: -120px;
  width: 360px; height: 360px;
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 50%;
  box-shadow: 0 0 0 80px rgba(255, 255, 255, .025);
}

/* ============================================================
   FAQ
   ============================================================ */
.faq {
  padding-bottom: calc(var(--section-space) * .45);
  background: var(--white);
}
.faq-layout {
  display: grid; grid-template-columns: .85fr 1.15fr;
  gap: clamp(40px, 7vw, 90px);
  align-items: start;
}
.faq-heading { position: sticky; top: 120px; }
.faq-heading h2 { margin-bottom: 22px; }
.faq-heading p  { margin-bottom: 22px; color: var(--muted); }

.faq-list { border-top: 1px solid var(--line); }
.faq-list details {
  border-bottom: 1px solid var(--line);
}
.faq-list summary {
  display: flex; align-items: center; justify-content: space-between; gap: 25px;
  padding: 24px 0;
  color: var(--blue-950);
  cursor: pointer; list-style: none;
  font-family: "Inter", sans-serif;
  font-size: 1.02rem; font-weight: 700;
  letter-spacing: -.015em;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-icon {
  position: relative; flex: none;
  width: 32px; height: 32px;
  background: var(--blue-100);
  border-radius: 50%;
  transition: background .25s var(--ease), transform .35s var(--ease);
}
.faq-icon::before, .faq-icon::after {
  content: ""; position: absolute;
  top: 50%; left: 50%;
  background: var(--blue-800);
  border-radius: 1px;
  transition: background .2s var(--ease);
}
.faq-icon::before {
  width: 12px; height: 2px;
  transform: translate(-50%, -50%);
}
.faq-icon::after {
  width: 2px; height: 12px;
  transform: translate(-50%, -50%);
  transition: transform .3s var(--ease), background .2s var(--ease);
}
.faq-list details[open] .faq-icon { background: var(--red); transform: rotate(180deg); }
.faq-list details[open] .faq-icon::before,
.faq-list details[open] .faq-icon::after { background: var(--white); }
.faq-list details[open] .faq-icon::after { transform: translate(-50%, -50%) scaleY(0); }

.faq-list details p {
  max-width: 670px;
  margin: -4px 60px 24px 0;
  color: var(--muted); font-size: .92rem;
}

/* ============================================================
   Locations
   ============================================================ */
.locations { padding-top: calc(var(--section-space) * .55); }
.locations-heading {
  display: grid; grid-template-columns: 1fr .55fr;
  align-items: end; gap: 60px;
  margin-bottom: var(--section-heading-space);
}
.locations-heading h2 { margin-bottom: 0; }
.locations-heading > p { margin: 0 0 6px; color: var(--muted); }

.location-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}
.location-card {
  position: relative; overflow: hidden;
  padding: 38px;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 18px;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
}
.location-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 55px rgba(4, 25, 57, .12);
  border-color: var(--blue-100);
}
.location-card::after {
  content: ""; position: absolute;
  right: -70px; bottom: -70px;
  width: 170px; height: 170px;
  border: 26px solid var(--blue-100);
  border-radius: 50%;
}
.location-top {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 42px;
}
.location-index { color: var(--red); font-size: .7rem; font-weight: 800; letter-spacing: .14em; }
.location-city {
  padding: 7px 14px;
  color: var(--blue-800); background: var(--blue-100);
  border-radius: 100px;
  font-size: .68rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase;
}
.location-card h3 { margin-bottom: 16px; font-size: 1.4rem; }
.location-card address {
  margin-bottom: 28px;
  color: var(--muted);
  font-size: .92rem; font-style: normal; line-height: 1.55;
}
.location-actions {
  position: relative; z-index: 2;
  display: flex; flex-wrap: wrap; gap: 12px;
}
.location-map, .location-wpp {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 11px 18px;
  font-size: .82rem; font-weight: 700;
  border-radius: 100px;
  transition: background .2s var(--ease), color .2s var(--ease), border-color .2s var(--ease);
}
.location-map {
  color: var(--blue-800);
  border: 1px solid var(--line); background: var(--white);
}
.location-map:hover { border-color: var(--blue-800); }
.location-map span { color: var(--red); }
.location-wpp { color: var(--white); background: var(--red); }
.location-wpp:hover { background: var(--red-dark); }

/* ============================================================
   Final CTA
   ============================================================ */
.final-cta { padding: 0 0 var(--section-space); background: var(--white); }
.final-cta-inner {
  position: relative; overflow: hidden;
  display: flex; align-items: center; justify-content: space-between;
  gap: 50px;
  padding: 66px 70px;
  color: var(--white);
  background: linear-gradient(120deg, var(--red) 0%, var(--red-dark) 100%);
  border-radius: 22px;
  box-shadow: 0 30px 60px rgba(226, 41, 53, .25);
}
.final-cta-inner::after {
  content: ""; position: absolute;
  right: -100px; top: -100px;
  width: 320px; height: 320px;
  border: 50px solid rgba(255, 255, 255, .07);
  border-radius: 50%;
}
.final-cta-copy { position: relative; z-index: 2; max-width: 640px; }
.final-cta h2 { margin-bottom: 14px; color: var(--white); font-size: clamp(1.85rem, 1.2rem + 2vw, 3rem); }
.final-cta p  { margin: 0; color: #ffe1e3; }
.final-cta .section-kicker { color: rgba(255, 255, 255, .85); }
.final-cta .button-large { position: relative; z-index: 2; }

/* ============================================================
   Footer
   ============================================================ */
.site-footer { color: #aab7ca; background: var(--blue-950); }
.footer-main {
  display: grid; grid-template-columns: 1.4fr .7fr 1fr;
  gap: 70px;
  padding: 70px 0 50px;
}
.footer-brand p { margin: 22px 0 0; font-size: .86rem; max-width: 320px; }
.footer-links, .footer-contact {
  display: flex; flex-direction: column; align-items: flex-start; gap: 10px;
  font-size: .85rem;
}
.footer-links strong, .footer-contact strong {
  margin-bottom: 6px;
  color: var(--white);
  font-size: .72rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase;
}
.footer-links a, .footer-contact a {
  transition: color .2s var(--ease);
}
.footer-links a:hover, .footer-contact a:hover { color: var(--white); }
.footer-contact p { margin-bottom: 6px; }
.footer-contact .footer-phone { margin: 0; color: var(--white); font-weight: 800; }
.footer-contact a { color: #ff8a92; font-weight: 700; }
.footer-contact .instagram-link {
  display: inline-flex; align-items: center; gap: 8px;
  margin-top: 4px;
  color: var(--white);
}
.instagram-link svg { width: 18px; fill: currentColor; }
.footer-bottom {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 18px;
  padding: 22px 0;
  border-top: 1px solid rgba(255, 255, 255, .08);
  font-size: .72rem;
}
.footer-bottom p { margin: 0; }
.footer-bottom p:last-child { justify-self: end; }
.footer-credit {
  justify-self: center;
  display: inline-flex; align-items: center; gap: 6px;
  letter-spacing: .04em;
}
.footer-credit a {
  position: relative;
  color: var(--white);
  font-weight: 800; letter-spacing: .08em;
  transition: color .2s var(--ease);
}
.footer-credit a::after {
  content: ""; position: absolute;
  left: 0; bottom: -3px;
  width: 100%; height: 1px;
  background: linear-gradient(90deg, var(--red) 0%, var(--blue-600) 100%);
  transform-origin: left;
  transition: transform .35s var(--ease);
}
.footer-credit a:hover { color: var(--red); }

/* ============================================================
   WhatsApp float
   ============================================================ */
.whatsapp-float {
  position: fixed; z-index: 90;
  right: 24px; bottom: 24px;
  display: grid; place-items: center;
  width: 62px; height: 62px;
  color: var(--white); background: #20ba5a;
  border: 4px solid var(--white);
  border-radius: 50%;
  box-shadow: 0 14px 30px rgba(4, 25, 57, .28);
  animation: wpp-bounce 2s ease-in-out infinite;
  transition: transform .3s var(--ease);
}
.whatsapp-float:hover {
  transform: scale(1.1) !important;
  animation-play-state: paused;
}
.whatsapp-float svg {
  position: relative; z-index: 2;
  width: 30px; fill: currentColor;
}
.wpp-pulse, .whatsapp-float::before {
  content: ""; position: absolute; inset: 0;
  border-radius: 50%;
  background: #20ba5a;
  pointer-events: none;
}
.wpp-pulse {
  animation: wpp-pulse 1.8s ease-out infinite;
}
.whatsapp-float::before {
  animation: wpp-pulse 1.8s ease-out infinite;
  animation-delay: .9s;
}
@keyframes wpp-pulse {
  0%   { transform: scale(1);   opacity: .55; }
  80%  { transform: scale(1.7); opacity: 0; }
  100% { transform: scale(1.7); opacity: 0; }
}
@keyframes wpp-bounce {
  0%, 100% { transform: scale(1); }
  20%      { transform: scale(1.08) rotate(-4deg); }
  40%      { transform: scale(1.08) rotate(4deg); }
  60%      { transform: scale(1); }
}

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 1100px) {
  .main-nav { gap: 20px; font-size: .82rem; }
  .hero-layout { gap: 40px; }
  .hero-frame-main { width: 82%; }
  .hero-stack { height: 500px; }
  .card-pin  { left: -18px; }
  .why-mini-photo { right: -4px; }
}

@media (max-width: 900px) {
  :root {
    --section-space: 68px;
    --section-heading-space: 36px;
  }
  .menu-toggle { display: block; position: relative; z-index: 102; }

  .main-nav {
    position: fixed; inset: 0; z-index: 101;
    display: flex; flex-direction: column; justify-content: center; gap: 16px;
    background: var(--white);
    opacity: 0; pointer-events: none;
    transform: translateY(-12px);
    transition: opacity .25s var(--ease), transform .25s var(--ease);
  }
  .main-nav.open { opacity: 1; pointer-events: auto; transform: none; }
  .main-nav > a:not(.button) {
    display: block; padding: 8px;
    color: var(--blue-950);
    font-size: 1.32rem; font-weight: 700;
  }
  .main-nav > a:not(.button)::after { display: none; }
  .main-nav .button { margin-top: 14px; }
  .menu-open .menu-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .menu-open .menu-toggle span:nth-child(2) { opacity: 0; }
  .menu-open .menu-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  .hero { padding-top: 122px; }
  .hero-layout { grid-template-columns: 1fr; gap: 50px; }
  .hero-copy { text-align: center; }
  .eyebrow { margin-inline: auto; }
  .hero h1, .hero-lead { margin-inline: auto; }
  .hero-actions, .hero-trust { justify-content: center; }
  .hero-visual { width: min(100%, 600px); margin-inline: auto; }
  .hero-stack { height: 480px; }
  .hero-frame-main { width: 82%; height: 380px; border-radius: 22px 22px 22px 90px; }
  .hero-frame-secondary { width: 48%; height: 200px; }
  .card-pin  { left: -8px; bottom: 38px; }
  .shape-red { width: 110px; height: 110px; right: -32px; }
  .shape-ring { width: 100px; height: 100px; border-width: 14px; left: -18px; }

  .intro-layout, .section-top, .why-layout, .about-layout, .faq-layout, .locations-heading, .catalog-heading {
    grid-template-columns: 1fr; gap: 36px;
  }
  .solution-grid { grid-template-columns: 1fr; }
  .solution-product .solution-content { width: 100%; }
  .product-art { right: 5%; width: 32%; height: 200px; opacity: .9; }

  .catalog-grid { grid-template-columns: repeat(3, 1fr); }

  .why-visual { width: min(100%, 540px); margin-inline: auto; }
  .why-photo { width: 80%; height: 420px; }
  .experience-badge { min-width: 240px; padding: 22px; }

  .steps { grid-template-columns: 1fr; gap: 12px; }
  .steps::before { display: none; }
  .step { padding-block: 22px; }

  .about-pillars { grid-template-columns: 1fr; }
  .about-panel { min-height: 380px; padding: 56px 40px; }
  .about-signature { left: 40px; bottom: 36px; }

  .faq-heading { position: static; }
  .location-grid { grid-template-columns: 1fr; }

  .final-cta-inner { flex-direction: column; align-items: flex-start; padding: 50px 44px; gap: 32px; }

  .footer-main { grid-template-columns: 1fr 1fr; gap: 40px; }
  .footer-contact { grid-column: 1 / -1; }
}

@media (max-width: 560px) {
  :root {
    --section-space: 54px;
    --section-heading-space: 30px;
  }
  .container { width: min(calc(100% - 28px), var(--container)); }
  .header-inner { min-height: 72px; }
  .brand-logo { height: 38px; }

  .hero { padding-top: 110px; }
  .hero h1 { font-size: clamp(2.2rem, 9vw, 2.85rem); }
  .hero h1 em { display: inline; }
  .mobile-title-break { display: block; }
  .hero-lead { font-size: .96rem; }
  .hero-actions { flex-direction: column; gap: 16px; width: 100%; }
  .hero-actions .button { width: 100%; }
  .hero-copy > .hero-trust { display: none; }
  .hero-trust-mobile {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-top: -14px;
  }
  .trust-divider { width: 38px; height: 1px; }
  .trust-meta { align-items: center; text-align: center; }
  .trust-meta span { max-width: none; }

  .hero-visual { min-height: 380px; }
  .hero-stack { height: 380px; }
  .hero-frame-main { width: 84%; height: 290px; border-radius: 18px 18px 18px 60px; }
  .hero-frame-secondary { width: 50%; height: 160px; border-bottom-right-radius: 60px; border-width: 4px; }
  .floating-card { padding: 11px 14px 11px 11px; }
  .floating-card small { display: none; }
  .card-pin  { left: -4px; bottom: 28px; }
  .shape-red { width: 90px; height: 90px; right: -22px; top: -16px; }
  .shape-ring { width: 80px; height: 80px; border-width: 12px; }

  .hero-layout { gap: 22px; }
  .hero-marquee-wrap { margin-top: 12px; }
  .marquee-track { font-size: .7rem; gap: 22px; }

  .solution-card { min-height: 360px; padding: 26px 26px 80px; }
  .solution-link { left: 26px; right: 26px; bottom: 22px; }
  .solution-product {
    min-height: 0;
    padding-bottom: 92px;
  }
  .solution-product .card-meta { margin-bottom: 18px; }
  .solution-product .solution-content { width: 100%; }
  .solution-product .solution-content h3 { max-width: none; }
  .solution-product .solution-content p { max-width: none; }
  .product-art {
    position: relative;
    top: auto; right: auto;
    order: 2;
    width: 100%; height: 230px;
    margin-bottom: 24px;
    border-radius: 18px;
  }
  .product-art img { object-position: center 42%; }
  .solution-product .solution-content { order: 3; }
  .solution-product .solution-link { order: 4; }
  .anvisa-badge {
    max-width: 100%;
    white-space: normal;
    line-height: 1.35;
  }

  .catalog-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .catalog-cta { flex-direction: column; align-items: flex-start; padding: 22px; text-align: left; }
  .catalog-cta .button { width: 100%; }
  .filter-pill { padding: 9px 14px; font-size: .78rem; }

  .why-visual { min-height: 460px; }
  .why-photo { width: 86%; height: 380px; border-radius: 16px 90px 16px 16px; }
  .why-mini-photo { width: 40%; height: 160px; top: 60px; right: 0; }
  .experience-badge { min-width: 220px; padding: 20px 22px; }
  .experience-badge strong { font-size: 2.7rem; }

  .about-panel { min-height: 380px; padding: 50px 28px; border-radius: 18px 70px 18px 18px; }
  .about-signature { left: 28px; bottom: 30px; }

  .location-card { padding: 28px; }
  .location-actions { flex-direction: column; align-items: stretch; }
  .location-actions a { justify-content: center; }

  .final-cta { padding-bottom: var(--section-space); }
  .final-cta-inner { padding: 38px 28px; border-radius: 18px; }
  .button-large { width: 100%; padding-inline: 18px; }

  .footer-main { grid-template-columns: 1fr; gap: 36px; padding: 56px 0 40px; }
  .footer-contact { grid-column: auto; }
  .footer-bottom {
    grid-template-columns: 1fr;
    gap: 10px;
    text-align: center;
  }
  .footer-bottom p:last-child { justify-self: center; }
  .footer-credit { justify-self: center; }

  .whatsapp-float { right: 18px; bottom: 18px; width: 56px; height: 56px; }
  .whatsapp-float svg { width: 26px; }
}

@media (prefers-reduced-motion: reduce) {
  /* Reduce only scroll behavior and reveal-on-scroll (potentially disorienting).
     Keep decorative idle animations (marquee, btn-shine, step-icon pulse,
     wpp-bounce, floating cards) — they are slow, looped and non-flashing. */
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
}
