:root {
  --navy: #123963;
  --blue: #1d5f9c;
  --teal: #1d5f9c;
  --teal-dark: #123963;
  --copper: #c96f43;
  --ink: #152033;
  --muted: #66758a;
  --line: #dce5ee;
  --paper: #f5f8fb;
  --paper-strong: #eef5fb;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(18, 57, 99, 0.16);
  --radius: 8px;
  --header-height: 104px;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-soft: cubic-bezier(0.16, 1, 0.3, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 18px);
  overflow-x: hidden;
}

body {
  width: 100%;
  overflow-x: hidden;
  margin: 0;
  padding-top: var(--header-height);
  color: var(--ink);
  background: var(--white);
  font-family: "Sora", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0;
}

body.nav-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

.container {
  width: min(1180px, calc(100% - 40px));
  max-width: 1180px;
  margin: 0 auto;
}

.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(220, 229, 238, 0.72);
  backdrop-filter: blur(18px);
  transition:
    background 260ms ease,
    border-color 260ms ease,
    box-shadow 260ms ease,
    backdrop-filter 260ms ease;
}

.site-header.is-scrolled {
  background: transparent;
  border-bottom-color: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

.topline {
  max-height: 34px;
  overflow: hidden;
  background: var(--navy);
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.78rem;
  opacity: 1;
  transform: translateY(0);
  transition:
    max-height 260ms var(--ease-out),
    opacity 220ms ease,
    transform 260ms var(--ease-out);
}

.site-header.is-scrolled .topline {
  max-height: 0;
  opacity: 0;
  transform: translateY(-8px);
}

.topline__inner {
  min-height: 34px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 22px;
  transition: min-height 260ms var(--ease-out);
}

.site-header.is-scrolled .topline__inner {
  min-height: 0;
}

.topline span,
.topline a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  white-space: nowrap;
}

.topline svg {
  width: 14px;
  height: 14px;
}

.nav-shell {
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border: 1px solid transparent;
  border-radius: 0;
  transition:
    height 260ms var(--ease-out),
    margin 260ms var(--ease-out),
    padding 260ms var(--ease-out),
    border-color 260ms ease,
    border-radius 260ms var(--ease-out),
    background 260ms ease,
    box-shadow 260ms var(--ease-out),
    transform 260ms var(--ease-out);
}

.site-header.is-scrolled .nav-shell {
  height: 64px;
  margin-top: 10px;
  margin-bottom: 10px;
  padding: 0 14px 0 16px;
  border-color: rgba(220, 229, 238, 0.82);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 42px rgba(18, 57, 99, 0.13);
  backdrop-filter: blur(18px);
  animation: fixedHeaderIn 320ms var(--ease-out) both;
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 230px;
  transition: min-width 260ms var(--ease-out);
}

.brand img {
  width: clamp(238px, 18vw, 286px);
  height: auto;
  transition: width 260ms var(--ease-out), transform 260ms var(--ease-out), filter 260ms ease;
}

.site-header.is-scrolled .brand {
  min-width: 206px;
}

.site-header.is-scrolled .brand img {
  width: 218px;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  transition:
    border-color 240ms ease,
    background 240ms ease,
    box-shadow 240ms ease,
    padding 240ms var(--ease-out);
}

.site-header.is-scrolled .main-nav {
  border-color: transparent;
  background: transparent;
}

.main-nav a {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  border-radius: 0;
  padding: 0;
  color: #35455d;
  font-size: 0.88rem;
  font-weight: 600;
  transition: color 160ms ease, background 160ms ease;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  color: var(--blue);
  background: transparent;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.site-header.is-scrolled .btn {
  min-height: 40px;
}

.btn {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  padding: 0 16px;
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1;
  position: relative;
  overflow: hidden;
  transition:
    min-height 240ms var(--ease-out),
    transform 160ms ease,
    box-shadow 160ms ease,
    background 160ms ease,
    border-color 160ms ease;
  text-align: center;
  white-space: nowrap;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-1px);
}

.btn svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

.btn--primary {
  color: var(--white);
  background: var(--teal);
  box-shadow: 0 14px 32px rgba(29, 95, 156, 0.27);
}

.btn--primary:hover,
.btn--primary:focus-visible {
  background: var(--teal-dark);
}

.btn--ghost {
  color: var(--navy);
  border-color: var(--line);
  background: var(--white);
}

.btn--ghost:hover,
.btn--ghost:focus-visible {
  border-color: rgba(29, 95, 156, 0.34);
  box-shadow: 0 12px 28px rgba(18, 57, 99, 0.1);
}

.btn--light {
  color: var(--navy);
  background: var(--white);
  border-color: rgba(255, 255, 255, 0.45);
}

.btn--large {
  min-height: 52px;
  padding: 0 20px;
}

.menu-toggle {
  width: 44px;
  height: 44px;
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.menu-toggle span {
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: var(--navy);
  transition: transform 160ms ease, opacity 160ms ease;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  min-height: clamp(640px, calc(100svh - var(--header-height) - 92px), 860px);
  position: relative;
  overflow: hidden;
  color: var(--white);
  background-image: linear-gradient(90deg, rgba(13, 34, 56, 0.9), rgba(13, 34, 56, 0.58), rgba(13, 34, 56, 0.26)),
    var(--hero-bg, url("Imgs/artes/1/art%20(1).jpg"));
  background-position: center;
  background-size: cover;
  isolation: isolate;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 34%;
  background: linear-gradient(0deg, rgba(9, 25, 43, 0.78), rgba(9, 25, 43, 0));
  z-index: -1;
}

.hero__shade {
  position: absolute;
  inset: 0;
  z-index: -2;
  background: #0b243c;
}

.hero__content {
  min-height: clamp(640px, calc(100svh - var(--header-height) - 92px), 860px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(500px, 590px);
  align-items: center;
  gap: 56px;
  padding: 70px 0 66px;
}

.hero__copy {
  min-width: 0;
  max-width: 730px;
  container-type: inline-size;
}

.eyebrow {
  position: relative;
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  gap: 10px;
  max-width: 100%;
  border: 1px solid rgba(13, 36, 59, 0.1);
  border-radius: 999px;
  padding: 9px 16px;
  color: var(--white);
  background: var(--navy);
  box-shadow: 0 14px 30px rgba(18, 57, 99, 0.1);
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.15;
  text-transform: uppercase;
  vertical-align: top;
}

.eyebrow svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  stroke-width: 2.2;
}

.hero .eyebrow {
  border-color: rgba(255, 255, 255, 0.22);
  color: var(--navy);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.2);
}

.section--dark .eyebrow {
  border-color: rgba(255, 255, 255, 0.18);
  color: var(--navy);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.2);
}

.hero h1,
.section-heading h2,
.focus-copy h2,
.difference-copy h2,
.catalog-card h2,
.contact-panel h2 {
  margin: 0;
  color: inherit;
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: 0;
}

