:root {
  --bg: #0a0a0f;
  --surface: #0f0f1a;
  --surface-strong: #ffffff;
  --ink: #ffffff;
  --muted: #a0a0b0;
  --line: rgba(255, 255, 255, 0.12);
  --dark: #0a0a0f;
  --dark-soft: #0f0f1a;
  --gold: #c9a84c;
  --gold-soft: #e8c97a;
  --green: #1fae68;
  --green-dark: #12834d;
  --radius: 8px;
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
  --container: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(rgba(201, 168, 76, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201, 168, 76, 0.03) 1px, transparent 1px),
    var(--bg);
  background-size: 56px 56px;
  content: "";
}

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

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

p {
  margin: 0;
  color: var(--muted);
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--ink);
  line-height: 1.04;
  letter-spacing: 0;
}

h1 {
  max-width: 800px;
  font-size: clamp(2.35rem, 4.75vw, 4.35rem);
}

h2 {
  font-size: clamp(1.85rem, 3.3vw, 3rem);
}

h3 {
  font-size: 1.18rem;
}

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

.section {
  padding: 104px 0;
}

.section-dark {
  background: var(--dark);
  color: #fff;
}

.section-dark h1,
.section-dark h2,
.section-dark h3,
.section-dark p {
  color: #fff;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  border: 1px solid rgba(201, 168, 76, 0.28);
  border-radius: 999px;
  background: rgba(201, 168, 76, 0.1);
  color: var(--gold-soft);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  margin-bottom: 18px;
  padding: 8px 12px;
  text-transform: uppercase;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 20;
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 18px 34px;
  color: #fff;
  transition: background 180ms ease, box-shadow 180ms ease, padding 180ms ease;
}

.site-header.is-scrolled,
.site-header.is-solid {
  background: rgba(10, 10, 15, 0.94);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(12px);
}

.brand {
  display: flex;
  width: min(310px, 44vw);
  align-items: center;
}

.brand img {
  width: 100%;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.94rem;
  font-weight: 700;
}

.main-nav a:hover {
  color: #fff;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.language-switcher {
  display: inline-flex;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  padding: 4px;
}

.language-switcher button {
  min-width: 34px;
  height: 30px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: rgba(255, 255, 255, 0.68);
  cursor: pointer;
  font: inherit;
  font-size: 0.76rem;
  font-weight: 900;
  transition: background 180ms ease, color 180ms ease;
}

.language-switcher button.is-active,
.language-switcher button:hover {
  background: var(--gold);
  color: #0a0a0f;
}

.btn {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: var(--radius);
  padding: 0 22px;
  font-weight: 800;
  position: relative;
  overflow: hidden;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, border-color 180ms ease;
}

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

.btn::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 0%, rgba(255, 255, 255, 0.24) 45%, transparent 70%);
  content: "";
  opacity: 0;
  transform: translateX(-100%);
  transition: transform 520ms ease, opacity 520ms ease;
}

.btn:hover::after {
  opacity: 1;
  transform: translateX(100%);
}

.btn-small {
  min-height: 40px;
  padding: 0 16px;
  font-size: 0.88rem;
}

.btn-primary {
  background: var(--gold);
  color: #0a0a0f;
  box-shadow: 0 14px 30px rgba(201, 168, 76, 0.24);
}

.btn-primary:hover {
  background: var(--gold-soft);
}

.btn-secondary {
  border-color: rgba(255, 255, 255, 0.35);
  color: #fff;
}

.btn-secondary-dark,
.btn-ghost {
  border-color: var(--line);
  color: var(--ink);
}

.btn-whatsapp {
  background: var(--gold);
  color: #0a0a0f;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: var(--radius);
  background: transparent;
  padding: 10px;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  margin: 5px 0;
  background: #fff;
}

.hero {
  position: relative;
  min-height: 94vh;
  padding: 142px 0 84px;
  overflow: hidden;
}

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

.hero::before {
  background:
    linear-gradient(115deg, transparent 0%, rgba(201, 168, 76, 0.12) 42%, transparent 58%),
    linear-gradient(rgba(232, 201, 122, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(232, 201, 122, 0.05) 1px, transparent 1px);
  background-size: 100% 100%, 44px 44px, 44px 44px;
  opacity: 0.72;
  animation: heroGrid 16s linear infinite;
}

.hero::after {
  background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.08) 50%, transparent 100%);
  opacity: 0.16;
  transform: translateX(-100%);
  animation: scanLine 7s ease-in-out infinite;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(330px, 0.85fr);
  gap: 54px;
  align-items: center;
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.hero-lead {
  max-width: 720px;
  margin-top: 28px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.16rem;
}

