
:root {
  /* Marca */
  --blue-deep: #1f54a6;
  --blue-bright: #2f72d6;
  --blue-soft: #8aa7d6;
  --yellow: #f4cf18;
  --yellow-bright: #ffdf3d;

  /* Fondos oscuros premium */
  --ink-900: #070d1a;
  --ink-850: #0a1322;
  --ink-800: #0c1a30;
  --ink-700: #102745;
  --ink-600: #16315a;

  /* Claros */
  --paper: #f4f6fb;
  --paper-2: #e9eef7;
  --white: #ffffff;

  /* Texto */
  --text-dark: #15223c;
  --text-mut: #586b88;
  --text-light: #e9f0fb;
  --text-light-mut: #9db1d4;

  /* Bordes y superficies */
  --line-light: #e1e8f3;
  --line-dark: rgba(138, 167, 214, 0.16);
  --surface-dark: rgba(255, 255, 255, 0.035);
  --surface-dark-2: rgba(255, 255, 255, 0.06);

  /* Acentos funcionales */
  --wa: #25d366;
  --wa-dark: #1da851;

  /* Tipografías */
  --font-display: 'Segoe UI', 'Trebuchet MS', sans-serif;
  --font-body: 'Segoe UI', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: 'Consolas', 'Liberation Mono', monospace;

  /* Radios */
  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 22px;
  --r-xl: 30px;
  --r-pill: 999px;

  /* Sombras */
  --sh-sm: 0 2px 8px rgba(8, 16, 31, 0.08);
  --sh-md: 0 14px 40px rgba(8, 16, 31, 0.12);
  --sh-lg: 0 30px 70px rgba(8, 16, 31, 0.18);
  --sh-dark: 0 30px 80px rgba(0, 0, 0, 0.45);
  --glow-blue: 0 20px 60px rgba(47, 114, 214, 0.35);
  --glow-yellow: 0 0 0 1px rgba(244, 207, 24, 0.35), 0 16px 44px rgba(244, 207, 24, 0.22);

  /* Transiciones */
  --t-fast: 0.18s ease;
  --t: 0.3s cubic-bezier(0.22, 0.61, 0.36, 1);
  --t-slow: 0.6s cubic-bezier(0.22, 0.61, 0.36, 1);

  /* Layout */
  --container: 1200px;
  --gutter: clamp(20px, 5vw, 40px);
  --nav-h: 76px;
}

/* -------------------------------------------------------------------
   2. Reset y base
   ------------------------------------------------------------------- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-h) + 16px);
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
}

/* Salto al contenido (accesibilidad / navegación por teclado) */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 8px;
  z-index: 2000;
  padding: 12px 18px;
  border-radius: var(--r-md);
  background: var(--yellow);
  color: var(--ink-900);
  font-family: var(--font-display);
  font-weight: 600;
  text-decoration: none;
}

.skip-link:focus {
  left: 8px;
}

body {
  font-family: var(--font-body);
  background: var(--ink-900);
  color: var(--text-dark);
  font-size: 17px;
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

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

ul {
  list-style: none;
}

button {
  font-family: inherit;
  border: none;
  background: none;
  cursor: pointer;
}

input,
textarea {
  font-family: inherit;
  font-size: 16px;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

::selection {
  background: var(--yellow);
  color: var(--ink-900);
}

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

/* -------------------------------------------------------------------
   3. layout
   ------------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section {
  position: relative;
  padding-block: clamp(70px, 10vw, 120px);
}

.section--light {
  background: var(--paper);
  color: var(--text-dark);
}

.section--paper2 {
  background: var(--paper-2);
  color: var(--text-dark);
}

.section--dark {
  background: var(--ink-900);
  color: var(--text-light);
}

.section--ink {
  background: linear-gradient(180deg, var(--ink-850), var(--ink-900));
  color: var(--text-light);
}

.section--buy {
  position: relative;
  background:
    linear-gradient(90deg, rgba(138, 167, 214, 0.06) 1px, transparent 1px),
    linear-gradient(180deg, rgba(138, 167, 214, 0.05) 1px, transparent 1px),
    linear-gradient(160deg, var(--ink-800), var(--ink-900));
  background-size: 38px 38px, 38px 38px, auto;
  color: var(--text-light);
  overflow: hidden;
}

.section--buy::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(47, 114, 214, 0.16), transparent 42%, rgba(244, 207, 24, 0.08));
  opacity: 0.72;
  pointer-events: none;
}

.section--buy > .container {
  position: relative;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--blue-bright);
}

.section--dark .eyebrow,
.section--ink .eyebrow,
.section--buy .eyebrow {
  color: var(--yellow);
}

.eyebrow::before {
  content: "";
  width: 30px;
  height: 2px;
  background: currentColor;
}

.section-head {
  max-width: 720px;
  margin-bottom: clamp(40px, 6vw, 60px);
}

.section-head.center {
  margin-inline: auto;
  text-align: center;
}

.section-head.center .eyebrow {
  justify-content: center;
}

.section-title {
  font-size: clamp(2rem, 4.2vw, 3rem);
}

.section-sub {
  margin-top: 18px;
  max-width: 640px;
  font-size: clamp(1rem, 1.5vw, 1.16rem);
  color: var(--text-mut);
}

.section--dark .section-sub,
.section--ink .section-sub,
.section--buy .section-sub {
  color: var(--text-light-mut);
}

.section-head.center .section-sub {
  margin-inline: auto;
}

/* -------------------------------------------------------------------
   4. Botones
   ------------------------------------------------------------------- */
.btn {
  --bg: var(--blue-deep);
  --fg: #ffffff;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 28px;
  border-radius: var(--r-pill);
  font-family: var(--font-display);
  font-size: 0.98rem;
  font-weight: 600;
  color: var(--fg);
  background: var(--bg);
  overflow: hidden;
  transition: transform var(--t), box-shadow var(--t), background var(--t), border-color var(--t), color var(--t);
}

.btn svg {
  width: 19px;
  height: 19px;
  flex-shrink: 0;
}

.btn:hover {
  transform: translateY(-3px);
}

.btn:active {
  transform: translateY(-1px);
}

.btn--primary {
  --bg: var(--yellow);
  --fg: var(--ink-900);
}

.btn--wa {
  --bg: linear-gradient(135deg, var(--wa), var(--wa-dark));
  --fg: #ffffff;
}

.btn--blue {
  --bg: linear-gradient(135deg, var(--blue-bright), var(--blue-deep));
  --fg: #ffffff;
}

.btn--light-ghost {
  --bg: transparent;
  --fg: var(--text-light);
  border: 1.5px solid rgba(255, 255, 255, 0.28);
}

.btn--light-ghost::after {
  display: none;
}

.btn--light-ghost:hover {
  border-color: var(--yellow);
  color: var(--yellow);
}

.btn--dark-ghost {
  --bg: transparent;
  --fg: var(--text-dark);
  border: 1.5px solid var(--line-light);
}

.btn--dark-ghost::after {
  display: none;
}

.btn--dark-ghost:hover {
  border-color: var(--blue-deep);
  color: var(--blue-deep);
}

.btn--lg {
  padding: 18px 36px;
  font-size: 1.05rem;
}

.btn--sm {
  padding: 11px 20px;
  font-size: 0.9rem;
}

.btn--block {
  width: 100%;
}

/* -------------------------------------------------------------------
   5. Navbar
   ------------------------------------------------------------------- */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: background var(--t), box-shadow var(--t), height var(--t), backdrop-filter var(--t);
}

.nav__inner {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav__logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  z-index: 2;
}

.nav__logo img {
  height: 38px;
  width: auto;
  transition: height var(--t);
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}

.nav__link {
  position: relative;
  padding: 10px 16px;
  font-size: 0.96rem;
  font-weight: 500;
  color: var(--text-light);
  border-radius: var(--r-pill);
  transition: color var(--t);
}

.nav__link::after {
  content: "";
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 4px;
  height: 2px;
  background: var(--yellow);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--t);
}