.hero h1 {
  max-width: none;
  margin-top: 14px;
  font-size: clamp(3.4rem, 7.2vw, 7rem);
  font-size: clamp(3.4rem, 19cqw, 7rem);
  word-break: keep-all;
  overflow-wrap: normal;
}

.hero h1 span {
  display: block;
  white-space: nowrap;
}

.hero p {
  max-width: 660px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1.02rem, 1.8vw, 1.24rem);
  overflow-wrap: anywhere;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.hero__badges span {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  padding: 0 13px;
  color: rgba(255, 255, 255, 0.88);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  font-size: 0.8rem;
  font-weight: 700;
  overflow-wrap: anywhere;
}

.hero__slider {
  position: relative;
  isolation: isolate;
  justify-self: end;
  width: min(100%, 620px);
  padding: 0;
}

.hero__slider::before {
  content: none;
}

.hero__slider::after {
  content: none;
}

.hero__frame {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  border: 0;
  border-radius: 8px;
  background: #0a2239;
  box-shadow: 0 24px 75px rgba(0, 0, 0, 0.22);
  clip-path: polygon(0 0, 100% 0, 100% 88%, 91% 100%, 0 100%);
  isolation: isolate;
}

.hero__frame::before,
.hero__frame::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero__frame::before {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(7, 27, 47, 0.42) 0%, rgba(13, 42, 70, 0.22) 48%, rgba(29, 95, 156, 0.08) 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0) 42%, rgba(6, 21, 38, 0.58) 100%);
}

.hero__frame::after {
  z-index: 2;
  opacity: 0.28;
  background:
    linear-gradient(135deg, transparent 0 52%, rgba(255, 255, 255, 0.42) 52.2% 53%, transparent 53.2%),
    repeating-linear-gradient(
      135deg,
      transparent 0,
      transparent 104px,
      rgba(167, 216, 255, 0.34) 105px,
      rgba(167, 216, 255, 0.34) 106px,
      transparent 107px,
      transparent 188px
    );
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 12%, #000 86%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, #000 12%, #000 86%, transparent 100%);
}

.hero__frame img {
  position: relative;
  z-index: 0;
  width: 100%;
  height: 520px;
  object-fit: cover;
  transform-origin: center;
  filter: brightness(1.08) saturate(1.04) contrast(1.02);
  transition: opacity 180ms ease, transform 520ms var(--ease-out);
}

.hero__frame.is-animating img {
  animation: heroSlideImageIn 920ms cubic-bezier(0.2, 0.9, 0.22, 1) both;
}

.hero__frame.is-animating::after {
  animation: heroSlideLinesIn 920ms cubic-bezier(0.2, 0.9, 0.22, 1) both;
}

.hero__frame-caption {
  position: absolute;
  left: 28px;
  right: auto;
  bottom: 28px;
  z-index: 3;
  width: min(78%, 520px);
  border: 1px solid rgba(167, 216, 255, 0.36);
  border-radius: 8px;
  padding: 18px 20px;
  background:
    linear-gradient(135deg, rgba(13, 42, 70, 0.88), rgba(7, 27, 47, 0.76)),
    rgba(11, 36, 60, 0.84);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 20px 54px rgba(0, 0, 0, 0.26);
  backdrop-filter: blur(18px);
}

.hero__frame.is-animating .hero__frame-caption {
  animation: heroSlideCaptionIn 720ms cubic-bezier(0.2, 0.9, 0.22, 1) 120ms both;
}

.hero__frame-title {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  align-items: center;
  gap: 10px;
}

.hero__frame-caption .hero__frame-icon {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 34px;
  color: #a7d8ff;
  line-height: 1;
}

.hero__frame-icon svg {
  width: 17px;
  height: 17px;
  display: block;
  flex: 0 0 17px;
  stroke-width: 2.2;
}

.hero__frame-caption strong {
  display: block;
  min-width: 0;
  color: var(--white);
  font-size: clamp(1.04rem, 1.7vw, 1.28rem);
  font-weight: 850;
  line-height: 1.22;
  text-transform: none;
}

.hero__frame-caption > span {
  display: block;
}

.hero__frame-caption > span {
  margin-top: 8px;
  padding-left: 44px;
  color: #a7d8ff;
  font-size: 0.82rem;
  font-weight: 800;
  line-height: 1.45;
}

.hero__dots {
  position: absolute;
  top: 28px;
  right: 28px;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(167, 216, 255, 0.26);
  border-radius: 999px;
  padding: 8px 9px;
  background: rgba(7, 27, 47, 0.7);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(16px);
}

.hero__dots button {
  width: 8px;
  height: 8px;
  border: 0;
  border-radius: 999px;
  padding: 0;
  background: rgba(255, 255, 255, 0.5);
  transition: width 180ms ease, background 180ms ease, opacity 180ms ease;
}

.hero__dots button.is-active {
  width: 28px;
  background: #a7d8ff;
}

.slider-arrow,
.product-carousel button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.28);
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  transition: background 160ms ease, transform 160ms ease;
}

.slider-arrow {
  width: 48px;
  height: 48px;
  position: absolute;
  top: 50%;
  z-index: 4;
  border-color: rgba(167, 216, 255, 0.34);
  background: rgba(11, 36, 60, 0.66);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.24);
  transform: translateY(-50%);
  backdrop-filter: blur(16px);
}

[data-hero-prev] {
  left: -10px;
}

[data-hero-next] {
  right: -10px;
}

.slider-arrow:hover,
.slider-arrow:focus-visible {
  border-color: rgba(167, 216, 255, 0.52);
  background: rgba(29, 95, 156, 0.76);
  transform: translateY(-50%) scale(1.04);
}

.proof-strip {
  position: relative;
  z-index: 2;
  margin-top: -28px;
}

.proof-strip__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
  box-shadow: var(--shadow);
}

.proof-strip__grid div {
  min-height: 132px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 22px 24px;
  background: var(--white);
}

.proof-strip__grid svg {
  width: 28px;
  height: 28px;
  margin-bottom: 12px;
  color: var(--teal);
  stroke-width: 2;
}

.proof-strip__grid strong {
  color: var(--navy);
  font-size: clamp(1.35rem, 2.3vw, 2rem);
  line-height: 1;
}

.proof-strip__grid span {
  max-width: 250px;
  margin-top: 9px;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 600;
  line-height: 1.45;
}

.section {
  padding: 100px 0;
}

.section--soft {
  background: var(--paper);
}

.section--dark {
  color: var(--white);
  background: #102d4a;
}

.intro-section {
  padding-top: 118px;
}

.intro-grid,
.focus-grid,
.difference-grid,
.testimonials-grid,
.faq-grid,
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 64px;
  align-items: start;
}

.hero__content > *,
.intro-grid > *,
.focus-grid > *,
.difference-grid > *,
.testimonials-grid > *,
.faq-grid > *,
.contact-grid > * {
  min-width: 0;
  max-width: 100%;
}

.section-heading {
  min-width: 0;
  max-width: 700px;
}

.intro-heading {
  display: flex;
  min-height: 100%;
  flex-direction: column;
}

