/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:        #0d0d0d;
  --bg2:       #111111;
  --surface:   #1a1a1a;
  --border:    rgba(255,255,255,0.10);
  --white:     #f5f4f2;
  --text:      #f5f4f2;
  --off:       rgba(245,244,242,0.55);
  --accent:    #9a7c3f;
  --accent2:   #b8962e;
  --navy:      #9a7c3f;
  --red:       #9a7c3f;
  --red-light: #b8962e;
  --font-display: 'Space Grotesk', sans-serif;
  --font-body:    'DM Sans', sans-serif;
  --ease: cubic-bezier(0.76, 0, 0.24, 1);
}

html { scroll-behavior: smooth; cursor: url('../img/cursor-gold.svg') 0 0, auto; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
em { font-style: normal; color: var(--accent); }

/* ============================================================
   NOISE CANVAS
   ============================================================ */
#noise {
  position: fixed; inset: 0; z-index: 1;
  pointer-events: none; opacity: 0.035;
  width: 100%; height: 100%;
}

/* ============================================================
   CUSTOM CURSOR
   ============================================================ */

/* ============================================================
   PRELOADER
   ============================================================ */
#preloader {
  position: fixed; inset: 0; z-index: 10000;
  background: var(--bg);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 2rem;
}
.pre-logo {
  display: flex;
  align-items: center;
  justify-content: center;
}
.pre-wordmark {
  width: clamp(160px, 40vw, 320px);
  height: auto;
}
.pre-bar {
  width: 300px; max-width: 80vw;
  height: 2px;
  background: var(--surface);
  border-radius: 99px;
  overflow: hidden;
}
.pre-fill {
  height: 100%;
  background: var(--accent);
  width: 0%;
  transition: width .05s linear;
}
.pre-count {
  font-size: 0.85rem;
  color: var(--off);
  letter-spacing: 0.1em;
}

/* ============================================================
   HEADER
   ============================================================ */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 500;
  padding: 1.4rem 2.5rem;
  transition: background .4s, backdrop-filter .4s, padding .4s;
}
.header.scrolled {
  background: rgba(13,13,13,0.95);
  backdrop-filter: blur(16px);
  padding: 1rem 2.5rem;
  border-bottom: 1px solid var(--border);
}
.header-inner {
  display: flex; align-items: center; gap: 2rem;
  max-width: 1300px; margin: 0 auto;
}
.logo {
  display: flex; align-items: center; gap: 0.75rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem; letter-spacing: 0.12em;
  margin-right: auto;
  color: var(--text);
}
.logo-mark {
  width: 28px; height: 28px;
  flex-shrink: 0;
}
.logo-sep {
  width: 1px; height: 22px;
  background: rgba(245,244,242,0.25);
  flex-shrink: 0;
}
.logo-text {
  display: flex; flex-direction: column; gap: 1px;
}
.logo-wordmark {
  height: 18px;
  width: auto;
  display: block;
}
.logo-tagline {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 0.5rem;
  letter-spacing: 0.38em;
  color: var(--off);
  line-height: 1;
  text-transform: uppercase;
}
.nav { display: flex; gap: 2.5rem; }
.nav-link {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--off);
  position: relative;
  overflow: hidden;
  display: inline-block;
}
.nav-link span { display: inline-block; transition: transform .3s var(--ease); }
.nav-link::after {
  content: attr(href);
  position: absolute; top: 100%; left: 0;
  color: var(--text);
  transition: transform .3s var(--ease);
}
.nav-link:hover span { transform: translateY(-100%); }
.header-cta {
  font-size: 0.8rem; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  border: 1.5px solid rgba(255,255,255,0.20);
  padding: 0.55rem 1.3rem;
  border-radius: 999px;
  color: var(--text);
  transition: background .25s, color .25s, border-color .25s;
}
.header-cta span { display: inline-block; }
.header-cta:hover {
  background: var(--accent); color: var(--bg); border-color: var(--accent);
}
.menu-toggle {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: none; padding: 4px;
}
.menu-toggle span {
  display: block; width: 22px; height: 2px;
  background: var(--text);
  transition: transform .3s, opacity .3s;
}