.nav__link:hover {
  color: var(--yellow);
}

.nav__link:hover::after {
  transform: scaleX(1);
}

.nav__actions {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-left: 16px;
}

.nav__cta {
  padding: 12px 22px;
  font-size: 0.92rem;
}

.nav.scrolled {
  height: 64px;
  background: rgba(8, 16, 31, 0.82);
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  box-shadow: 0 1px 0 var(--line-dark), 0 12px 40px rgba(0, 0, 0, 0.35);
}

.nav.scrolled .nav__logo img {
  height: 32px;
}

/* Menú mobile oculto en desktop */
.nav__menu {
  display: none;
}

/* Hamburguesa */
.nav__toggle {
  display: none;
  width: 46px;
  height: 46px;
  border-radius: 12px;
  position: relative;
  z-index: 2;
  background: transparent;
  border: none;
}

.nav__toggle span,
.nav__toggle span::before,
.nav__toggle span::after {
  content: "";
  position: absolute;
  left: 50%;
  width: 22px;
  height: 2px;
  background: var(--text-light);
  border-radius: 2px;
  transform: translateX(-50%);
  transition: transform var(--t), opacity var(--t), top var(--t);
}

.nav__toggle span {
  top: 50%;
  transform: translate(-50%, -50%);
}

.nav__toggle span::before {
  top: -7px;
}

.nav__toggle span::after {
  top: 7px;
}

.nav__toggle.open span {
  background: transparent;
}

.nav__toggle.open span::before {
  top: 0;
  transform: translateX(-50%) rotate(45deg);
}

.nav__toggle.open span::after {
  top: 0;
  transform: translateX(-50%) rotate(-45deg);
}

/* -------------------------------------------------------------------
   6. Hero
   ------------------------------------------------------------------- */
.hero {
  position: relative;
  padding-top: calc(var(--nav-h) + clamp(44px, 7vw, 86px));
  padding-bottom: clamp(64px, 9vw, 120px);
  background:
    radial-gradient(62% 58% at 80% 18%, rgba(47, 114, 214, 0.22), transparent 62%),
    radial-gradient(46% 46% at 8% 4%, rgba(47, 114, 214, 0.08), transparent 60%),
    linear-gradient(165deg, #0c1c34 0%, #070d1a 56%, #0a1424 100%);
  color: var(--text-light);
  overflow: hidden;
  isolation: isolate;
}

.hero__grid {
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(rgba(138, 167, 214, 0.042) 1px, transparent 1px),
    linear-gradient(90deg, rgba(138, 167, 214, 0.042) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(135% 120% at 78% 8%, #000 6%, transparent 72%);
  -webkit-mask-image: radial-gradient(135% 120% at 78% 8%, #000 6%, transparent 72%);
}

.hero__bars {
  position: absolute;
  top: 0;
  right: -4%;
  width: 62%;
  height: 100%;
  z-index: -1;
  pointer-events: none;
}

.hero__bars span {
  position: absolute;
  right: 0;
  height: 3px;
  border-radius: 3px;
  transform: skewX(-22deg);
}

.hero__bars span:nth-child(1) {
  top: 60%;
  width: 72%;
  background: linear-gradient(90deg, transparent, rgba(47, 114, 214, 0.55) 78%, transparent);
}

.hero__bars span:nth-child(2) {
  top: 68%;
  width: 56%;
  background: linear-gradient(90deg, transparent, rgba(138, 167, 214, 0.45) 78%, transparent);
}

.hero__bars span:nth-child(3) {
  top: 76%;
  width: 42%;
  background: linear-gradient(90deg, transparent, rgba(244, 207, 24, 0.7) 82%, transparent);
  box-shadow: 0 0 16px rgba(244, 207, 24, 0.22);
}

.hero__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: clamp(40px, 6vw, 76px);
}

.hero h1 {
  font-size: clamp(2.4rem, 5vw, 4.1rem);
  letter-spacing: -0.03em;
}

.hero h1 .hl {
  color: var(--yellow);
}

.hero__sub {
  margin-top: 22px;
  max-width: 540px;
  font-size: clamp(1.05rem, 1.6vw, 1.24rem);
  color: var(--text-light-mut);
}

.hero__cta {
  margin-top: 34px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.hero__badges {
  margin-top: 38px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 9px 16px;
  border-radius: var(--r-pill);
  background: var(--surface-dark);
  border: 1px solid var(--line-dark);
  font-size: 0.86rem;
  font-weight: 500;
  color: var(--text-light);
}

.hero__badge svg {
  width: 16px;
  height: 16px;
  color: var(--yellow);
}

/* Visual del hero */
.hero__visual {
  position: relative;
  width: 100%;
}

.hero__card {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  border: 1px solid rgba(138, 167, 214, 0.22);
  box-shadow: var(--sh-dark), var(--glow-blue);
}

.hero__card img {
  width: 100%;
  height: 100%;
  aspect-ratio: 4 / 3.4;
  object-fit: cover;
  display: block;
}

.hero__card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(7, 13, 26, 0.55) 100%);
  pointer-events: none;
}

.hero__chip {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 15px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-900);
  background: var(--yellow);
  border-radius: var(--r-pill);
  box-shadow: 0 10px 26px rgba(244, 207, 24, 0.32);
}

.hero__chip svg {
  width: 15px;
  height: 15px;
}

.hero__spec {
  position: absolute;
  right: 18px;
  bottom: 18px;
  z-index: 2;
  padding: 10px 16px;
  border-radius: var(--r-md);
  background: rgba(10, 19, 34, 0.72);
  border: 1px solid var(--line-dark);
  backdrop-filter: blur(8px);
}

.hero__spec b {
  display: block;
  font-family: var(--font-display);
  font-size: 1rem;
  color: #ffffff;
}

.hero__spec span {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-light-mut);
}

/* estadística flotante */
.hero__stat {
  position: absolute;
  top: -18px;
  right: 20px;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 11px 18px;
  border-radius: var(--r-pill);
  background: rgba(10, 19, 34, 0.82);
  border: 1px solid var(--line-dark);
  backdrop-filter: blur(8px);
  box-shadow: var(--sh-dark);
}

.hero__stat b {
  font-family: var(--font-display);
  font-size: 1.3rem;
  line-height: 1;
  color: var(--yellow);
}

.hero__stat span {
  font-size: 0.74rem;
  line-height: 1.15;
  color: var(--text-light-mut);
}


/* -------------------------------------------------------------------
   7. Franja de confianza
   ------------------------------------------------------------------- */
.trust {
  background: var(--ink-850);
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}

.trust__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.trust__item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 26px clamp(16px, 2vw, 28px);
  border-left: 1px solid var(--line-dark);
}

.trust__item:first-child {
  border-left: none;
}

.trust__ic {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  background: var(--surface-dark-2);
  color: var(--yellow);
}

.trust__ic svg {
  width: 22px;
  height: 22px;
}

.trust__t {
  font-family: var(--font-display);
  font-size: 0.98rem;
  font-weight: 600;
  color: #ffffff;
}

.trust__s {
  font-size: 0.82rem;
  color: var(--text-light-mut);
}