.hero-actions,
.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 34px;
}

.trust-row span {
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  padding: 8px 12px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.86rem;
}

.hero-panel {
  position: relative;
  animation: floatPanel 7s ease-in-out infinite;
}

.hero-panel::before {
  position: absolute;
  inset: -55px -65px auto auto;
  width: 260px;
  height: 260px;
  border: 1px solid rgba(201, 154, 46, 0.28);
  content: "";
  transform: rotate(12deg);
  animation: frameDrift 9s ease-in-out infinite;
}

.chat-card {
  position: relative;
  z-index: 1;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 8px;
  background: linear-gradient(180deg, #171724 0%, #0f0f1a 100%);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.36);
  padding: 22px;
  transform-style: preserve-3d;
}

.chat-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  padding-bottom: 18px;
}

.chat-header strong,
.chat-header span {
  display: block;
}

.chat-header span {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.86rem;
}

.status-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--green);
  box-shadow: 0 0 0 6px rgba(31, 174, 104, 0.16);
  animation: onlinePulse 1.8s ease-in-out infinite;
}

.typing-pulse {
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-right: 7px;
  border-radius: 999px;
  background: var(--green);
  box-shadow: 10px 0 0 rgba(31, 174, 104, 0.72), 20px 0 0 rgba(31, 174, 104, 0.44);
  animation: typingDots 1.2s ease-in-out infinite;
}

.message {
  width: fit-content;
  max-width: 86%;
  margin-top: 18px;
  border-radius: 8px;
  padding: 13px 15px;
  color: #fff;
  font-size: 0.96rem;
  opacity: 0;
  transform: translateY(10px);
  animation: messageIn 520ms ease forwards;
}

.message:nth-of-type(2) {
  animation-delay: 220ms;
}

.message:nth-of-type(3) {
  animation-delay: 520ms;
}

.message:nth-of-type(4) {
  animation-delay: 820ms;
}

.message:nth-of-type(5) {
  animation-delay: 1120ms;
}

.incoming {
  background: rgba(255, 255, 255, 0.1);
}

.outgoing {
  margin-left: auto;
  background: rgba(31, 174, 104, 0.92);
}

.chat-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 22px;
  opacity: 0;
  transform: translateY(10px);
  animation: messageIn 520ms ease 1450ms forwards;
}

.chat-metrics div {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  padding: 12px;
}

.chat-metrics strong,
.chat-metrics span {
  display: block;
}

.chat-metrics span {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.76rem;
}

.split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 70px;
  align-items: start;
}

.text-stack {
  display: grid;
  gap: 24px;
}

.text-stack p,
.feature-copy p,
.about-copy p,
.contact-section p {
  font-size: 1.08rem;
}