.section-heading--center {
  max-width: 760px;
  margin: 0 auto 46px;
  text-align: center;
}

.section-heading h2,
.focus-copy h2,
.difference-copy h2,
.catalog-card h2,
.contact-panel h2 {
  margin-top: 12px;
  font-size: clamp(2rem, 4.2vw, 3.25rem);
  max-width: 100%;
  overflow-wrap: anywhere;
}

.section-heading p,
.focus-copy p,
.difference-copy p,
.catalog-card p,
.contact-panel p,
.intro-copy p {
  margin: 18px 0 0;
  color: var(--muted);
}

.section--dark .difference-copy p {
  color: rgba(255, 255, 255, 0.75);
}

.intro-subtitle {
  max-width: 560px;
  font-size: 1.02rem;
  line-height: 1.75;
}

.intro-copy {
  padding-top: 34px;
}

.intro-copy p {
  font-size: 1.03rem;
}

.intro-visual {
  position: relative;
  min-height: 300px;
  overflow: hidden;
  margin: 26px 0 0;
  border: 1px solid rgba(18, 57, 99, 0.14);
  border-radius: var(--radius);
  background: #102d4a;
  box-shadow: 0 26px 70px rgba(18, 57, 99, 0.16);
  clip-path: polygon(0 0, 100% 0, 100% 84%, 88% 100%, 0 100%);
  isolation: isolate;
}

.intro-visual::before,
.intro-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.intro-visual::before {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(11, 36, 60, 0.82) 0%, rgba(11, 36, 60, 0.36) 48%, rgba(29, 95, 156, 0.18) 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(11, 36, 60, 0.72));
}

.intro-visual::after {
  z-index: 2;
  opacity: 0.38;
  background:
    linear-gradient(135deg, transparent 0 54%, rgba(255, 255, 255, 0.42) 54.2% 55.1%, transparent 55.3%),
    repeating-linear-gradient(
      135deg,
      transparent 0,
      transparent 96px,
      rgba(126, 184, 235, 0.34) 97px,
      rgba(126, 184, 235, 0.34) 98px,
      transparent 99px,
      transparent 170px
    );
  -webkit-mask-image: linear-gradient(90deg, #000 0%, #000 76%, transparent 100%);
  mask-image: linear-gradient(90deg, #000 0%, #000 76%, transparent 100%);
}

.intro-visual img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  object-position: center;
  transform: scale(1.02);
}

.intro-visual figcaption {
  position: absolute;
  left: 22px;
  bottom: 22px;
  z-index: 3;
  max-width: min(360px, calc(100% - 44px));
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  padding: 16px 18px;
  color: var(--white);
  background: rgba(11, 36, 60, 0.72);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(14px);
}

.intro-visual figcaption span,
.intro-visual figcaption strong {
  display: block;
}

.intro-visual figcaption span {
  color: #a7d8ff;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.intro-visual figcaption strong {
  margin-top: 6px;
  font-size: 1rem;
  line-height: 1.35;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--blue);
  font-weight: 800;
}

.text-link svg {
  width: 17px;
  height: 17px;
}

.specialty-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.specialty-card {
  position: relative;
  overflow: hidden;
  min-height: 300px;
  border: 1px solid rgba(220, 229, 238, 0.92);
  border-radius: var(--radius);
  padding: 26px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(238, 245, 251, 0.92)),
    var(--white);
  box-shadow: 0 18px 46px rgba(18, 57, 99, 0.08);
  isolation: isolate;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.specialty-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0;
  background:
    radial-gradient(circle at 88% 12%, rgba(29, 95, 156, 0.18), transparent 30%),
    linear-gradient(90deg, rgba(18, 57, 99, 0.08), transparent 48%);
  transition: opacity 180ms ease;
}

.specialty-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 26px;
  width: 52px;
  height: 4px;
  border-radius: 0 0 999px 999px;
  background: linear-gradient(90deg, var(--teal), var(--blue));
}

.specialty-card:hover {
  transform: translateY(-2px);
  border-color: rgba(29, 95, 156, 0.28);
  box-shadow: 0 16px 34px rgba(18, 57, 99, 0.1);
}

.specialty-card:hover::before {
  opacity: 1;
}

.specialty-icon {
  width: 68px;
  height: 68px;
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 18px;
}

.specialty-icon img {
  width: 64px;
  height: 64px;
  object-fit: contain;
  object-position: left center;
}

.specialty-card > span {
  display: block;
  color: #1d6ead;
  font-size: 0.72rem;
  font-weight: 800;
  line-height: 1.35;
  text-transform: uppercase;
}

.specialty-card h3,
.product-card h3,
.process-grid h3,
.difference-list h3,
.faq-item button,
.footer-grid h3 {
  margin: 10px 0 0;
  color: var(--ink);
  font-size: 1.02rem;
  line-height: 1.25;
  letter-spacing: 0;
}

.specialty-card h3 {
  margin-top: 8px;
  color: var(--navy);
  font-size: 1.25rem;
}

.specialty-card p,
.product-card p,
.process-grid p,
.difference-list p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.specialty-card p {
  color: #43546c;
  line-height: 1.65;
}

.specialty-cta-card {
  position: relative;
  min-height: 300px;
  display: flex;
  grid-column: span 2;
  overflow: hidden;
  border: 1px solid rgba(29, 95, 156, 0.24);
  border-radius: var(--radius);
  padding: 26px;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(18, 57, 99, 0.96), rgba(29, 95, 156, 0.9)),
    var(--navy);
  box-shadow: 0 24px 70px rgba(18, 57, 99, 0.18);
  isolation: isolate;
}

.specialty-cta-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 84% 18%, rgba(255, 255, 255, 0.18), transparent 28%),
    linear-gradient(135deg, transparent 0 58%, rgba(255, 255, 255, 0.16) 58.2% 59%, transparent 59.2%);
}

.specialty-cta-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 26px;
  width: 74px;
  height: 4px;
  border-radius: 0 0 999px 999px;
  background: linear-gradient(90deg, #a7d8ff, var(--copper));
}

.specialty-cta-card__content {
  max-width: 610px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.specialty-cta-card span {
  color: #a7d8ff;
  font-size: 0.72rem;
  font-weight: 800;
  line-height: 1.35;
  text-transform: uppercase;
}

.specialty-cta-card h3 {
  max-width: 520px;
  margin: 10px 0 0;
  color: var(--white);
  font-size: clamp(1.45rem, 2.5vw, 2rem);
  line-height: 1.12;
}

.specialty-cta-card p {
  max-width: 560px;
  margin: 14px 0 22px;
  color: rgba(255, 255, 255, 0.78);
}

.specialty-cta-card .btn {
  width: fit-content;
  background: var(--white);
  color: var(--navy);
  box-shadow: 0 16px 34px rgba(2, 12, 24, 0.18);
}

.product-focus {
  background: linear-gradient(180deg, var(--white), var(--paper-strong));
}

.focus-grid {
  align-items: center;
}

.feature-list {
  display: grid;
  gap: 12px;
  margin: 28px 0 30px;
}

.feature-list span {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #304059;
  font-weight: 700;
}

.feature-list svg {
  width: 20px;
  height: 20px;
  color: var(--teal);
}

.product-carousel {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.carousel-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
}

.carousel-top span {
  color: var(--navy);
  font-weight: 800;
}

.carousel-title {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-width: 0;
}

.carousel-title svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  color: var(--teal);
  stroke-width: 2.2;
}