/* -------------------------------------------------------------------
   7a. Nuestra misión
   ------------------------------------------------------------------- */
.mision {
  display: grid;
  grid-template-columns: minmax(0, 1.22fr) minmax(360px, 0.78fr);
  align-items: center;
  gap: clamp(34px, 5vw, 66px);
  position: relative;
}

.mision::before {
  content: "";
  position: absolute;
  inset: -32px max(-32px, -2vw);
  z-index: 0;
  border-radius: var(--r-xl);
  background:
    linear-gradient(90deg, rgba(31, 84, 166, 0.08) 1px, transparent 1px),
    linear-gradient(180deg, rgba(31, 84, 166, 0.06) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: radial-gradient(circle at 28% 48%, #000 0 46%, transparent 74%);
  pointer-events: none;
}

.mision > * {
  position: relative;
  z-index: 1;
}

.mision__media {
  display: grid;
  grid-template-columns: 0.96fr 1.04fr;
  gap: clamp(14px, 2.2vw, 24px);
  align-items: end;
  position: relative;
  isolation: isolate;
  padding: clamp(8px, 1.2vw, 14px);
}

.mision__media::before {
  content: "";
  position: absolute;
  inset: 9% 5% 6% 12%;
  z-index: -1;
  border: 1px solid rgba(47, 114, 214, 0.16);
  border-radius: calc(var(--r-xl) + 8px);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.62), rgba(233, 238, 247, 0.18));
  box-shadow: 0 22px 70px rgba(8, 16, 31, 0.08);
}

.mision__img {
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 18px;
  overflow: hidden;
  background: var(--white);
  box-shadow: 0 18px 48px rgba(8, 16, 31, 0.14);
}

.mision__img picture {
  display: block;
  height: 100%;
}

.mision__img img {
  width: 100%;
  height: 100%;
  aspect-ratio: 4 / 5.08;
  object-fit: cover;
  display: block;
}

.mision__img--a {
  min-height: 360px;
}

.mision__img--b {
  min-height: 342px;
  margin-bottom: clamp(24px, 3vw, 38px);
}

.mision__plate {
  position: absolute;
  left: clamp(18px, 3vw, 34px);
  bottom: clamp(4px, 1vw, 12px);
  display: grid;
  gap: 3px;
  min-width: 164px;
  padding: 15px 17px;
  border: 1px solid rgba(138, 167, 214, 0.32);
  border-left: 4px solid var(--blue-bright);
  border-radius: 14px;
  background: #081327;
  box-shadow: 0 18px 42px rgba(7, 13, 26, 0.24);
}

.mision__plate span {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-light-mut);
}

.mision__plate strong {
  font-family: var(--font-display);
  font-size: 1.16rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  letter-spacing: 0;
}

.mision__copy {
  max-width: 560px;
}

.mision__copy .eyebrow {
  margin-bottom: 14px;
}

.mision__copy .section-title {
  margin-bottom: 20px;
  max-width: 12ch;
}

.mision__lead {
  position: relative;
  padding-left: 22px;
  font-size: clamp(1.08rem, 1.55vw, 1.22rem);
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.58;
  margin-bottom: 18px;
}

.mision__lead::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.42em;
  width: 3px;
  height: calc(100% - 0.8em);
  border-radius: var(--r-pill);
  background: linear-gradient(180deg, var(--blue-bright), var(--blue-deep));
}

.mision__copy p:not(.mision__lead) {
  color: var(--text-mut);
  font-size: 1rem;
  line-height: 1.7;
}

.mision__points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.mision__points span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 12px;
  border: 1px solid rgba(31, 84, 166, 0.13);
  border-radius: var(--r-pill);
  background: rgba(255, 255, 255, 0.62);
  color: var(--ink-700);
  font-family: var(--font-display);
  font-size: 0.86rem;
  font-weight: 600;
  box-shadow: 0 10px 28px rgba(8, 16, 31, 0.05);
}

/* -------------------------------------------------------------------
   7b. Depósito / escala
   ------------------------------------------------------------------- */
.scale__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(36px, 6vw, 72px);
  align-items: center;
}

.scale__media {
  border-radius: var(--r-xl);
  overflow: hidden;
  border: 1px solid var(--line-dark);
  box-shadow: var(--sh-dark);
}

.scale__media img {
  width: 100%;
  height: auto;
  display: block;
}

.scale__copy .section-sub {
  margin-bottom: 30px;
}

/* -------------------------------------------------------------------
   8. Sobre nosotros
   ------------------------------------------------------------------- */
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 76px);
  align-items: center;
}

.about__copy p {
  margin-top: 18px;
  font-size: 1.05rem;
  color: var(--text-mut);
}

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

.pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 10px 18px;
  border-radius: var(--r-pill);
  background: var(--white);
  border: 1px solid var(--line-light);
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text-dark);
  box-shadow: var(--sh-sm);
}

.pill svg {
  width: 17px;
  height: 17px;
  color: var(--blue-deep);
}

.about__lead {
  margin-top: 18px;
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--text-dark);
  line-height: 1.5;
}

.about__stats {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(28px, 5vw, 56px);
  margin-top: 34px;
  padding-top: 30px;
  border-top: 1px solid var(--line-light);
}

.about__stat .n {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3vw, 2.5rem);
  font-weight: 700;
  line-height: 1;
  color: var(--blue-deep);
}

.about__stat .l {
  display: block;
  margin-top: 7px;
  font-size: 0.92rem;
  color: var(--text-mut);
}

.about__panel {
  position: relative;
  border-radius: var(--r-lg);
  padding: clamp(30px, 4vw, 46px);
  background: linear-gradient(160deg, var(--ink-700), var(--ink-900));
  color: var(--text-light);
  box-shadow: var(--sh-lg);
  overflow: hidden;
}

.about__panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(138, 167, 214, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(138, 167, 214, 0.06) 1px, transparent 1px);
  background-size: 30px 30px;
  mask-image: linear-gradient(160deg, #000, transparent 92%);
  -webkit-mask-image: linear-gradient(160deg, #000, transparent 92%);
}

.about__panel-mark {
  position: relative;
  width: 58px;
  height: auto;
  max-height: 58px;
  object-fit: contain;
  margin-bottom: 24px;
}

.values {
  position: relative;
  display: grid;
  gap: 2px;
}

.value {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line-dark);
}

.value:last-child {
  border-bottom: none;
}

.value__num {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: var(--yellow);
  padding-top: 3px;
}

.value h4 {
  font-size: 1.14rem;
  margin-bottom: 4px;
}

.value p {
  font-size: 0.95rem;
  color: var(--text-light-mut);
}

/* -------------------------------------------------------------------
   9. Productos destacados (categorías)
   ------------------------------------------------------------------- */
.cats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.cat {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 34px 30px 30px;
  border-radius: var(--r-lg);
  background: var(--white);
  border: 1px solid var(--line-light);
  box-shadow: var(--sh-sm);
  overflow: hidden;
  transition: transform var(--t), box-shadow var(--t), border-color var(--t);
}

.cat::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--blue-deep), var(--blue-bright));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--t);
}

.cat:nth-child(3)::before {
  background: linear-gradient(90deg, var(--yellow), var(--yellow-bright));
}

.cat:hover {
  transform: translateY(-8px);
  box-shadow: var(--sh-md);
  border-color: transparent;
}

.cat:hover::before {
  transform: scaleX(1);
}

.cat__icon {
  width: 58px;
  height: 58px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  margin-bottom: 22px;
  background: linear-gradient(160deg, var(--blue-deep), var(--blue-bright));
  color: #ffffff;
  box-shadow: var(--glow-blue);
}