.mini-grid,
.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.mini-grid span,
.tags span {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  padding: 10px 14px;
  color: var(--ink);
  font-weight: 700;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.mini-grid span:hover,
.tags span:hover {
  border-color: rgba(201, 168, 76, 0.42);
  transform: translateY(-2px);
}

.feature-section {
  background: var(--surface-strong);
  color: #171512;
}

.problem-section,
#servicios,
#proceso,
.contact-section,
.legal-section {
  background: #ffffff;
  color: #171512;
}

.problem-section h2,
#servicios h2,
#servicios h3,
#proceso h2,
#proceso h3,
.contact-section h2,
.legal-section h2,
.legal-section h3 {
  color: #171512;
}

.problem-section p,
#servicios p,
#proceso p,
.contact-section p,
.legal-section p {
  color: #625c54;
}

.problem-section .mini-grid span {
  border-color: rgba(23, 21, 18, 0.12);
  background: #f7f3eb;
  color: #171512;
}

.problem-section .eyebrow,
.feature-section .eyebrow,
#servicios .eyebrow,
#proceso .eyebrow,
.contact-section .eyebrow,
.legal-section .eyebrow {
  border-color: rgba(201, 168, 76, 0.28);
  background: rgba(201, 168, 76, 0.12);
  color: #7a5a12;
}

.feature-section h2,
.feature-section h3 {
  color: #171512;
}

.feature-section p {
  color: #625c54;
}

.feature-grid {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: 58px;
  align-items: start;
}

.feature-copy {
  position: sticky;
  top: 110px;
}

.feature-copy p + p {
  margin-top: 18px;
}

.benefit-list {
  display: grid;
  gap: 14px;
}

.benefit-list article,
.service-card,
.process-grid article,
.trust-grid article {
  border: 1px solid rgba(23, 21, 18, 0.12);
  border-radius: var(--radius);
  background: #fffaf2;
  padding: 26px;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.benefit-list article:hover,
.service-card:hover,
.process-grid article:hover,
.trust-grid article:hover {
  border-color: rgba(201, 168, 76, 0.48);
  box-shadow: 0 20px 45px rgba(10, 10, 15, 0.12);
  transform: translateY(-6px);
}

.benefit-list article {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 8px 18px;
}

.benefit-list span,
.process-grid span {
  display: inline-flex;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--dark);
  color: var(--gold-soft);
  font-weight: 900;
}

.benefit-list h3,
.benefit-list p {
  grid-column: 2;
}

.benefit-list p,
.service-card p,
.process-grid p,
.trust-grid p {
  margin-top: 10px;
}

.section-heading {
  max-width: 920px;
  margin-bottom: 42px;
}

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

.service-card {
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 18px;
  min-height: 280px;
}

.service-card-featured {
  border-color: rgba(201, 168, 76, 0.34);
  box-shadow: inset 0 0 0 1px rgba(201, 168, 76, 0.14);
}

.service-card a {
  display: inline-flex;
  margin-top: 0;
  color: #7a5a12;
  font-weight: 900;
}

.service-card:hover {
  background:
    linear-gradient(135deg, rgba(201, 168, 76, 0.16), transparent 46%),
    var(--dark);
  color: #fff;
  border-color: rgba(201, 168, 76, 0.55);
}

#servicios .service-card:hover h3 {
  color: var(--gold-soft);
}

#servicios .service-card:hover p {
  color: rgba(255, 255, 255, 0.78);
}

.service-card:hover a {
  color: var(--gold-soft);
}

.audience-section,
.trust-section {
  background: var(--surface);
  color: #fff;
}

.audience-section h2,
.trust-section h2,
.trust-section h3 {
  color: #fff;
}

.audience-section p,
.trust-section p {
  color: var(--muted);
}

.audience-note {
  max-width: 560px;
  margin-top: 22px;
  font-size: 1.05rem;
}

.audience-section .tags span {
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
}

.trust-section .trust-grid article {
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
}

.process-grid,
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.process-grid article {
  background: #fff;
}

.process-grid span {
  margin-bottom: 28px;
}

.about-section {
  background: var(--dark);
}

.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 64px;
  align-items: center;
}

.about-image {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.about-image::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(201, 168, 76, 0.2), transparent 44%, rgba(10, 10, 15, 0.18));
  content: "";
  mix-blend-mode: screen;
  opacity: 0.52;
}

.about-image img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  transition: transform 800ms ease;
}

.about-image:hover img {
  transform: scale(1.035);
}

.about-copy h2,
.about-copy p {
  color: #fff;
}

.about-copy p {
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.78);
}

.about-copy .btn {
  margin-top: 30px;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.28);
}

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

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 64px;
  align-items: start;
}

.contact-links {
  display: grid;
  gap: 8px;
  margin-top: 26px;
  font-weight: 900;
}

.contact-form {
  display: grid;
  gap: 16px;
  border: 1px solid rgba(23, 21, 18, 0.12);
  border-radius: var(--radius);
  background: #f7f3eb;
  padding: 28px;
  box-shadow: 0 24px 70px rgba(10, 10, 15, 0.12);
}

label {
  display: grid;
  gap: 8px;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(23, 21, 18, 0.14);
  border-radius: var(--radius);
  background: #fff;
  color: #171512;
  font: inherit;
  padding: 14px 15px;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(201, 168, 76, 0.14);
  outline: none;
}

textarea {
  resize: vertical;
}

.form-note {
  font-size: 0.88rem;
}

.form-note a {
  color: #7a5a12;
  font-weight: 900;
}

.site-footer {
  background: var(--dark);
  color: #fff;
  padding: 64px 0 26px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr 1fr 0.85fr;
  gap: 40px;
}

.footer-logo {
  width: min(280px, 100%);
  margin-bottom: 18px;
}

.site-footer h2 {
  margin-bottom: 16px;
  color: #fff;
  font-size: 1rem;
}

.site-footer a,
.site-footer span,
.site-footer p {
  display: block;
  color: rgba(255, 255, 255, 0.68);
}