.carousel-top div {
  display: flex;
  gap: 8px;
}

.product-carousel button {
  width: 40px;
  height: 40px;
  color: var(--navy);
  border-color: var(--line);
  background: var(--paper);
}

.product-carousel button:hover,
.product-carousel button:focus-visible {
  background: var(--paper-strong);
}

.product-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(320px, 78%);
  gap: 14px;
  overflow-x: auto;
  scroll-snap-type: none;
  scrollbar-width: none;
  cursor: grab;
  overscroll-behavior-inline: contain;
  touch-action: pan-y;
  -webkit-overflow-scrolling: touch;
  user-select: none;
}

.product-track::-webkit-scrollbar {
  display: none;
}

.product-track.is-dragging {
  cursor: grabbing;
  scroll-snap-type: none;
}

.product-track.is-auto-running {
  scroll-snap-type: none;
}

.product-track.is-dragging,
.product-track.is-dragging * {
  user-select: none;
}

.product-track.is-dragging .product-card {
  pointer-events: none;
}

.product-card {
  min-height: 460px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.product-card img {
  width: 100%;
  height: 270px;
  object-fit: contain;
  object-position: center;
  padding: 10px;
  background: #f8fbfd;
}

.product-card div {
  padding: 18px;
}

.product-card span {
  color: var(--copper);
  font-size: 0.73rem;
  font-weight: 800;
  text-transform: uppercase;
}

.process-section {
  background: var(--white);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 42px;
}

.process-grid article {
  position: relative;
  min-height: 260px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  background: var(--white);
  --process-delay: 0ms;
}

.process-grid article::before {
  content: "";
  position: absolute;
  top: 62px;
  right: -17px;
  width: 18px;
  height: 1px;
  background: var(--line);
  transform-origin: left center;
}

.process-grid article:last-child::before {
  display: none;
}

.process-grid article::after {
  content: "";
  position: absolute;
  inset: -1px;
  border: 1px solid rgba(29, 95, 156, 0);
  border-radius: inherit;
  pointer-events: none;
}

.process-grid span {
  display: block;
  color: rgba(29, 95, 156, 0.22);
  font-size: 2.7rem;
  font-weight: 800;
  line-height: 1;
}

@media (prefers-reduced-motion: no-preference) {
  .process-grid.is-steps-visible article {
    animation: processStepIn 720ms var(--ease-out) both;
    animation-delay: var(--process-delay);
  }

  .process-grid.is-steps-visible article::before {
    background: var(--blue);
    animation: processConnectorDraw 620ms var(--ease-out) both;
    animation-delay: calc(var(--process-delay) + 440ms);
  }

  .process-grid.is-steps-visible article::after {
    animation: processStepRing 960ms ease-out both;
    animation-delay: calc(var(--process-delay) + 120ms);
  }

  .process-grid.is-steps-visible span {
    animation: processStepNumber 780ms cubic-bezier(0.2, 0.9, 0.22, 1.18) both;
    animation-delay: calc(var(--process-delay) + 120ms);
  }
}

.difference-grid {
  align-items: center;
}

.difference-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.difference-list article {
  min-height: 214px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  padding: 24px;
  background: rgba(255, 255, 255, 0.06);
}

.difference-list svg {
  width: 30px;
  height: 30px;
  color: #a7d8ff;
}

.difference-list h3 {
  color: var(--white);
}

.difference-list p {
  color: rgba(255, 255, 255, 0.72);
}

.difference-copy .btn {
  margin-top: 30px;
}

.catalog-cta {
  padding: 84px 0;
  background: var(--paper);
}

.catalog-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 42px;
  background: var(--white);
  box-shadow: 0 20px 58px rgba(18, 57, 99, 0.09);
}

.catalog-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px;
}

.testimonials {
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 22%, rgba(29, 95, 156, 0.09), transparent 34%),
    linear-gradient(180deg, var(--white), #f8fbfd);
}

.testimonials-grid {
  grid-template-columns: minmax(300px, 0.78fr) minmax(640px, 1.22fr);
  gap: 48px;
}

.testimonials-heading {
  position: relative;
  max-width: 540px;
}

.testimonial-title-art {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(13, 36, 59, 0.1);
  border-radius: 999px;
  margin-bottom: 18px;
  padding: 9px 16px;
  color: var(--white);
  background: var(--navy);
  box-shadow: 0 14px 30px rgba(18, 57, 99, 0.1);
}

.testimonial-title-art::after {
  content: none;
}

.testimonial-title-art svg {
  width: 19px;
  height: 19px;
  stroke-width: 2;
}

.testimonial-title-art span {
  color: var(--white);
  font-size: 0.88rem;
  font-weight: 800;
  line-height: 1.15;
  text-transform: uppercase;
}

.testimonial-carousel {
  min-width: 0;
  border: 0;
  border-radius: 0;
  padding: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

.testimonial-toolbar {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
  margin-bottom: 16px;
}

.testimonial-toolbar > span {
  display: none;
}

.testimonial-toolbar div {
  display: flex;
  gap: 8px;
}

.testimonial-toolbar button {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--navy);
  background: var(--white);
  transition: background 160ms ease, transform 160ms ease, border-color 160ms ease;
}

.testimonial-toolbar button:hover,
.testimonial-toolbar button:focus-visible {
  border-color: rgba(29, 95, 156, 0.34);
  background: var(--paper-strong);
  transform: translateY(-1px);
}

.testimonial-toolbar svg {
  width: 18px;
  height: 18px;
}

.testimonial-viewport {
  overflow: hidden;
  padding: 2px 2px 20px;
}

.testimonial-list {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 16px) / 2);
  gap: 16px;
  cursor: grab;
  touch-action: pan-y;
  user-select: none;
  transition: transform 420ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.testimonial-list.is-dragging {
  cursor: grabbing;
}

.testimonial-list.is-dragging .testimonial-card {
  pointer-events: none;
}

.testimonial-card {
  position: relative;
  min-height: 360px;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(29, 95, 156, 0.18);
  border-radius: 16px;
  padding: 24px;
  background: var(--white);
  box-shadow: 0 10px 24px rgba(18, 57, 99, 0.065);
}

.testimonial-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.testimonial-quote {
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  border: 1px solid rgba(29, 95, 156, 0.16);
  border-radius: 14px;
  padding: 9px;
  color: var(--teal);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 12px 24px rgba(18, 57, 99, 0.08);
}

.stars {
  display: flex;
  gap: 5px;
  color: #ffb703;
}