.cat:nth-child(3) .cat__icon {
  background: linear-gradient(160deg, #1a2440, #2a3a63);
  color: var(--yellow);
}

.cat__icon svg {
  width: 28px;
  height: 28px;
}

.cat h3 {
  font-size: 1.4rem;
  margin-bottom: 10px;
}

.cat p {
  flex-grow: 1;
  font-size: 0.98rem;
  color: var(--text-mut);
}

.cat__link {
  margin-top: 22px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 0.96rem;
  font-weight: 600;
  color: var(--blue-deep);
  transition: gap var(--t);
}

.cat__link svg {
  width: 18px;
  height: 18px;
  transition: transform var(--t);
}

.cat:hover .cat__link {
  gap: 12px;
}

.cat:hover .cat__link svg {
  transform: translateX(3px);
}

/* -------------------------------------------------------------------
   9a. Como comprar
   ------------------------------------------------------------------- */
.buy {
  display: grid;
  gap: clamp(26px, 4vw, 42px);
}

.buy__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.buy__step {
  min-height: 100%;
  padding: clamp(20px, 2.4vw, 26px);
  border: 1px solid var(--line-light);
  border-radius: var(--r-lg);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(244, 246, 251, 0.72));
  box-shadow: var(--sh-sm);
}

.section--buy .buy__step {
  border-color: rgba(138, 167, 214, 0.18);
  background: rgba(255, 255, 255, 0.055);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.22);
}

.buy__step span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  margin-bottom: 18px;
  border-radius: var(--r-pill);
  background: var(--ink-800);
  color: var(--white);
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 600;
}

.section--buy .buy__step span {
  background: var(--yellow);
  color: var(--ink-900);
}

.buy__step h3 {
  margin-bottom: 8px;
  color: var(--text-dark);
  font-family: var(--font-display);
  font-size: 1.02rem;
  line-height: 1.25;
}

.section--buy .buy__step h3 {
  color: var(--white);
}

.buy__step p {
  color: var(--text-mut);
  font-size: 0.94rem;
  line-height: 1.62;
}

.section--buy .buy__step p {
  color: var(--text-light-mut);
}

.buy__cta {
  display: flex;
  justify-content: center;
}

/* -------------------------------------------------------------------
   10. Líneas de aluminio
   ------------------------------------------------------------------- */
.lines {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.line-card {
  position: relative;
  display: flex;
  flex-direction: column;
  border-radius: var(--r-lg);
  background: var(--surface-dark);
  border: 1px solid var(--line-dark);
  overflow: hidden;
  transition: transform var(--t), border-color var(--t), box-shadow var(--t);
}

.line-card:hover {
  transform: translateY(-8px);
  border-color: rgba(244, 207, 24, 0.4);
  box-shadow: var(--sh-dark);
}

.line-card__media {
  position: relative;
  aspect-ratio: 1 / 1;
  display: grid;
  place-items: center;
  background: radial-gradient(circle at 50% 35%, #ffffff, #e9eef6);
  overflow: hidden;
}

.line-card__media img {
  width: 88%;
  height: 88%;
  object-fit: contain;
  transition: transform var(--t-slow);
}

.line-card:hover .line-card__media img {
  transform: scale(1.06);
}

.line-card__tag {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 5px 12px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-900);
  background: var(--yellow);
  border-radius: var(--r-pill);
}

.line-card__body {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  padding: 22px 22px 24px;
}

.line-card__body h3 {
  font-size: 1.32rem;
  color: #ffffff;
}

.line-card__body p {
  margin-top: 8px;
  margin-bottom: 18px;
  font-size: 0.92rem;
  color: var(--text-light-mut);
  flex-grow: 1;
}

.line-card__actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.line-card__wa {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 16px;
  border-radius: var(--r-pill);
  background: linear-gradient(135deg, var(--wa), var(--wa-dark));
  color: #ffffff;
  font-family: var(--font-display);
  font-size: 0.88rem;
  font-weight: 600;
  transition: transform var(--t), box-shadow var(--t);
}

.line-card__wa svg {
  width: 16px;
  height: 16px;
}

.line-card__wa:hover {
  transform: translateY(-2px);
}

.line-card__pdf {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 16px;
  border-radius: var(--r-pill);
  border: 1.5px solid var(--line-dark);
  color: var(--text-light);
  font-family: var(--font-display);
  font-size: 0.86rem;
  font-weight: 600;
  transition: border-color var(--t), color var(--t);
}

.line-card__pdf svg {
  width: 16px;
  height: 16px;
}

.line-card__pdf:hover {
  border-color: var(--yellow);
  color: var(--yellow);
}

/* -------------------------------------------------------------------
   11. Accesorios (panel oscuro con foto)
   ------------------------------------------------------------------- */
.acc {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: stretch;
  min-height: 440px;
  border-radius: var(--r-xl);
  overflow: hidden;
  background: #000000;
  box-shadow: var(--sh-dark);
}

.acc__media {
  position: relative;
  overflow: hidden;
}

.acc__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--t-slow);
}

.acc:hover .acc__media img {
  transform: scale(1.05);
}

.acc__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 50%, rgba(7, 13, 26, 0.95) 100%);
}

.acc__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(34px, 4.5vw, 58px);
  background: linear-gradient(160deg, var(--ink-700), var(--ink-900));
}

.acc__body h2 {
  font-size: clamp(1.8rem, 3.2vw, 2.5rem);
  color: #ffffff;
}

.acc__body p {
  margin-top: 18px;
  font-size: 1.04rem;
  color: var(--text-light-mut);
}

.badge-line {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: max-content;
  margin-bottom: 22px;
  padding: 8px 16px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: var(--r-pill);
}

.badge-line svg {
  width: 16px;
  height: 16px;
}

.badge-line--yellow {
  color: var(--yellow);
  background: rgba(244, 207, 24, 0.1);
  border: 1px solid rgba(244, 207, 24, 0.3);
}

.badge-line--blue {
  color: var(--blue-deep);
  background: rgba(31, 84, 166, 0.08);
  border: 1px solid rgba(31, 84, 166, 0.22);
}

.acc__list {
  margin-top: 24px;
  display: grid;
  gap: 12px;
}

.acc__list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.98rem;
  color: var(--text-light);
}

.acc__list svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--yellow);
}

.acc__cta {
  margin-top: 30px;
}

/* -------------------------------------------------------------------
   11b. Accesorios: representantes + galería
   ------------------------------------------------------------------- */
.acc__reps {
  margin-top: 16px;
  padding: 12px 16px;
  border-left: 3px solid var(--yellow);
  border-radius: 0 var(--r-sm) var(--r-sm) 0;
  background: rgba(244, 207, 24, 0.08);
  font-size: 1rem;
  color: var(--text-light);
}

.acc__reps strong {
  color: var(--yellow);
}

.agal-wrap {
  margin-top: clamp(40px, 6vw, 64px);
}

.agal-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: clamp(28px, 4vw, 40px);
}

.agal-filter {
  padding: 9px 18px;
  border-radius: var(--r-pill);
  border: 1px solid var(--line-dark);
  background: var(--surface-dark);
  color: var(--text-light);
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: background var(--t), color var(--t), border-color var(--t);
}

.agal-filter:hover {
  border-color: rgba(244, 207, 24, 0.45);
  color: var(--yellow);
}

.agal-filter.is-active {
  background: var(--yellow);
  border-color: var(--yellow);
  color: var(--ink-900);
}