/* ============================================================
   MOBILE MENU
   ============================================================ */
.mobile-menu {
  position: fixed; inset: 0; z-index: 400;
  background: var(--bg2);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity .4s var(--ease);
}
.mobile-menu.open { opacity: 1; pointer-events: all; }
.mm-links { display: flex; flex-direction: column; gap: 2rem; text-align: center; }
.mm-link {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.5rem, 10vw, 5rem);
  letter-spacing: 0.05em;
  color: var(--off);
  transition: color .2s;
}
.mm-link:hover { color: var(--accent); }

/* ============================================================
   SCROLL ANIMATIONS
   ============================================================ */
.reveal-up {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}
.reveal-up.visible { opacity: 1; transform: translateY(0); }

.line-wrap { display: block; overflow: hidden; padding-bottom: 0.18em; margin-bottom: -0.18em; }
.line {
  display: block;
  transform: translateY(110%);
  transition: transform 1s var(--ease);
}
.line.visible { transform: translateY(0); }

.reveal-card {
  opacity: 0;
  transform: translateY(40px) scale(0.97);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.reveal-card.visible { opacity: 1; transform: translateY(0) scale(1); }

.delay-1 { transition-delay: .1s !important; }
.delay-2 { transition-delay: .2s !important; }
.delay-3 { transition-delay: .3s !important; }
.delay-4 { transition-delay: .45s !important; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: 100vh;
  display: flex; align-items: center;
  position: relative;
  overflow: hidden;
  padding: 0 2.5rem;
}
#hero-video {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}
.hero-video-overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(6, 16, 26, 0.55);
  z-index: 1;
}
.hero-bg-text {
  position: absolute;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(10rem, 25vw, 22rem);
  letter-spacing: -0.02em;
  color: rgba(245,244,242,0.09);
  right: -2rem; bottom: -2rem;
  pointer-events: none;
  user-select: none;
  animation: floatBg 8s ease-in-out infinite;
}
@keyframes floatBg {
  0%,100% { transform: translateY(0) rotate(-3deg); }
  50%      { transform: translateY(-30px) rotate(-1deg); }
}

.hero-content {
  width: 100%; max-width: 1300px; margin: 0 auto; padding-top: 6rem; padding-bottom: 7rem;
  position: relative; z-index: 2;
  color: #ffffff;
  display: flex; flex-direction: column; align-items: center;
  text-align: center;
}
.hero-title, .hero-sub, .hero-scroll, .hstat-n, .hstat p { color: #ffffff; }
.hero-scroll, .hstat p { color: rgba(255,255,255,0.75); }
.hero-tag {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.8rem; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--accent); border: 1px solid rgba(154,124,63,0.50);
  padding: 0.4rem 1rem; border-radius: 999px; margin-bottom: 2rem;
  background: rgba(6,16,26,0.52);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  text-shadow: 0 1px 8px rgba(6,16,26,0.8);
}
.hero-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(4rem, 10vw, 9rem);
  line-height: 0.95;
  letter-spacing: -0.02em;
  margin-bottom: 2.5rem;
}
.hero-sub {
  font-size: clamp(1.15rem, 1.8vw, 1.4rem); color: rgba(255,255,255,0.82);
  max-width: 560px; margin-bottom: 3rem;
  line-height: 1.7; letter-spacing: 0.01em; font-weight: 300;
  text-shadow: 0 1px 6px rgba(0,0,0,0.9), 0 0 20px rgba(0,0,0,0.8);
}
.hero-actions { display: flex; gap: 1.2rem; flex-wrap: wrap; justify-content: center; }