.stars svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: drop-shadow(0 5px 10px rgba(255, 183, 3, 0.28));
  transform-origin: center;
}

.testimonial-card.stars-visible .stars svg {
  animation: testimonialStarIn 560ms cubic-bezier(0.2, 0.9, 0.22, 1.25) both;
}

.testimonial-card.stars-visible .stars svg:nth-child(1) {
  --star-pop: 1.08;
  animation-delay: 40ms;
}

.testimonial-card.stars-visible .stars svg:nth-child(2) {
  --star-pop: 1.12;
  animation-delay: 130ms;
}

.testimonial-card.stars-visible .stars svg:nth-child(3) {
  --star-pop: 1.16;
  animation-delay: 220ms;
}

.testimonial-card.stars-visible .stars svg:nth-child(4) {
  --star-pop: 1.2;
  animation-delay: 310ms;
}

.testimonial-card.stars-visible .stars svg:nth-child(5) {
  --star-pop: 1.24;
  animation-delay: 400ms;
}

.testimonial-list p {
  flex: 1;
  margin: 24px 0 26px;
  color: #263952;
  font-size: 1rem;
  line-height: 1.72;
}

.testimonial-author {
  display: flex;
  align-items: center;
  border-top: 1px solid rgba(29, 95, 156, 0.12);
  padding-top: 16px;
}

.testimonial-author > span {
  display: none;
}

.testimonial-author div {
  display: grid;
  gap: 2px;
}

.testimonial-list strong {
  color: var(--navy);
  font-size: 0.98rem;
}

.testimonial-author small {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
}

.testimonial-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 18px;
}

.testimonial-dots button {
  width: 8px;
  height: 8px;
  border: 0;
  border-radius: 999px;
  padding: 0;
  background: rgba(18, 57, 99, 0.2);
  transition: width 180ms ease, background 180ms ease;
}

.testimonial-dots button.is-active {
  width: 28px;
  background: var(--teal);
}

.faq-grid {
  grid-template-columns: minmax(280px, 0.72fr) minmax(680px, 1.28fr);
  gap: 46px;
  align-items: start;
}

.faq-heading {
  position: relative;
  max-width: 500px;
}

.faq-heading::before {
  content: "";
  display: block;
  width: 72px;
  height: 3px;
  border-radius: 999px;
  margin-bottom: 18px;
  background: var(--blue);
}

.faq-kicker {
  gap: 10px;
}

.faq-kicker svg {
  width: 18px;
  height: 18px;
  stroke-width: 2;
}