.agal {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(18px, 2.4vw, 28px);
}

.agal__card {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 0;
  font: inherit;
  text-align: center;
  cursor: pointer;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--surface-dark);
  border: 1px solid var(--line-dark);
  box-shadow: var(--sh-sm);
  transition: transform var(--t), border-color var(--t), box-shadow var(--t);
}

.agal__card:hover {
  transform: translateY(-6px);
  border-color: rgba(244, 207, 24, 0.5);
  box-shadow: var(--sh-dark);
}

.agal__media {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: radial-gradient(circle at 50% 38%, #ffffff, #e7ecf5);
}

.agal__media img {
  width: 100%;
  height: 100%;
  padding: 18px;
  object-fit: contain;
  transition: transform var(--t-slow);
}

.agal__card:hover .agal__media img {
  transform: scale(1.05);
}

.agal__name {
  padding: 16px 14px;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: #ffffff;
}

.agal-more {
  margin-top: clamp(26px, 4vw, 38px);
  display: flex;
  justify-content: center;
}

.agal-more[hidden] {
  display: none;
}

/* Modal de accesorio */
.amodal[hidden] {
  display: none;
}

.amodal {
  position: fixed;
  inset: 0;
  z-index: 1100;
  display: grid;
  place-items: center;
  padding: var(--gutter);
}

.amodal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(7, 13, 26, 0.8);
  backdrop-filter: blur(4px);
}

.amodal__dialog {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 460px;
  padding: 26px;
  text-align: center;
  border-radius: var(--r-lg);
  background: linear-gradient(160deg, var(--ink-700), var(--ink-900));
  border: 1px solid var(--line-dark);
  box-shadow: var(--sh-dark);
  animation: amodalIn 0.28s cubic-bezier(0.22, 0.61, 0.36, 1);
}

@keyframes amodalIn {
  from {
    opacity: 0;
    transform: translateY(14px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.amodal__close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  cursor: pointer;
  color: #ffffff;
  background: var(--surface-dark-2);
  border: 1px solid var(--line-dark);
  transition: background var(--t), border-color var(--t), color var(--t);
}

.amodal__close:hover {
  border-color: var(--yellow);
  color: var(--yellow);
}

.amodal__close svg {
  width: 20px;
  height: 20px;
}

.amodal__img {
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 16px;
  border-radius: var(--r-md);
  background: radial-gradient(circle at 50% 38%, #ffffff, #e7ecf5);
}

.amodal__img img {
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 65vh;
  object-fit: contain;
}

.amodal__name {
  margin: 18px 0 20px;
  font-size: 1.35rem;
  color: #ffffff;
}

/* -------------------------------------------------------------------
   12. Punzonadoras OK
   ------------------------------------------------------------------- */
.punz__grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(36px, 6vw, 72px);
  align-items: center;
}

.punz__media {
  position: relative;
  padding: 30px;
  border-radius: var(--r-xl);
  background: radial-gradient(circle at 50% 30%, #ffffff, #e6ebf4);
  border: 1px solid var(--line-light);
  box-shadow: var(--sh-md);
}

.punz__media::before {
  content: "";
  position: absolute;
  inset: 16px;
  border: 1px dashed var(--line-light);
  border-radius: var(--r-lg);
  pointer-events: none;
}

.punz__media img {
  margin-inline: auto;
  max-height: 440px;
  width: auto;
  filter: drop-shadow(0 24px 40px rgba(8, 16, 31, 0.2));
}

.punz__ribbon {
  position: absolute;
  top: 22px;
  right: 22px;
  z-index: 2;
  padding: 8px 16px;
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #ffffff;
  background: linear-gradient(135deg, var(--blue-deep), var(--blue-bright));
  border-radius: var(--r-pill);
  box-shadow: var(--glow-blue);
}

.punz__feats {
  margin-top: 28px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.punz__feat {
  padding: 18px 20px;
  border-radius: var(--r-md);
  background: var(--white);
  border: 1px solid var(--line-light);
  box-shadow: var(--sh-sm);
}

.punz__feat h4 {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 4px;
  font-size: 1.02rem;
}

.punz__feat h4 svg {
  width: 19px;
  height: 19px;
  color: var(--blue-deep);
}

.punz__feat p {
  font-size: 0.9rem;
  color: var(--text-mut);
}

.punz__cta {
  margin-top: 30px;
}

/* -------------------------------------------------------------------
   13. Pintura
   ------------------------------------------------------------------- */
.paint__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
}

.paint-chip {
  display: flex;
  flex-direction: column;
  border-radius: var(--r-md);
  background: var(--white);
  border: 1px solid var(--line-light);
  box-shadow: var(--sh-sm);
  overflow: hidden;
  transition: transform var(--t), box-shadow var(--t);
}

.paint-chip:hover {
  transform: translateY(-6px);
  box-shadow: var(--sh-md);
}

.paint-chip__swatch {
  height: 84px;
  width: 100%;
}

.paint-chip__name {
  padding: 14px 14px 16px;
  font-family: var(--font-display);
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text-dark);
  text-align: center;
}

.sw-blanco {
  background: #f2f2ee;
  border-bottom: 1px solid var(--line-light);
}

.sw-negro-mate {
  background: #1c1c1c;
}

.sw-negro-micro {
  background: #161616;
  background-image: radial-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 5px 5px;
}

.sw-bronce {
  background: linear-gradient(160deg, #6b5538, #46361f);
}

.sw-gris {
  background: #3a3f46;
}

.sw-madera {
  background:
    repeating-linear-gradient(95deg, rgba(0, 0, 0, 0.06) 0 6px, transparent 6px 13px),
    linear-gradient(160deg, #b07c46, #8a5a2c);
}

.paint__note {
  margin-top: 26px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  border-radius: var(--r-pill);
  background: rgba(31, 84, 166, 0.07);
  border: 1px solid rgba(31, 84, 166, 0.18);
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--blue-deep);
}

.paint__note svg {
  width: 18px;
  height: 18px;
}

/* -------------------------------------------------------------------
   14. Envíos
   ------------------------------------------------------------------- */
.ship {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(24px, 4vw, 44px);
  align-items: center;
  padding: clamp(32px, 5vw, 56px);
  border-radius: var(--r-xl);
  background: linear-gradient(160deg, var(--ink-700), var(--ink-900));
  border: 1px solid var(--line-dark);
  color: var(--text-light);
  overflow: hidden;
}

.ship::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(138, 167, 214, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(138, 167, 214, 0.05) 1px, transparent 1px);
  background-size: 38px 38px;
  mask-image: radial-gradient(circle at 12% 0%, #000, transparent 70%);
  -webkit-mask-image: radial-gradient(circle at 12% 0%, #000, transparent 70%);
}

.ship__ic {
  position: relative;
  width: 84px;
  height: 84px;
  border-radius: 22px;
  display: grid;
  place-items: center;
  background: var(--surface-dark-2);
  border: 1px solid var(--line-dark);
  color: var(--yellow);
}

.ship__ic svg {
  width: 42px;
  height: 42px;
}

.ship__body {
  position: relative;
}

.ship__body h2 {
  font-size: clamp(1.4rem, 2.4vw, 1.9rem);
  color: #ffffff;
}

.ship__body p {
  margin-top: 12px;
  font-size: 1.04rem;
  color: var(--text-light-mut);
  max-width: 720px;
}

/* -------------------------------------------------------------------
   15. Catálogos PDF
   ------------------------------------------------------------------- */
.catalogs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.catalog {
  display: flex;
  flex-direction: column;
  padding: 28px;
  border-radius: var(--r-lg);
  background: var(--white);
  border: 1px solid var(--line-light);
  box-shadow: var(--sh-sm);
  transition: transform var(--t), box-shadow var(--t), border-color var(--t);
}

.catalog:hover {
  transform: translateY(-6px);
  box-shadow: var(--sh-md);
  border-color: rgba(31, 84, 166, 0.3);
}

.catalog__ic {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  margin-bottom: 20px;
  background: rgba(31, 84, 166, 0.1);
  color: var(--blue-deep);
}

.catalog__ic svg {
  width: 26px;
  height: 26px;
}

.catalog__tag {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue-bright);
  margin-bottom: 6px;
}

.catalog h3 {
  font-size: 1.18rem;
  color: var(--text-dark);
}

.catalog p {
  margin-top: 8px;
  margin-bottom: 20px;
  font-size: 0.92rem;
  color: var(--text-mut);
  flex-grow: 1;
}

/* -------------------------------------------------------------------
   16. FAQ (acordeón)
   ------------------------------------------------------------------- */
.faq {
  max-width: 820px;
  margin-inline: auto;
}

.faq-item {
  border: 1px solid var(--line-light);
  border-radius: var(--r-md);
  background: var(--white);
  margin-bottom: 14px;
  box-shadow: var(--sh-sm);
  overflow: hidden;
  transition: border-color var(--t);
}

.faq-item.open {
  border-color: rgba(31, 84, 166, 0.35);
}

.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 22px 24px;
  text-align: left;
  font-family: var(--font-display);
  font-size: 1.08rem;
  font-weight: 600;
  color: var(--text-dark);
}

.faq-q__ic {
  position: relative;
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.faq-q__ic::before,
.faq-q__ic::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 14px;
  height: 2px;
  background: var(--blue-deep);
  border-radius: 2px;
  transform: translate(-50%, -50%);
  transition: transform var(--t);
}

.faq-q__ic::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-item.open .faq-q__ic::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

.faq-a {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows var(--t);
}

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

.faq-a__inner {
  overflow: hidden;
}

.faq-a p {
  padding: 0 24px 24px;
  font-size: 1rem;
  color: var(--text-mut);
}

/* -------------------------------------------------------------------
   17. Contacto
   ------------------------------------------------------------------- */
.contact__grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(36px, 6vw, 70px);
  align-items: start;
}

.contact__quick {
  margin-top: 26px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.contact__methods {
  margin-top: 26px;
  display: grid;
  gap: 16px;
}

.cmethod {
  position: relative;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 22px 52px 22px 22px;
  border-radius: var(--r-md);
  background: var(--surface-dark);
  border: 1px solid var(--line-dark);
  transition: transform var(--t), border-color var(--t), background var(--t);
}

.cmethod:hover {
  transform: translateY(-3px);
  border-color: rgba(47, 114, 214, 0.45);
  background: var(--surface-dark-2);
}

.cmethod__arrow {
  position: absolute;
  top: 18px;
  right: 18px;
  color: var(--text-light-mut);
  transition: color var(--t), transform var(--t);
}

.cmethod__arrow svg {
  width: 18px;
  height: 18px;
  display: block;
}

.cmethod:hover .cmethod__arrow {
  color: var(--yellow);
  transform: translate(2px, -2px);
}

.cmethod--static {
  padding-right: 22px;
  cursor: default;
}

.cmethod--static:hover {
  transform: none;
  border-color: var(--line-dark);
  background: var(--surface-dark);
}

.cmethod__ic {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  background: var(--surface-dark-2);
  color: var(--yellow);
}

.cmethod__ic svg {
  width: 24px;
  height: 24px;
}

.cmethod > span {
  min-width: 0;
}

.cmethod__t {
  display: block;
  margin-bottom: 4px;
  font-family: var(--font-mono);
  font-size: 0.74rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-light-mut);
}

.cmethod__v {
  display: block;
  font-family: var(--font-display);
  font-size: 1.06rem;
  font-weight: 600;
  color: #ffffff;
  overflow-wrap: anywhere;
}

.form {
  position: relative;
  padding: clamp(28px, 4vw, 42px);
  border-radius: var(--r-lg);
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
  border: 1px solid var(--line-dark);
  box-shadow: var(--sh-dark);
  backdrop-filter: blur(6px);
}

.form__row {
  margin-bottom: 20px;
}

.form label {
  display: block;
  margin-bottom: 9px;
  font-family: var(--font-mono);
  font-size: 0.74rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-light-mut);
}