.site-footer a,
.site-footer span {
  margin-top: 10px;
}

.site-footer a:hover {
  color: #fff;
}

.footer-bottom {
  width: min(calc(100% - 40px), var(--container));
  margin: 44px auto 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 22px;
}

.legal-hero {
  padding: 150px 0 80px;
}

.legal-hero h1 {
  font-size: clamp(2.4rem, 5vw, 4.4rem);
}

.legal-hero p:not(.eyebrow) {
  max-width: 760px;
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.16rem;
}

.legal-section {
  background: #fff;
}

.legal-content {
  max-width: 860px;
}

.legal-content h2 {
  margin-top: 42px;
  font-size: 1.58rem;
}

.legal-content p {
  margin-top: 14px;
  font-size: 1rem;
}

.legal-content a {
  color: #7a5a12;
  font-weight: 800;
}

.legal-note {
  margin-top: 44px;
  border-left: 4px solid var(--gold);
  background: #f7f3eb;
  padding: 18px;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 720ms ease var(--reveal-delay, 0ms), transform 720ms ease var(--reveal-delay, 0ms);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes heroGrid {
  0% {
    background-position: 0 0, 0 0, 0 0;
  }
  100% {
    background-position: 0 0, 44px 44px, 44px 44px;
  }
}

@keyframes scanLine {
  0%,
  36% {
    transform: translateX(-100%);
  }
  72%,
  100% {
    transform: translateX(100%);
  }
}

@keyframes floatPanel {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}

@keyframes frameDrift {
  0%,
  100% {
    transform: rotate(12deg) translate(0, 0);
  }
  50% {
    transform: rotate(8deg) translate(-8px, 8px);
  }
}

@keyframes onlinePulse {
  0%,
  100% {
    box-shadow: 0 0 0 6px rgba(31, 174, 104, 0.16);
  }
  50% {
    box-shadow: 0 0 0 10px rgba(31, 174, 104, 0.06);
  }
}

@keyframes typingDots {
  0%,
  100% {
    opacity: 0.45;
    transform: translateY(0);
  }
  50% {
    opacity: 1;
    transform: translateY(-2px);
  }
}

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

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

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1040px) {
  .main-nav {
    position: absolute;
    top: 78px;
    right: 20px;
    display: none;
    width: min(320px, calc(100vw - 40px));
    flex-direction: column;
    align-items: stretch;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius);
    background: rgba(10, 10, 15, 0.98);
    padding: 18px;
  }

  .main-nav.is-open {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }

  .hero-grid,
  .feature-grid,
  .about-grid,
  .contact-grid,
  .split {
    grid-template-columns: 1fr;
  }

  .feature-copy {
    position: static;
  }

  .services-grid,
  .process-grid,
  .trust-grid,
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 720px) {
  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .section {
    padding: 64px 0;
  }

  .site-header {
    padding: 12px 14px;
  }

  .brand {
    width: min(200px, 48vw);
  }

  .language-switcher {
    padding: 3px;
  }

  .language-switcher button {
    min-width: 30px;
    height: 28px;
    font-size: 0.7rem;
  }

  .header-actions .btn {
    display: none;
  }

  .hero {
    min-height: auto;
    padding: 104px 0 48px;
  }

  h1 {
    font-size: clamp(1.88rem, 8.6vw, 2.46rem);
    line-height: 1.1;
  }

  h2 {
    font-size: clamp(1.78rem, 8vw, 2.35rem);
    line-height: 1.08;
  }

  .hero-lead {
    font-size: 0.96rem;
    line-height: 1.62;
    max-width: 34rem;
  }

  .hero-actions,
  .button-row {
    display: grid;
  }

  .btn {
    width: 100%;
  }

  .chat-card {
    padding: 16px;
  }

  .chat-header {
    padding-bottom: 14px;
  }

  .chat-header strong {
    font-size: 1rem;
  }

  .message {
    max-width: 91%;
    padding: 11px 12px;
    font-size: 0.9rem;
    line-height: 1.42;
  }

  .chat-metrics div {
    padding: 10px 12px;
  }

  .eyebrow {
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    padding: 7px 10px;
  }

  .chat-metrics,
  .services-grid,
  .process-grid,
  .trust-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .benefit-list article {
    grid-template-columns: 1fr;
  }

  .benefit-list h3,
  .benefit-list p {
    grid-column: 1;
  }

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

  .contact-form {
    padding: 20px;
  }
}