.btn-primary {
  display: inline-flex; align-items: center; gap: 0.6rem;
  background: var(--accent); color: #0d0d0d;
  font-weight: 700; font-size: 0.9rem;
  padding: 1rem 2rem; border-radius: 999px;
  transition: background .25s, gap .3s var(--ease), transform .3s var(--ease);
}
.btn-primary svg { width: 18px; stroke: #0d0d0d; fill: none; stroke-width: 2; }
.btn-primary:hover { background: var(--red-light); gap: 1rem; }

.btn-primary,
.btn-ghost { min-width: 180px; justify-content: center; }

.btn-ghost {
  display: inline-flex; align-items: center; gap: 0.6rem;
  border: 1.5px solid rgba(255,255,255,0.30);
  font-weight: 500; font-size: 0.9rem;
  padding: 1rem 2rem; border-radius: 999px;
  color: rgba(255,255,255,0.85);
  transition: color .25s, border-color .25s;
}
.btn-ghost:hover { color: #fff; border-color: rgba(255,255,255,0.65); }

.hero-scroll {
  position: absolute; bottom: 2.5rem; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
  font-size: 0.7rem; letter-spacing: 0.15em; text-transform: uppercase;
  color: rgba(255,255,255,0.5); z-index: 2;
}
.scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, var(--accent), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%,100% { opacity: 1; transform: scaleY(1); }
  50%      { opacity: 0.4; transform: scaleY(0.6); }
}

.hero-stats {
  position: absolute; right: 2.5rem; bottom: 3rem;
  display: flex; flex-direction: column; gap: 2rem;
  z-index: 2;
}
.hstat { text-align: right; }
.hstat-n {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 2.5rem; line-height: 1;
  color: var(--white);
}
.hstat span { color: var(--accent); font-size: 1.8rem; }
.hstat p { font-size: 0.75rem; color: rgba(255,255,255,0.55); letter-spacing: 0.1em; text-transform: uppercase; }

/* ============================================================
   MARQUEE
   ============================================================ */
.marquee-wrap {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
  padding: 1.2rem 0;
}
.marquee-track {
  display: flex; gap: 0;
  width: max-content;
  will-change: transform;
  font-size: 0.8rem; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--off);
}
.marquee-track > span { margin-right: 2rem; }
.marquee-wrap:hover .marquee-track { animation-play-state: paused; }
.dot { color: var(--accent); }

/* ============================================================
   SECTIONS COMMON
   ============================================================ */
.section { padding: 8rem 2.5rem; max-width: 1300px; margin: 0 auto; }

.section-header { margin-bottom: 5rem; }
.s-label {
  display: block;
  font-size: 0.75rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 1.5rem;
}
.s-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.8rem, 5.5vw, 5rem);
  line-height: 1;
  letter-spacing: -0.02em;
}

/* ============================================================
   FILOSOFÍA INLINE (junto al título de Servicios)
   ============================================================ */
.servicios-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 3rem;
  margin-bottom: 5rem;
}
.servicios-top .section-header { margin-bottom: 0; flex-shrink: 0; }
.fil-inline {
  width: 340px;
  flex-shrink: 0;
  background: var(--bg2);
  border: 1px solid rgba(154,124,63,0.35);
  border-radius: 14px;
  padding: 1.6rem 1.75rem;
}
.fil-inline-label {
  display: block;
  font-size: 0.65rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 0.5rem;
}
.fil-inline-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.75rem;
  line-height: 1;
  color: var(--text);
  letter-spacing: -0.02em;
  margin-bottom: 0.8rem;
}
.fil-inline-text {
  font-size: 0.82rem;
  color: var(--off);
  line-height: 1.75;
  margin-bottom: 1rem;
}
.fil-inline-deco {
  width: 36px; height: 2px;
  background: var(--accent);
}
@media (max-width: 960px) {
  .servicios-top { flex-direction: column; gap: 2rem; }
  .fil-inline { width: 100%; }
}

/* ============================================================
   SERVICIOS
   ============================================================ */