.form input,
.form textarea {
  width: 100%;
  padding: 15px 18px;
  border-radius: var(--r-md);
  background: rgba(7, 13, 26, 0.5);
  border: 1.5px solid var(--line-dark);
  color: #ffffff;
  transition: border-color var(--t), box-shadow var(--t), background var(--t);
}

.form input::placeholder,
.form textarea::placeholder {
  color: rgba(157, 177, 212, 0.5);
}

.form input:focus,
.form textarea:focus {
  outline: none;
  border-color: var(--yellow);
  background: rgba(7, 13, 26, 0.75);
  box-shadow: 0 0 0 4px rgba(244, 207, 24, 0.12);
}

.form textarea {
  min-height: 130px;
  resize: vertical;
}

.form input.invalid,
.form textarea.invalid {
  border-color: #ff5d5d;
  box-shadow: 0 0 0 4px rgba(255, 93, 93, 0.12);
}

.form__error {
  display: block;
  min-height: 16px;
  margin-top: 6px;
  font-size: 0.8rem;
  color: #ff8585;
}

.form__note {
  margin-top: 16px;
  font-size: 0.84rem;
  color: var(--text-light-mut);
  text-align: center;
}

.form__note a {
  color: var(--blue-soft);
  font-weight: 500;
  text-decoration: underline;
  transition: color var(--t);
}

.form__note a:hover {
  color: var(--yellow);
}

.form__feedback {
  display: none;
  margin-top: 14px;
  padding: 12px 16px;
  border-radius: var(--r-md);
  background: rgba(37, 211, 102, 0.12);
  border: 1px solid rgba(37, 211, 102, 0.4);
  color: #b9f6cf;
  font-size: 0.92rem;
  text-align: center;
}

.form__feedback.show {
  display: block;
}

/* -------------------------------------------------------------------
   18. CTA final
   ------------------------------------------------------------------- */
.finalcta {
  position: relative;
  padding: clamp(44px, 7vw, 78px);
  border-radius: var(--r-xl);
  text-align: center;
  background:
    radial-gradient(100% 120% at 50% 0%, rgba(47, 114, 214, 0.3), transparent 60%),
    linear-gradient(160deg, var(--ink-700), var(--ink-900));
  border: 1px solid var(--line-dark);
  box-shadow: var(--sh-dark);
  overflow: hidden;
}