.faq-heading h2 {
  margin-top: 14px;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-item {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.faq-item button {
  width: 100%;
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border: 0;
  padding: 18px 20px;
  text-align: left;
  background: transparent;
}

.faq-item button svg {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  color: var(--teal);
  transition: transform 160ms ease;
}

.faq-item.is-open button svg {
  transform: rotate(45deg);
}

.faq-item div {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 200ms ease;
}

.faq-item.is-open div {
  grid-template-rows: 1fr;
}

.faq-item p {
  min-height: 0;
  overflow: hidden;
  margin: 0;
  padding: 0 20px;
  color: var(--muted);
}

.faq-item.is-open p {
  padding-bottom: 20px;
}

.contact-section {
  background: var(--white);
}

.contact-panel {
  position: sticky;
  top: 128px;
}

.contact-methods {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.contact-methods a {
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 14px;
  color: #31445e;
  background: var(--paper);
  font-weight: 700;
}

.contact-methods svg {
  width: 20px;
  height: 20px;
  color: var(--teal);
  flex: 0 0 auto;
}

.contact-form {
  display: grid;
  gap: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  background: var(--paper);
}

.form-honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.field-control {
  position: relative;
  display: block;
}

.field-control > i,
.field-control > svg {
  position: absolute;
  left: 15px;
  top: 50%;
  width: 19px;
  height: 19px;
  color: var(--teal);
  pointer-events: none;
  transform: translateY(-50%);
  z-index: 1;
}

.field-control--textarea > i,
.field-control--textarea > svg {
  top: 16px;
  transform: none;
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--navy);
  font-size: 0.88rem;
  font-weight: 800;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 13px 14px;
  color: var(--ink);
  background: var(--white);
  outline: 0;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.field-control input,
.field-control select,
.field-control textarea {
  padding-left: 46px;
}

.field-control select {
  padding-right: 40px;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form .form-consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: #41516a;
  font-size: 0.86rem;
  font-weight: 700;
  line-height: 1.45;
}

.contact-form .form-consent input {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  margin-top: 2px;
  padding: 0;
  accent-color: var(--teal);
}

.form-consent a {
  color: var(--blue);
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  border-color: rgba(29, 95, 156, 0.55);
  box-shadow: 0 0 0 4px rgba(29, 95, 156, 0.12);
}

.form-status {
  min-height: 1.35em;
  margin: 0;
  color: #41516a;
  font-size: 0.9rem;
  font-weight: 800;
}

.contact-form[data-state="success"] .form-status {
  color: #13724f;
}

.contact-form[data-state="error"] .form-status {
  color: #b42318;
}

.contact-form button[type="submit"].is-loading {
  opacity: 1;
}

.contact-form button[type="submit"].is-loading svg {
  animation: submitSpin 900ms linear infinite;
}

.contact-form[data-state="success"] button[type="submit"] {
  background: #13724f;
  box-shadow: 0 14px 32px rgba(19, 114, 79, 0.24);
  opacity: 1;
}

.contact-form button[disabled] {
  cursor: not-allowed;
  opacity: 0.72;
}

.contact-form[data-state="success"] button[disabled] {
  opacity: 1;
}

.legal-main {
  background:
    radial-gradient(circle at 12% 16%, rgba(29, 95, 156, 0.1), transparent 32%),
    linear-gradient(180deg, var(--white), var(--paper));
}

.legal-hero {
  padding: 94px 0 42px;
}

.legal-hero .section-heading {
  max-width: 820px;
}

.legal-hero h1 {
  margin-top: 14px;
  color: var(--ink);
  font-size: clamp(2.35rem, 5vw, 4.2rem);
  line-height: 0.98;
}

.legal-content {
  padding: 0 0 96px;
}

.legal-card {
  max-width: 980px;
  border: 1px solid rgba(220, 229, 238, 0.95);
  border-radius: var(--radius);
  padding: clamp(26px, 4vw, 46px);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 24px 70px rgba(18, 57, 99, 0.09);
}

.legal-card h2 {
  margin: 34px 0 12px;
  color: var(--navy);
  font-size: clamp(1.18rem, 2vw, 1.55rem);
}

.legal-card h2:first-child {
  margin-top: 0;
}

.legal-card h3 {
  margin: 24px 0 10px;
  color: var(--navy);
  font-size: 1.03rem;
}

.legal-card p,
.legal-card li {
  color: var(--muted);
  line-height: 1.78;
}

.legal-card p {
  margin: 0 0 14px;
}

.legal-card ul,
.legal-card ol {
  display: grid;
  gap: 10px;
  margin: 12px 0 20px;
  padding-left: 22px;
}

.legal-card strong {
  color: var(--navy);
}

.site-footer {
  color: rgba(255, 255, 255, 0.76);
  background: #0d243b;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.7fr 0.9fr 1fr;
  gap: 42px;
  padding: 62px 0 44px;
}

.footer-brand img {
  width: min(300px, 100%);
  padding: 16px 20px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.18);
}

.footer-brand p {
  max-width: 380px;
  margin: 18px 0 0;
}

.footer-grid h3 {
  color: var(--white);
  margin: 0 0 16px;
}

.footer-grid a,
.footer-grid span {
  display: block;
  margin-top: 10px;
}

.footer-grid a:hover,
.footer-grid a:focus-visible {
  color: var(--white);
}

.footer-contact a,
.footer-contact span {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.footer-contact svg {
  width: 17px;
  height: 17px;
  flex: 0 0 auto;
  margin-top: 3px;
  color: #25d366;
}

.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 22px;
}

.footer-social a {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  margin: 0;
}

.footer-social svg {
  width: 19px;
  height: 19px;
}

.brand-icon--instagram {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.brand-icon--whatsapp {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.footer-bottom {
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.84rem;
}

.footer-bottom a {
  color: var(--white);
  font-weight: 700;
}

.footer-bottom a:hover,
.footer-bottom a:focus-visible {
  color: #d7e8f8;
}

.footer-legal-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 14px;
}

.floating-whatsapp {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 45;
  width: 64px;
  height: 64px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: var(--white);
  background: #25d366;
  box-shadow: 0 18px 40px rgba(37, 211, 102, 0.34);
}

.floating-whatsapp svg {
  width: 29px;
  height: 29px;
}

.reveal-item {
  opacity: 0;
  transform: translate3d(0, 28px, 0);
  transition:
    opacity 680ms var(--ease-out),
    transform 680ms var(--ease-out);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

.reveal-item.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.main-nav a,
.text-link,
.contact-methods a,
.footer-grid a,
.footer-social a,
.hero__badges span,
.proof-strip__grid div,
.feature-list span,
.faq-item,
.catalog-card,
.testimonial-card,
.product-card,
.product-carousel,
.difference-list article,
.intro-visual,
.hero__slider,
.hero__frame-caption {
  transition:
    transform 260ms var(--ease-out),
    box-shadow 260ms var(--ease-out),
    border-color 260ms ease,
    background 260ms ease,
    color 180ms ease,
    opacity 260ms ease;
}

.btn {
  isolation: isolate;
}

.btn::after {
  content: "";
  position: absolute;
  inset: -35% -55%;
  z-index: 0;
  pointer-events: none;
  background: linear-gradient(105deg, transparent 38%, rgba(255, 255, 255, 0.22) 50%, transparent 62%);
  transform: translateX(-70%) rotate(8deg);
  transition: transform 760ms var(--ease-out);
}

.btn:hover::after,
.btn:focus-visible::after {
  transform: translateX(70%) rotate(8deg);
}

.btn svg {
  position: relative;
  z-index: 1;
  transition: transform 220ms var(--ease-out);
}

.btn:hover svg,
.btn:focus-visible svg {
  transform: translateX(1px);
}

.main-nav a {
  position: relative;
  overflow: hidden;
}

.main-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 7px;
  left: 0;
  height: 2px;
  border-radius: 999px;
  background: var(--blue);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 240ms var(--ease-out);
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after {
  transform: scaleX(1);
}

.brand img {
  transition: width 260ms var(--ease-out), transform 260ms var(--ease-out), filter 260ms ease;
}

.brand:hover img,
.brand:focus-visible img {
  filter: drop-shadow(0 8px 14px rgba(18, 57, 99, 0.12));
  transform: translateY(-1px);
}

.topline a {
  transition: color 180ms ease, opacity 180ms ease;
}

.topline a:hover,
.topline a:focus-visible {
  color: var(--white);
  opacity: 1;
}

.hero__slider {
  animation: heroFloat 8s ease-in-out infinite;
}

.hero__frame img {
  transition: opacity 180ms ease, transform 520ms var(--ease-out);
}

.hero__slider:hover .hero__frame img,
.hero__slider:focus-within .hero__frame img {
  transform: scale(1.035);
}

.slider-arrow,
.product-carousel button,
.testimonial-toolbar button {
  transition:
    transform 220ms var(--ease-out),
    box-shadow 220ms var(--ease-out),
    background 220ms ease,
    border-color 220ms ease;
}

.slider-arrow:hover,
.slider-arrow:focus-visible,
.product-carousel button:hover,
.product-carousel button:focus-visible,
.testimonial-toolbar button:hover,
.testimonial-toolbar button:focus-visible {
  box-shadow: 0 10px 22px rgba(18, 57, 99, 0.1);
}

.proof-strip__grid div {
  position: relative;
  overflow: hidden;
}

.proof-strip__grid div::after {
  content: "";
  position: absolute;
  inset: auto 20px 0;
  height: 3px;
  border-radius: 999px 999px 0 0;
  background: var(--blue);
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 220ms ease, transform 220ms var(--ease-out);
}

.proof-strip__grid div:hover {
  background: linear-gradient(180deg, var(--white), rgba(238, 245, 251, 0.68));
  transform: translateY(-1px);
}

.proof-strip__grid div:hover::after {
  opacity: 1;
  transform: translateY(0);
}

.proof-strip__grid svg,
.feature-list svg,
.difference-list svg,
.contact-methods svg,
.footer-social svg {
  transition: transform 240ms var(--ease-out), color 180ms ease;
}

.proof-strip__grid div:hover svg,
.feature-list span:hover svg,
.contact-methods a:hover svg,
.contact-methods a:focus-visible svg,
.footer-social a:hover svg,
.footer-social a:focus-visible svg {
  transform: translateY(-1px) scale(1.03);
}

.text-link:hover,
.text-link:focus-visible {
  color: var(--teal-dark);
  transform: translateX(2px);
}

.text-link:hover svg,
.text-link:focus-visible svg {
  transform: translateX(2px);
}

.intro-visual {
  will-change: transform;
}

.intro-visual img {
  transition: transform 900ms var(--ease-soft), filter 420ms ease;
}

.intro-visual:hover {
  box-shadow: 0 18px 40px rgba(18, 57, 99, 0.1);
  transform: translateY(-2px);
}

.intro-visual:hover img {
  filter: saturate(1.03) contrast(1.01);
  transform: scale(1.015);
}

.specialty-icon {
  transition: transform 260ms var(--ease-out);
}

.specialty-icon img {
  transition: transform 260ms var(--ease-out);
}

.specialty-card:hover .specialty-icon {
  transform: translateY(-1px);
}

.specialty-card:hover .specialty-icon img {
  transform: scale(1.02);
}

.feature-list span:hover {
  color: var(--navy);
  transform: translateX(2px);
}

.product-card {
  position: relative;
  transition:
    transform 260ms var(--ease-out),
    box-shadow 260ms var(--ease-out),
    border-color 260ms ease;
}

.product-card img {
  transition: opacity 180ms ease;
}

.difference-list article,
.faq-item {
  position: relative;
}

.faq-item:hover {
  border-color: rgba(29, 95, 156, 0.28);
  box-shadow: 0 12px 28px rgba(18, 57, 99, 0.07);
  transform: translateY(-2px);
}

.difference-list article:hover {
  border-color: rgba(127, 216, 255, 0.44);
  background: linear-gradient(180deg, rgba(42, 124, 199, 0.2), rgba(255, 255, 255, 0.07));
  box-shadow: 0 16px 34px rgba(47, 145, 221, 0.18);
  transform: translateY(-2px);
}

.difference-list article:hover svg {
  color: #7fd8ff;
  transform: scale(1.03);
}

.difference-list article:hover p {
  color: rgba(228, 243, 255, 0.82);
}

.catalog-card:hover {
  box-shadow: 0 20px 44px rgba(18, 57, 99, 0.1);
  transform: translateY(-2px);
}

.testimonial-title-art {
  transition: transform 260ms var(--ease-out), box-shadow 260ms var(--ease-out), border-color 260ms ease;
}

.testimonials:hover .testimonial-title-art {
  border-color: rgba(29, 95, 156, 0.36);
  box-shadow: 0 14px 30px rgba(18, 57, 99, 0.08);
  transform: translateY(-1px);
}

.testimonial-card {
  transition:
    transform 280ms var(--ease-out),
    box-shadow 280ms var(--ease-out),
    border-color 240ms ease;
}

.stars svg {
  transition: transform 220ms var(--ease-out);
}

.testimonial-quote {
  transition: transform 280ms var(--ease-out), color 240ms ease;
}

.eyebrow,
.testimonial-title-art,
.faq-heading::before {
  transition:
    transform 260ms var(--ease-out),
    box-shadow 260ms var(--ease-out),
    background 220ms ease,
    color 220ms ease;
}

.section-heading:hover .eyebrow,
.section-heading:hover .testimonial-title-art,
.focus-copy:hover .eyebrow,
.difference-copy:hover .eyebrow,
.catalog-card:hover .eyebrow,
.contact-panel:hover .eyebrow {
  box-shadow: 0 18px 38px rgba(18, 57, 99, 0.14);
  transform: translateY(-1px);
}

.faq-heading:hover .faq-kicker {
  box-shadow: 0 18px 38px rgba(18, 57, 99, 0.14);
  transform: translateY(-1px);
}

.faq-item button {
  transition: color 180ms ease, background 220ms ease;
}

.faq-item:hover button,
.faq-item.is-open button {
  color: var(--navy);
  background: linear-gradient(90deg, rgba(29, 95, 156, 0.08), transparent);
}

.contact-methods a:hover,
.contact-methods a:focus-visible {
  border-color: rgba(29, 95, 156, 0.28);
  background: var(--white);
  box-shadow: 0 14px 30px rgba(18, 57, 99, 0.08);
  transform: translateX(2px);
}

.contact-form {
  transition: transform 260ms var(--ease-out), box-shadow 260ms var(--ease-out), border-color 260ms ease;
}

.contact-form:focus-within {
  border-color: rgba(29, 95, 156, 0.32);
  box-shadow: 0 18px 40px rgba(18, 57, 99, 0.08);
  transform: translateY(-1px);
}

.footer-social a:hover,
.footer-social a:focus-visible {
  border-color: rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-1px);
}

.floating-whatsapp {
  animation: whatsappPulse 3s ease-in-out infinite;
  transition: transform 240ms var(--ease-out), box-shadow 240ms var(--ease-out), background 180ms ease;
}

.floating-whatsapp:hover,
.floating-whatsapp:focus-visible {
  background: #1ebe5d;
  box-shadow: 0 20px 46px rgba(37, 211, 102, 0.42), 0 0 0 9px rgba(37, 211, 102, 0.12);
  transform: translateY(-2px) scale(1.04);
}

@keyframes heroFloat {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-3px);
  }
}

@keyframes fixedHeaderIn {
  from {
    opacity: 0.96;
    transform: translateY(-8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroSlideImageIn {
  0% {
    opacity: 0.72;
    transform: scale(1.08) translateX(12px);
  }

  100% {
    opacity: 1;
    transform: scale(1) translateX(0);
  }
}

@keyframes heroSlideCaptionIn {
  0% {
    opacity: 0;
    transform: translateY(18px) scale(0.98);
  }

  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes heroSlideLinesIn {
  0% {
    opacity: 0;
    transform: translateX(18px);
  }

  100% {
    opacity: 0.28;
    transform: translateX(0);
  }
}

@keyframes testimonialStarIn {
  0% {
    opacity: 0;
    transform: translateY(5px) scale(0.65) rotate(-8deg);
  }

  62% {
    opacity: 1;
    transform: translateY(-1px) scale(var(--star-pop, 1.14)) rotate(2deg);
  }

  100% {
    opacity: 1;
    transform: translateY(0) scale(1) rotate(0deg);
  }
}

@keyframes submitSpin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes processStepIn {
  0% {
    opacity: 0;
    transform: translateY(24px) scale(0.97);
  }

  64% {
    opacity: 1;
    transform: translateY(-3px) scale(1.01);
  }

  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes processConnectorDraw {
  0% {
    opacity: 0;
    transform: scaleX(0);
  }

  100% {
    opacity: 1;
    transform: scaleX(1);
  }
}

@keyframes processStepRing {
  0% {
    border-color: rgba(29, 95, 156, 0);
    box-shadow: 0 0 0 0 rgba(29, 95, 156, 0);
  }

  45% {
    border-color: rgba(29, 95, 156, 0.5);
    box-shadow: 0 18px 42px rgba(29, 95, 156, 0.12);
  }

  100% {
    border-color: rgba(29, 95, 156, 0);
    box-shadow: 0 0 0 0 rgba(29, 95, 156, 0);
  }
}

@keyframes processStepNumber {
  0% {
    color: rgba(29, 95, 156, 0.22);
    transform: scale(1);
  }

  48% {
    color: rgba(29, 95, 156, 0.9);
    transform: scale(1.08);
  }

  100% {
    color: rgba(29, 95, 156, 0.22);
    transform: scale(1);
  }
}

@keyframes whatsappPulse {
  0% {
    box-shadow: 0 18px 40px rgba(37, 211, 102, 0.32), 0 0 0 0 rgba(37, 211, 102, 0.3);
    transform: scale(1);
  }

  42% {
    box-shadow: 0 28px 68px rgba(37, 211, 102, 0.52), 0 0 0 22px rgba(37, 211, 102, 0);
    transform: scale(1.13);
  }

  70%,
  100% {
    box-shadow: 0 18px 40px rgba(37, 211, 102, 0.32), 0 0 0 0 rgba(37, 211, 102, 0);
    transform: scale(1);
  }
}

@media (max-width: 1080px) {
  .nav-shell {
    gap: 18px;
  }

  .brand {
    min-width: 204px;
  }

  .brand img {
    width: 218px;
  }

  .site-header.is-scrolled .brand {
    min-width: 178px;
  }

  .site-header.is-scrolled .brand img {
    width: 188px;
  }

  .nav-actions .btn--ghost {
    display: none;
  }

  .main-nav a {
    padding: 0;
  }

  .hero__content,
  .intro-grid,
  .focus-grid,
  .difference-grid,
  .testimonials-grid,
  .faq-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .hero {
    min-height: auto;
  }

  .hero__content {
    min-height: 0;
    padding: 70px 0;
  }

  .hero__slider {
    width: min(100%, 680px);
    justify-self: start;
  }

  .specialty-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .specialty-cta-card {
    grid-column: span 2;
  }

  .process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .process-grid article::before {
    display: none;
  }

  .contact-panel {
    position: static;
  }

  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  :root {
    --header-height: 76px;
  }

  .container {
    width: calc(100% - 28px);
  }

  .topline {
    display: none;
  }

  .nav-shell {
    height: 76px;
  }

  .site-header.is-scrolled .nav-shell {
    height: 64px;
    margin-top: 6px;
    margin-bottom: 6px;
    padding: 0 10px 0 12px;
    border-radius: var(--radius);
  }

  .brand img {
    width: 190px;
  }

  .site-header.is-scrolled .brand {
    min-width: auto;
  }

  .site-header.is-scrolled .brand img {
    width: 168px;
  }

  .main-nav {
    position: fixed;
    inset: 76px 14px auto;
    display: grid;
    justify-content: stretch;
    gap: 6px;
    border-radius: var(--radius);
    padding: 12px;
    background: var(--white);
    box-shadow: 0 24px 70px rgba(18, 57, 99, 0.2);
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 160ms ease, transform 160ms ease;
  }

  .site-header.is-scrolled .main-nav {
    inset: 82px 14px auto;
    border-radius: var(--radius);
    background: var(--white);
  }

  .main-nav.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .main-nav a {
    min-height: 48px;
    justify-content: center;
    border-radius: var(--radius);
    background: var(--paper);
  }

  .nav-actions .btn--primary {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .hero__content {
    padding: 52px 0 40px;
  }

  .hero h1 {
    font-size: clamp(3.1rem, 17vw, 4.8rem);
  }

  .hero p {
    font-size: 1rem;
  }

  .hero__actions .btn {
    width: 100%;
  }

  .hero__slider {
    width: 100%;
    padding: 0;
  }

  .hero__slider::after {
    display: none;
  }

  .hero__frame,
  .hero__frame img {
    min-height: 340px;
    height: 340px;
  }

  [data-hero-prev] {
    left: 18px;
  }

  [data-hero-next] {
    right: 18px;
  }

  .hero__dots {
    top: 18px;
    right: 18px;
  }

  .proof-strip {
    margin-top: 0;
  }

  .proof-strip__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border-radius: 0;
    border-left: 0;
    border-right: 0;
  }

  .section {
    padding: 72px 0;
  }

  .intro-section {
    padding-top: 72px;
  }

  .intro-visual {
    min-height: 260px;
    margin-top: 30px;
  }

  .intro-visual img {
    height: 320px;
  }

  .section-heading--center {
    text-align: left;
  }

  .section-heading h2,
  .focus-copy h2,
  .difference-copy h2,
  .catalog-card h2,
  .contact-panel h2 {
    font-size: clamp(1.75rem, 9vw, 2.45rem);
  }

  .specialty-grid,
  .process-grid,
  .difference-list,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .specialty-cta-card {
    grid-column: 1;
  }

  .product-track {
    grid-auto-columns: minmax(280px, 88%);
  }

  .product-card img {
    height: 235px;
    padding: 8px;
  }

  .testimonial-list {
    grid-auto-columns: 100%;
  }

  .testimonial-card {
    min-height: 300px;
  }

  .catalog-card {
    grid-template-columns: 1fr;
    padding: 28px;
  }

  .catalog-actions,
  .catalog-actions .btn {
    width: 100%;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    padding: 18px 0;
  }

  .footer-legal-links {
    justify-content: flex-start;
  }
}

@media (max-width: 520px) {
  .brand {
    min-width: auto;
  }

  .brand img {
    width: 172px;
  }

  .hero h1 {
    font-size: clamp(3rem, 15.5vw, 4.05rem);
  }

  .hero p,
  .section-heading,
  .section-heading h2,
  .focus-copy h2,
  .difference-copy h2,
  .catalog-card h2,
  .contact-panel h2 {
    max-width: 100%;
  }

  .section-heading h2,
  .focus-copy h2,
  .difference-copy h2,
  .catalog-card h2,
  .contact-panel h2 {
    font-size: clamp(1.7rem, 8.2vw, 2.18rem);
    overflow-wrap: break-word;
    word-break: normal;
  }

  .hero__badges {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .hero__badges span {
    width: 100%;
    justify-content: center;
    font-size: 0.74rem;
  }

  .btn {
    width: 100%;
    white-space: normal;
  }

  .intro-visual {
    min-height: 250px;
    clip-path: polygon(0 0, 100% 0, 100% 91%, 84% 100%, 0 100%);
  }

  .intro-visual img {
    height: 300px;
  }

  .product-track {
    grid-auto-columns: 100%;
  }

  .product-card {
    min-height: 430px;
  }

  .product-card img {
    height: 220px;
    padding: 8px;
  }

  .intro-visual figcaption {
    left: 12px;
    right: 12px;
    bottom: 12px;
    max-width: none;
    padding: 13px 14px;
  }

  .testimonial-carousel {
    padding: 0;
  }

  .testimonial-toolbar {
    align-items: flex-start;
  }

  .testimonial-card {
    min-height: 330px;
    padding: 22px;
  }

  .testimonial-list p {
    font-size: 0.92rem;
  }

  .hero__frame,
  .hero__frame img {
    min-height: 300px;
    height: 300px;
  }

  .hero__frame-caption {
    left: 10px;
    right: 10px;
    bottom: 10px;
    padding: 12px;
  }

  .hero__frame-title {
    grid-template-columns: 36px minmax(0, 1fr);
  }

  .hero__frame-caption .hero__frame-icon {
    width: 36px;
    height: 36px;
    flex-basis: 36px;
  }

  .hero__frame-caption > span {
    padding-left: 0;
  }

  .proof-strip__grid {
    grid-template-columns: 1fr;
  }

  .proof-strip__grid div {
    min-height: 86px;
  }

  .specialty-card {
    min-height: auto;
  }

  .specialty-cta-card {
    min-height: auto;
    padding: 24px;
  }

  .specialty-cta-card .btn {
    width: 100%;
  }

  .contact-form {
    padding: 18px;
  }

  .floating-whatsapp {
    right: 16px;
    bottom: 16px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }

  .reveal-item {
    opacity: 1;
    transform: none;
  }
}