.servicios-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
}
.servicio-card {
  position: relative;
  padding: 2.5rem;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  transition: background .3s;
  overflow: hidden;
  cursor: url('../img/cursor-gold.svg') 0 0, auto;
}
.servicio-card::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(154,124,63,0.10), transparent);
  opacity: 0;
  transition: opacity .4s;
}
.servicio-card:hover { background: var(--surface); }
.servicio-card:hover::before { opacity: 1; }
.sc-top {
  display: flex; justify-content: space-between; align-items: flex-start;
  margin-bottom: 1.5rem;
}
.sc-num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 3rem; line-height: 1;
  color: rgba(245,244,242,0.08);
  transition: color .3s;
}
.servicio-card:hover .sc-num { color: var(--accent); }
.sc-arrow {
  width: 20px; stroke: var(--off); fill: none; stroke-width: 2;
  transform: rotate(0deg);
  transition: transform .3s var(--ease), stroke .3s;
}
.servicio-card:hover .sc-arrow { transform: rotate(45deg); stroke: var(--accent); }
.servicio-card h3 {
  font-size: 1.15rem; font-weight: 600; margin-bottom: 0.75rem;
  transition: color .3s;
}
.servicio-card:hover h3 { color: var(--accent); }
.servicio-card p { font-size: 0.9rem; color: var(--off); line-height: 1.7; }
.sc-line {
  position: absolute; bottom: 0; left: 0;
  height: 2px; width: 0%;
  background: var(--accent);
  transition: width .5s var(--ease);
}
.servicio-card:hover .sc-line { width: 100%; }

.servicio-card:nth-child(2) { transition-delay: .05s; }
.servicio-card:nth-child(3) { transition-delay: .10s; }
.servicio-card:nth-child(4) { transition-delay: .15s; }
.servicio-card:nth-child(5) { transition-delay: .20s; }
.servicio-card:nth-child(6) { transition-delay: .25s; }

/* ============================================================
   NOSOTROS
   ============================================================ */
.s-nosotros {
  background: var(--bg2);
  max-width: 100%;
  padding: 8rem 2.5rem;
}
.nosotros-inner {
  max-width: 1300px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 6rem; align-items: center;
}
.nos-desc {
  color: var(--off); line-height: 1.9;
  margin: 2rem 0;
  max-width: 420px;
}
.nos-list { list-style: none; display: flex; flex-direction: column; gap: 0.8rem; }
.nos-item { font-size: 0.9rem; color: var(--off); }
.ni-check { color: var(--accent); margin-right: 0.5rem; }

.nos-video-wrap {
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 16/9;
  border: 1px solid var(--border);
  background: var(--surface);
}
.nos-video {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
}
.nos-stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  margin-top: 0.75rem;
}
.nos-stat {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1.4rem 1rem;
  text-align: center;
  transition: transform .4s var(--ease), border-color .4s;
}
.nos-stat:hover {
  transform: translateY(-4px);
  border-color: rgba(154,124,63,0.5);
  background: linear-gradient(135deg, rgba(154,124,63,0.07), var(--surface));
}
.nc-val {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 2.2rem; color: var(--accent);
  line-height: 1; margin-bottom: 0.3rem;
}
.nc-lbl { font-size: 0.78rem; color: var(--off); }

/* ============================================================
   EQUIPO
   ============================================================ */
.equipo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.5rem;
}
.equipo-grid--duo {
  grid-template-columns: repeat(2, minmax(0, 360px));
  justify-content: center;
}
.eq-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  transition: transform .4s var(--ease), border-color .4s;
  cursor: url('../img/cursor-gold.svg') 0 0, auto;
}
.eq-card:hover { transform: translateY(-8px); border-color: rgba(154,124,63,0.40); }
.eq-img {
  height: 200px;
  display: grid; place-items: center;
  background: linear-gradient(135deg, var(--bg2), var(--surface));
}
.eq-avatar {
  width: 80px; height: 80px;
  background: hsl(var(--hue), 60%, 40%);
  border-radius: 50%;
  display: grid; place-items: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.8rem;
  color: white;
}
.eq-info { padding: 1.5rem; }
.eq-info h4 { font-weight: 600; margin-bottom: 0.3rem; }
.eq-info span { font-size: 0.82rem; color: var(--accent); }

/* ============================================================
   CONTACTO
   ============================================================ */