.finalcta::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(138, 167, 214, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(138, 167, 214, 0.05) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: radial-gradient(circle at 50% 0%, #000, transparent 70%);
  -webkit-mask-image: radial-gradient(circle at 50% 0%, #000, transparent 70%);
}

.finalcta h2 {
  position: relative;
  max-width: 640px;
  margin-inline: auto;
  font-size: clamp(1.8rem, 3.6vw, 2.7rem);
  color: #ffffff;
}

.finalcta p {
  position: relative;
  max-width: 560px;
  margin: 16px auto 0;
  font-size: 1.08rem;
  color: var(--text-light-mut);
}

.finalcta__btns {
  position: relative;
  margin-top: 34px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}

/* -------------------------------------------------------------------
   19. Footer
   ------------------------------------------------------------------- */
.footer {
  padding-top: clamp(60px, 8vw, 88px);
  background: var(--ink-900);
  color: var(--text-light);
  border-top: 1px solid var(--line-dark);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: clamp(36px, 6vw, 70px);
  padding-bottom: 52px;
}

.footer__logo img {
  height: 40px;
  margin-bottom: 22px;
}

.footer__about {
  max-width: 340px;
  font-size: 0.98rem;
  color: var(--text-light-mut);
}

.footer__meta {
  margin-top: 20px;
  display: grid;
  gap: 10px;
}

.footer__meta li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.92rem;
  color: var(--text-light-mut);
}

.footer__meta svg {
  width: 17px;
  height: 17px;
  flex-shrink: 0;
  color: var(--blue-soft);
}

.footer__social {
  margin-top: 24px;
  display: flex;
  gap: 12px;
}

.footer__social a {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: var(--surface-dark);
  border: 1px solid var(--line-dark);
  color: var(--text-light);
  transition: transform var(--t), background var(--t), color var(--t), border-color var(--t);
}

.footer__social a:hover {
  transform: translateY(-4px);
  background: var(--yellow);
  border-color: var(--yellow);
  color: var(--ink-900);
}

.footer__social svg {
  width: 21px;
  height: 21px;
}

.footer__col h4 {
  margin-bottom: 20px;
  font-family: var(--font-mono);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--yellow);
}

.footer__col ul {
  display: grid;
  gap: 13px;
}

.footer__col a {
  font-size: 0.97rem;
  color: var(--text-light-mut);
  transition: color var(--t), padding-left var(--t);
}

.footer__col a:hover {
  color: #ffffff;
  padding-left: 5px;
}

/* Columna de contacto: ícono + texto */
.footer__contact {
  display: grid;
  gap: 14px;
}

.footer__contact a {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-size: 0.97rem;
  color: var(--text-light-mut);
  transition: color var(--t), padding-left var(--t);
}

.footer__contact a svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: var(--blue-soft);
  transition: color var(--t);
}

.footer__contact a:hover {
  color: #ffffff;
  padding-left: 4px;
}

.footer__contact a:hover svg {
  color: var(--yellow);
}

.footer__bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: space-between;
  align-items: center;
  padding-block: 26px;
  border-top: 1px solid var(--line-dark);
  font-size: 0.88rem;
  color: var(--text-light-mut);
}

.footer__bottom-right {
  display: flex;
  align-items: center;
  gap: 24px;
}

.ubication {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: left;
  align-items: left;
  padding-block: 26px;
  border-top: 1px solid var(--line-dark);
  font-size: 0.88rem;
  color: var(--text-light-mut);
}

.ubication a:hover {
  color: var(--yellow);
  font-weight: 500;
  transition: color var(--t);
}

.footer__bottom a {
  color: var(--blue-soft);
  font-weight: 500;
  transition: color var(--t);
}

.footer__bottom a:hover {
  color: var(--yellow);
}

/* -------------------------------------------------------------------
   20. Botón flotante de WhatsApp
   ------------------------------------------------------------------- */
.wa-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 900;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--wa), var(--wa-dark));
  color: #ffffff;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.3);
  transition: transform var(--t), box-shadow var(--t);
}

.wa-float svg {
  width: 32px;
  height: 32px;
}

.wa-float:hover {
  transform: scale(1.08);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.38);
}

/* -------------------------------------------------------------------
   21. Encabezado de páginas interiores
   ------------------------------------------------------------------- */
.page-hero {
  position: relative;
  padding-top: calc(var(--nav-h) + clamp(56px, 8vw, 88px));
  padding-bottom: clamp(48px, 7vw, 78px);
  background:
    radial-gradient(110% 90% at 80% 0%, rgba(47, 114, 214, 0.2), transparent 55%),
    linear-gradient(165deg, var(--ink-800), var(--ink-900));
  color: var(--text-light);
  overflow: hidden;
  isolation: isolate;
}

.page-hero__grid {
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(rgba(138, 167, 214, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(138, 167, 214, 0.05) 1px, transparent 1px);
  background-size: 50px 50px;
  mask-image: radial-gradient(circle at 75% 20%, #000, transparent 75%);
  -webkit-mask-image: radial-gradient(circle at 75% 20%, #000, transparent 75%);
}

.page-hero h1 {
  max-width: 760px;
  font-size: clamp(2.3rem, 5vw, 3.5rem);
}

.page-hero p {
  max-width: 620px;
  margin-top: 18px;
  font-size: clamp(1.02rem, 1.6vw, 1.18rem);
  color: var(--text-light-mut);
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  color: var(--text-light-mut);
}

.breadcrumb a:hover {
  color: var(--yellow);
}

.breadcrumb span {
  color: var(--yellow);
}

/* Líneas grandes en productos.html */
.pline-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
}

.pline {
  display: grid;
  grid-template-columns: 160px 1fr;
  border-radius: var(--r-lg);
  background: var(--white);
  border: 1px solid var(--line-light);
  box-shadow: var(--sh-sm);
  overflow: hidden;
  transition: transform var(--t), box-shadow var(--t);
}

.pline:hover {
  transform: translateY(-6px);
  box-shadow: var(--sh-md);
}

.pline__media {
  display: grid;
  place-items: center;
  min-width: 0;
  padding: 14px;
  background: radial-gradient(circle at 50% 40%, #ffffff, #e9eef6);
}

.pline__media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.pline__body {
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding: 26px 28px;
}

.pline__tag {
  margin-bottom: 8px;
  font-family: var(--font-mono);
  font-size: 0.74rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue-bright);
}

.pline__body h3 {
  font-size: 1.5rem;
  color: var(--text-dark);
}

.pline__body p {
  flex-grow: 1;
  margin-top: 8px;
  font-size: 0.96rem;
  color: var(--text-mut);
}

.pline__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

/* -------------------------------------------------------------------
   22. Política de privacidad
   ------------------------------------------------------------------- */
.legal {
  max-width: 820px;
  margin-inline: auto;
}

.legal__updated {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 40px;
  padding: 8px 16px;
  border-radius: var(--r-pill);
  background: rgba(31, 84, 166, 0.07);
  border: 1px solid rgba(31, 84, 166, 0.18);
  font-family: var(--font-mono);
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  color: var(--blue-deep);
}

.legal h2 {
  margin-top: 44px;
  margin-bottom: 14px;
  padding-left: 18px;
  font-size: 1.5rem;
  color: var(--text-dark);
  border-left: 4px solid var(--yellow);
}

.legal h2:first-of-type {
  margin-top: 0;
}

.legal p {
  margin-bottom: 14px;
  color: var(--text-mut);
}

.legal ul {
  display: grid;
  gap: 12px;
  margin: 8px 0 18px;
}

.legal ul li {
  position: relative;
  padding-left: 28px;
  color: var(--text-mut);
}

.legal ul li::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 10px;
  width: 10px;
  height: 10px;
  background: var(--blue-deep);
  border-radius: 2px;
  transform: rotate(45deg);
}

.legal a {
  color: var(--blue-deep);
  font-weight: 500;
  text-decoration: underline;
}

.legal a:hover {
  color: var(--blue-bright);
}

.legal__note {
  margin-top: 44px;
  padding: 22px 24px;
  border-radius: var(--r-md);
  background: var(--paper-2);
  border: 1px solid var(--line-light);
  border-left: 4px solid var(--blue-bright);
  font-size: 0.95rem;
  color: var(--text-mut);
}

/* -------------------------------------------------------------------
   23. Animaciones de aparición
   ------------------------------------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.22, 0.61, 0.36, 1);
  transition-delay: var(--d, 0s);
  will-change: opacity, transform;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

.no-js .reveal {
  opacity: 1;
  transform: none;
}

/* -------------------------------------------------------------------
   24. Responsive
   ------------------------------------------------------------------- */
@media (max-width: 1040px) {
  .hero__inner {
    grid-template-columns: 1fr;
  }

  .hero__visual {
    order: -1;
    max-width: 520px;
    margin-inline: auto;
  }

  .hero__stat {
    display: none;
  }

  .about__grid {
    grid-template-columns: 1fr;
  }

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

  .mision {
    grid-template-columns: 1fr;
    gap: clamp(28px, 5vw, 44px);
  }

  .mision__media {
    max-width: 660px;
    margin-inline: auto;
  }

  .mision__copy {
    max-width: 680px;
    margin-inline: auto;
    text-align: left;
  }

  .mision__img--b {
    margin-bottom: clamp(18px, 3vw, 30px);
  }

  .scale__grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .scale__media {
    order: -1;
    max-width: 620px;
    width: 100%;
    margin-inline: auto;
  }

  .scale__copy {
    max-width: 680px;
    margin-inline: auto;
  }

  .trust__grid {
    grid-template-columns: 1fr 1fr;
  }

  .trust__item:nth-child(3) {
    border-left: none;
  }

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

  .punz__grid {
    grid-template-columns: 1fr;
  }

  .punz__media {
    max-width: 460px;
    margin-inline: auto;
  }

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

  .acc {
    grid-template-columns: 1fr;
  }

  .acc__media {
    min-height: 280px;
  }

  .acc__media::after {
    background: linear-gradient(180deg, transparent 40%, rgba(7, 13, 26, 0.95) 100%);
  }

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

  .catalogs {
    grid-template-columns: 1fr;
  }

  .contact__grid {
    grid-template-columns: 1fr;
  }

  .footer__grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer__brand {
    grid-column: 1 / -1;
  }

  .pline-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .nav__links,
  .nav__cta {
    display: none;
  }

  .nav__toggle {
    display: block;
    margin-left: auto;
  }

  .nav__menu {
    position: fixed;
    inset: 0;
    z-index: 1001;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 10px;
    padding: var(--gutter);
    background: var(--ink-900);
    background: linear-gradient(165deg, var(--ink-800), var(--ink-900));
    transform: translateX(100%);
    transition: transform var(--t-slow);
  }

  .nav__menu.open {
    transform: translateX(0);
  }

  .nav__back {
    position: absolute;
    top: 22px;
    left: var(--gutter);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 4px;
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-light-mut);
    transition: color var(--t), gap var(--t);
  }

  .nav__back svg {
    width: 20px;
    height: 20px;
  }

  .nav__back:hover {
    color: var(--yellow);
    gap: 12px;
  }

  .nav__menu a.nav__link {
    padding: 14px 8px;
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    border-bottom: 1px solid var(--line-dark);
    border-radius: 0;
  }

  .nav__menu a.nav__link::after {
    display: none;
  }

  .nav__menu .btn {
    margin-top: 24px;
    justify-content: center;
  }
}