.s-contacto {
  background: var(--bg2);
  max-width: 100%;
  padding: 8rem 2.5rem;
}
.contacto-inner {
  max-width: 1300px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1.4fr;
  gap: 6rem; align-items: start;
}
.cto-map {
  max-width: 1300px; margin: 3rem auto 0;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--border);
}
.cto-data { margin-top: 3rem; display: flex; flex-direction: column; gap: 1.2rem; }
.cto-link {
  display: flex; align-items: center; gap: 0.8rem;
  font-size: 1rem; color: var(--off);
  transition: color .25s;
}
.cto-link:hover { color: var(--accent); }
.cto-icon { color: var(--accent); }
.cto-addr { font-size: 0.9rem; color: var(--off); line-height: 1.8; }
.cto-hrs  { font-size: 0.82rem; color: rgba(245,244,242,0.35); }
.cto-direccion {
  display: flex; align-items: flex-start; gap: 0.8rem;
  font-size: 0.88rem; color: var(--off); line-height: 1.5;
  transition: color .25s;
}
.cto-direccion:hover { color: var(--accent); }

/* Form */
.cto-form { display: flex; flex-direction: column; gap: 1.5rem; }
.cf-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.cf-field { position: relative; }
.cf-field input,
.cf-field select,
.cf-field textarea {
  width: 100%;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 1.2rem 1rem 0.6rem;
  color: var(--text);
  font-size: 0.95rem;
  font-family: var(--font-body);
  transition: border-color .25s;
  appearance: none;
  resize: none;
}
.cf-field input:focus,
.cf-field select:focus,
.cf-field textarea:focus {
  outline: none;
  border-color: var(--accent);
}
.cf-field label {
  position: absolute;
  top: 50%; left: 1rem;
  transform: translateY(-50%);
  font-size: 0.85rem; color: var(--off);
  pointer-events: none;
  transition: top .2s, font-size .2s, color .2s;
}
.cf-field textarea ~ label { top: 1.2rem; transform: none; }
.cf-field input:not(:placeholder-shown) ~ label,
.cf-field input:focus ~ label,
.cf-field select:focus ~ label,
.cf-field textarea:not(:placeholder-shown) ~ label,
.cf-field textarea:focus ~ label {
  top: 0.45rem; font-size: 0.72rem; color: var(--accent);
  transform: none;
}
.select-label { top: 0.45rem !important; font-size: 0.72rem !important; color: var(--accent) !important; }

.btn-submit {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.7rem;
  background: var(--accent); color: var(--bg);
  font-weight: 700; font-size: 0.95rem;
  padding: 1.1rem 2rem; border-radius: 10px;
  border: none; width: 100%;
  transition: background .25s, gap .3s var(--ease);
  cursor: url('../img/cursor-gold.svg') 0 0, auto;
}
.btn-submit svg { width: 18px; stroke: var(--bg); fill: none; stroke-width: 2; }
.btn-submit:hover { background: var(--red-light); gap: 1.2rem; }
.cf-ok { text-align: center; color: var(--accent); font-size: 0.85rem; min-height: 1.2rem; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  border-top: 1px solid var(--border);
  padding: 3rem 2.5rem;
}
.footer-inner {
  max-width: 1300px; margin: 0 auto;
  display: flex; align-items: center; gap: 2rem;
  flex-wrap: wrap;
}
.footer-logo {
  display: flex; align-items: center; gap: 0.6rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem; letter-spacing: 0.12em;
  color: var(--off); margin-right: auto;
}
.footer-copy { font-size: 0.8rem; color: rgba(245,244,242,0.35); }
.footer-links { display: flex; gap: 1.5rem; }
.footer-links a { font-size: 0.8rem; color: rgba(245,244,242,0.35); transition: color .2s; }
.footer-links a:hover { color: var(--off); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 960px) {
  .nosotros-inner,
  .contacto-inner { grid-template-columns: 1fr; gap: 4rem; }
  .hero-stats { display: none; }
  .servicios-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 700px) {
  .nav, .header-cta { display: none; }
  .menu-toggle { display: flex; margin-left: auto; }
  .cf-row { grid-template-columns: 1fr; }
  .section { padding: 5rem 1.5rem; }
  .s-nosotros, .s-contacto { padding: 5rem 1.5rem; }
  .hero { padding: 0 1.5rem; }
  .header { padding: 1.2rem 1.5rem; }
  .nos-stats-row { grid-template-columns: repeat(3, 1fr); }
  .servicios-grid { grid-template-columns: 1fr; }
  .servicio-card { padding: 1.75rem; }
}