@media (max-width: 760px) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .nav {
    transition: background var(--t), height var(--t);
  }

  .nav.scrolled {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .hero__card,
  .about__panel,
  .scale__media,
  .cat,
  .buy__step,
  .faq-item,
  .contact__panel,
  .pline,
  .acc,
  .punz__media {
    box-shadow: 0 12px 28px rgba(8, 16, 31, 0.16);
  }

  .scale__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .scale__media {
    border-radius: 18px;
    box-shadow: 0 16px 34px rgba(0, 0, 0, 0.28);
  }

  .scale__media img {
    width: 100%;
    aspect-ratio: 16 / 10;
    height: auto;
    object-fit: cover;
  }

  .scale__copy {
    text-align: left;
  }

  .scale__copy .section-title {
    max-width: 12ch;
  }

  .scale__copy .section-sub {
    margin-bottom: 22px;
  }

  .buy__grid {
    grid-template-columns: 1fr;
  }

  .buy__cta .btn {
    width: 100%;
    justify-content: center;
  }

  .mision::before {
    inset: -20px -12px;
    background-size: 34px 34px;
  }

  .mision__media {
    grid-template-columns: 1fr 0.92fr;
    gap: 12px;
    width: min(100%, 560px);
    padding: 6px 0 34px;
  }

  .mision__media::before {
    inset: 10% 0 12% 8%;
    border-radius: 24px;
  }

  .mision__img {
    border-radius: 14px;
  }

  .mision__img--a,
  .mision__img--b {
    min-height: 0;
  }

  .mision__img--b {
    margin-bottom: 24px;
  }

  .mision__plate {
    left: 16px;
    bottom: 0;
    min-width: 150px;
    padding: 12px 14px;
  }

  .mision__copy .section-title {
    max-width: 100%;
  }

  .mision__lead {
    padding-left: 18px;
  }

  .mision__points {
    gap: 8px;
    margin-top: 22px;
  }

  .mision__points span {
    min-height: 36px;
    font-size: 0.82rem;
  }

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

  .cats {
    grid-template-columns: 1fr;
  }

  .punz__feats {
    grid-template-columns: 1fr;
  }

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

  .ship {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .ship__ic {
    margin-inline: auto;
  }

  .footer__grid {
    grid-template-columns: 1fr;
  }

  .pline {
    grid-template-columns: 1fr;
  }

  .pline__media {
    aspect-ratio: 16 / 10;
  }

  .footer__bottom {
    flex-direction: column;
    text-align: center;
  }

  .footer__bottom-right {
    flex-direction: column;
    gap: 8px;
  }
}

@media (max-width: 560px) {
  .trust__grid {
    grid-template-columns: 1fr;
  }

  .trust__item {
    border-left: none;
    border-top: 1px solid var(--line-dark);
  }

  .trust__item:first-child {
    border-top: none;
  }
}

@media (max-width: 480px) {
  body {
    font-size: 16px;
  }

  .section {
    padding-block: clamp(58px, 14vw, 78px);
  }

  .amodal__dialog {
    max-width: 92vw;
    padding: 20px;
  }

  .amodal__img img {
    max-height: 55vh;
  }

  .scale__media img {
    aspect-ratio: 4 / 3;
  }

  .scale__copy .section-title {
    font-size: clamp(2rem, 10vw, 2.55rem);
  }

  .scale__copy .btn {
    width: 100%;
    justify-content: center;
  }

  .mision__media {
    grid-template-columns: 1fr;
    padding-bottom: 0;
  }

  .mision__media::before {
    inset: 7% -8px 4%;
  }

  .mision__img img {
    aspect-ratio: 16 / 11;
  }

  .mision__img--b {
    margin-bottom: 0;
  }

  .mision__plate {
    position: static;
    width: 100%;
    margin-top: 10px;
  }

  .mision__points {
    display: grid;
    grid-template-columns: 1fr;
  }

  .mision__points span {
    justify-content: center;
  }

  .lines {
    grid-template-columns: 1fr;
  }

  .paint__grid {
    grid-template-columns: 1fr 1fr;
  }

  .hero__cta .btn,
  .finalcta__btns .btn {
    width: 100%;
  }

  .wa-float {
    width: 56px;
    height: 56px;
    right: 16px;
    bottom: 16px;
  }

  .wa-float svg {
    width: 28px;
    height: 28px;
  }
}
