:root {
  --bg-cream: #F1F3ED;
  --bg-paper: #DEE2D8;
  --bg-warm: #C5CAC0;
  --bg-dark: #0F1318;
  --bg-deep: #1A1F27;
  --text-ink: #0E1216;
  --text-mid: #4F555E;
  --text-soft: #767D87;
  --text-light: #F1F3ED;
  --text-light-mid: #A6ACB6;
  --accent: #DC3A14;
  --accent-deep: #A22A0E;
  --accent-soft: #ED5C39;
  --leaf: #1F4D38;
  --leaf-deep: #133327;
  --line: #BCC2B7;
  --line-soft: #CDD3C8;
  --line-dark: #242A33;
  --line-darker: #11151B;
  --shadow-sm: 0 2px 8px rgba(14, 18, 22, 0.07);
  --shadow-md: 0 8px 24px rgba(14, 18, 22, 0.12);
  --shadow-lg: 0 18px 48px rgba(14, 18, 22, 0.20);
  --radius-sm: 4px;
  --radius-md: 10px;
  --radius-lg: 22px;
  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --maxw: 1240px;
  --pad-x: clamp(20px, 4vw, 56px);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-ink);
  background: var(--bg-cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: 0; background: none; }
ul { list-style: none; }
input, textarea, select { font-family: inherit; font-size: inherit; }

.body-no-scroll { overflow: hidden; }

[hidden] { display: none !important; }

.material-icons { font-feature-settings: 'liga'; vertical-align: middle; }

.site-top {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(250, 246, 240, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}

.top-shell {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 14px var(--pad-x);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand-mark {
  display: flex;
  align-items: center;
  gap: 12px;
}
.brand-icon {
  width: 42px; height: 42px;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--text-ink);
  color: var(--bg-cream);
  border-radius: 50%;
}
.brand-icon .material-icons { font-size: 22px; }
.brand-words { display: flex; flex-direction: column; line-height: 1; }
.brand-line-one {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 19px;
  letter-spacing: -0.01em;
}
.brand-line-two {
  font-size: 11px;
  color: var(--text-soft);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-top: 4px;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav-link {
  padding: 10px 16px;
  font-size: 14.5px;
  font-weight: 500;
  color: var(--text-ink);
  border-radius: var(--radius-sm);
  transition: color 0.15s, background 0.15s;
}
.nav-link:hover { color: var(--accent); }
.nav-active { color: var(--accent); }
.nav-cta {
  background: var(--text-ink);
  color: var(--bg-cream);
  padding: 11px 22px;
  margin-left: 10px;
}
.nav-cta:hover { background: var(--accent); color: var(--bg-cream); }

.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  align-items: center; justify-content: center;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  color: var(--text-ink);
}
.nav-toggle .material-icons { font-size: 26px; }

.hero-zone {
  position: relative;
  min-height: 86vh;
  padding: clamp(60px, 9vh, 110px) 0 clamp(50px, 7vh, 90px);
  overflow: hidden;
}
.hero-zone::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(96deg, var(--bg-cream) 0%, var(--bg-cream) 48%, var(--bg-warm) 48%, var(--bg-warm) 100%);
  z-index: 0;
}
.hero-bg-piece {
  position: absolute;
  right: -8%;
  top: 14%;
  width: 58%;
  max-width: 720px;
  z-index: 1;
  filter: drop-shadow(0 30px 60px rgba(40, 25, 15, 0.28));
}
.hero-bg-img {
  width: 100%;
  border-radius: 50% 50% 50% 50% / 60% 50% 50% 60%;
  transform: rotate(-3deg);
}
.hero-grid {
  position: relative;
  z-index: 2;
  max-width: 1340px;
  margin: 0 auto;
  padding: 0 var(--pad-x);
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: clamp(24px, 4vw, 64px);
  align-items: end;
}
.hero-col-a { padding-top: 30px; }
.hero-col-b { text-align: left; }
.hero-col-c { padding-top: 60px; }

.eyebrow-tag {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent-deep);
  padding-bottom: 6px;
  border-bottom: 2px solid var(--accent);
  margin-bottom: 22px;
  font-weight: 600;
}
.hero-subline {
  font-size: 15px;
  line-height: 1.65;
  color: var(--text-mid);
  max-width: 320px;
}
.big-headline {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(40px, 6.4vw, 84px);
  line-height: 0.98;
  letter-spacing: -0.025em;
  color: var(--text-ink);
  margin-bottom: 36px;
}
.big-headline em {
  font-style: italic;
  font-weight: 400;
  color: var(--accent-deep);
}
.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.btn-primary, .btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 28px;
  font-size: 15px;
  font-weight: 600;
  border-radius: var(--radius-sm);
  transition: all 0.18s ease;
  letter-spacing: 0.01em;
}
.btn-primary {
  background: var(--text-ink);
  color: var(--bg-cream);
}
.btn-primary:hover {
  background: var(--accent);
}
.btn-ghost {
  background: transparent;
  color: var(--text-ink);
  border: 1.5px solid var(--text-ink);
}
.btn-ghost:hover {
  background: var(--text-ink);
  color: var(--bg-cream);
}
.btn-ghost .material-icons,
.btn-primary .material-icons { font-size: 18px; }

.hero-stat-card {
  background: var(--bg-cream);
  border: 1px solid var(--line);
  padding: 22px 24px;
  border-radius: var(--radius-md);
  margin-bottom: 18px;
  box-shadow: var(--shadow-sm);
}
.hero-stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: 54px;
  font-weight: 900;
  color: var(--accent);
  line-height: 1;
}
.hero-stat-label {
  display: block;
  font-size: 13px;
  color: var(--text-mid);
  margin-top: 8px;
  line-height: 1.4;
}
.hero-mini-list { display: flex; flex-direction: column; gap: 8px; }
.hero-mini-list span {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13.5px;
  color: var(--text-ink);
}
.hero-mini-list .material-icons {
  font-size: 18px;
  color: var(--leaf);
}

.section-tag {
  display: inline-block;
  font-size: 11.5px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--accent-deep);
  font-weight: 600;
  margin-bottom: 18px;
}
.section-tag-light {
  display: inline-block;
  font-size: 11.5px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--accent-soft);
  font-weight: 600;
  margin-bottom: 18px;
}
.section-h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(30px, 4vw, 50px);
  line-height: 1.05;
  letter-spacing: -0.018em;
  color: var(--text-ink);
  margin-bottom: 22px;
}
.section-h2-light {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(30px, 4vw, 50px);
  line-height: 1.05;
  letter-spacing: -0.018em;
  color: var(--text-light);
  margin-bottom: 22px;
}
.section-lead {
  font-size: 17px;
  line-height: 1.65;
  color: var(--text-mid);
  max-width: 720px;
}
.section-body {
  font-size: 15.5px;
  line-height: 1.7;
  color: var(--text-mid);
  margin-bottom: 16px;
}
.section-body-light {
  font-size: 15.5px;
  line-height: 1.7;
  color: var(--text-light-mid);
  margin-bottom: 16px;
}
.align-right { text-align: right; }
.align-center { text-align: center; }
.justify-text { text-align: justify; }

.aboutus-zone {
  padding: clamp(70px, 11vh, 140px) 0;
  background: transparent;
}
.aboutus-shell {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--pad-x);
}
.aboutus-head {
  text-align: center;
  margin-bottom: 64px;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}
.aboutus-trio {
  display: grid;
  grid-template-columns: 30% 1fr 1fr;
  gap: 28px;
  text-align: center;
}
.aboutus-card {
  background: var(--bg-paper);
  padding: 36px 28px;
  border-radius: var(--radius-md);
  display: flex;
  flex-direction: column;
  align-items: center;
}
.aboutus-card:nth-child(2) {
  background: var(--bg-warm);
  transform: translateY(-12px);
}
.aboutus-card:nth-child(3) { background: var(--bg-warm); }

.card-icon-wrap {
  width: 64px; height: 64px;
  display: flex; align-items: center; justify-content: center;
  background: var(--text-ink);
  color: var(--bg-cream);
  border-radius: 50%;
  margin-bottom: 22px;
}
.card-icon-wrap .material-icons { font-size: 28px; }
.card-h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text-ink);
}
.card-text {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--text-mid);
}

.proc-intro-zone {
  position: relative;
  padding: clamp(80px, 12vh, 150px) 0;
  overflow: hidden;
}
.proc-intro-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(269deg, var(--bg-deep) 0%, var(--bg-deep) 38%, var(--bg-cream) 38%, var(--bg-cream) 100%);
  z-index: 0;
}
.proc-intro-grid {
  position: relative;
  z-index: 2;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--pad-x);
  display: grid;
  grid-template-columns: 33% 1fr;
  gap: clamp(40px, 6vw, 90px);
  align-items: center;
}
.proc-intro-img {
  position: relative;
}
.circle-shadow-img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: var(--shadow-lg);
  border: 12px solid var(--bg-cream);
}
.proc-intro-text {
  border: 4px solid var(--text-ink);
  background: var(--bg-cream);
  padding: clamp(34px, 4vw, 56px);
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
.proc-intro-text .section-tag { align-self: flex-end; }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 15px;
  color: var(--accent-deep);
  border-bottom: 2px solid var(--accent);
  padding-bottom: 4px;
  margin-top: 12px;
  transition: gap 0.2s, color 0.15s;
}
.link-arrow:hover {
  color: var(--text-ink);
  gap: 14px;
}
.link-arrow .material-icons { font-size: 18px; }

.services-zone {
  position: relative;
  padding: clamp(80px, 12vh, 140px) 0;
  overflow: hidden;
}
.services-bg-half {
  position: absolute;
  inset: 0 0 0 50%;
  background: linear-gradient(135deg, var(--bg-warm) 0%, var(--bg-paper) 100%);
  z-index: 0;
}
.services-grid {
  position: relative;
  z-index: 2;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--pad-x);
  display: grid;
  grid-template-columns: 33% 1fr;
  gap: clamp(40px, 6vw, 90px);
  align-items: center;
}
.services-visual {
  position: relative;
}
.custom-shape-img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 200px 12px 200px 12px;
  background: linear-gradient(180deg, var(--accent), var(--accent-deep));
}
.services-text {
  border: 1px solid var(--line);
  border-left: 4px solid var(--accent);
  padding: clamp(30px, 4vw, 56px);
  background: var(--bg-cream);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
.service-bullet-list {
  width: 100%;
  margin-top: 12px;
}
.service-bullet-list li {
  padding: 12px 0;
  border-bottom: 1px dashed var(--line);
  font-size: 15px;
  color: var(--text-ink);
  font-weight: 500;
}
.service-bullet-list li:last-child { border-bottom: 0; }

.equipos-zone {
  padding: clamp(80px, 12vh, 140px) 0;
  background: linear-gradient(180deg, var(--bg-cream) 0%, var(--bg-paper) 100%);
}
.equipos-shell {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--pad-x);
}
.equipos-header {
  text-align: center;
  margin-bottom: 70px;
}
.equipos-pair-a, .equipos-pair-b {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: center;
  margin-bottom: 80px;
  background: var(--bg-cream);
  padding: clamp(30px, 5vw, 70px);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}
.equipos-pair-b { background: var(--bg-paper); }
.equipos-pair-b:last-child { margin-bottom: 0; }
.equipos-img-wrap {
  display: flex;
  justify-content: center;
}
.circle-border-img {
  width: 100%;
  max-width: 380px;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 50%;
  border: 8px solid var(--accent);
  outline: 1px solid var(--line);
  outline-offset: 14px;
}
.card-h3-large {
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 700;
  margin-bottom: 18px;
  color: var(--text-ink);
  letter-spacing: -0.01em;
}

.catalogo-zone {
  background: var(--bg-dark);
  padding: clamp(80px, 12vh, 140px) 0;
  position: relative;
}
.catalogo-zone::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent) 0%, var(--accent-soft) 50%, var(--leaf) 100%);
}
.catalogo-grid {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--pad-x);
  display: grid;
  grid-template-columns: 30% 1fr;
  gap: clamp(40px, 6vw, 90px);
  align-items: start;
}
.catalogo-side {
  position: sticky;
  top: 100px;
  border: 4px solid var(--accent);
  padding: clamp(28px, 4vw, 44px);
  text-align: center;
  background: var(--bg-deep);
  border-radius: var(--radius-md);
}
.catalogo-side .section-tag-light,
.catalogo-side .section-h2-light,
.catalogo-side .section-body-light { text-align: center; }
.catalogo-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.catalogo-item {
  background: var(--bg-deep);
  border: 1px solid var(--line-dark);
  padding: 28px 30px;
  border-radius: var(--radius-md);
  transition: border-color 0.2s, transform 0.2s;
}
.catalogo-item:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
}
.catalogo-item-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 10px;
}
.catalogo-name {
  font-family: var(--font-display);
  font-size: 21px;
  font-weight: 700;
  color: var(--text-light);
}
.catalogo-price {
  font-size: 19px;
  font-weight: 700;
  color: var(--accent-soft);
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}
.catalogo-desc {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--text-light-mid);
  margin-bottom: 14px;
}
.catalogo-meta {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
  padding-top: 14px;
  border-top: 1px dashed var(--line-dark);
}
.catalogo-meta span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  color: var(--text-light-mid);
}
.catalogo-meta .material-icons {
  font-size: 16px;
  color: var(--accent-soft);
}

.pasos-zone {
  padding: clamp(70px, 10vh, 130px) 0;
  background: transparent;
}
.pasos-shell {
  max-width: 1340px;
  margin: 0 auto;
  padding: 0 var(--pad-x);
}
.pasos-header { margin-bottom: 56px; }
.pasos-quad {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.paso-block {
  padding: 36px 30px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--bg-cream);
  text-align: left;
  transition: background 0.2s;
}
.paso-block:hover { background: var(--bg-paper); }
.paso-num {
  font-family: var(--font-display);
  font-size: 56px;
  font-weight: 900;
  color: var(--accent);
  line-height: 1;
  display: block;
  margin-bottom: 18px;
}
.paso-title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text-ink);
}
.paso-text {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--text-mid);
}

.cita-zone {
  position: relative;
  padding: clamp(80px, 12vh, 140px) 0;
  overflow: hidden;
}
.cita-bg-split {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, var(--bg-cream) 0%, var(--bg-cream) 50%, var(--bg-warm) 50%, var(--bg-warm) 100%);
  z-index: 0;
}
.cita-shell {
  position: relative;
  z-index: 2;
  max-width: 920px;
  margin: 0 auto;
  padding: 0 var(--pad-x);
}
.cita-card {
  background: var(--bg-cream);
  padding: clamp(40px, 6vw, 70px);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  text-align: center;
  position: relative;
  border: 1px solid var(--line);
}
.cita-quote-mark {
  display: inline-flex;
  width: 60px; height: 60px;
  align-items: center; justify-content: center;
  background: var(--accent);
  color: var(--bg-cream);
  border-radius: 50%;
  margin-bottom: 26px;
}
.cita-quote-mark .material-icons { font-size: 32px; }
.cita-text {
  font-family: var(--font-display);
  font-size: clamp(19px, 2.4vw, 26px);
  line-height: 1.5;
  color: var(--text-ink);
  font-style: italic;
  font-weight: 400;
  text-align: justify;
  margin-bottom: 30px;
}
.cita-author-row {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}
.cita-author-name {
  font-weight: 700;
  font-size: 16px;
  color: var(--text-ink);
}
.cita-author-role {
  font-size: 13.5px;
  color: var(--text-mid);
}

.numeros-zone {
  background: var(--bg-dark);
  padding: clamp(60px, 9vh, 110px) 0;
  position: relative;
}
.numeros-zone::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--accent);
}
.numeros-shell {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--pad-x);
  display: grid;
  grid-template-columns: 33% 1fr;
  gap: clamp(30px, 5vw, 70px);
  align-items: center;
}
.numeros-text {
  border-left: 4px solid var(--accent);
  padding-left: 24px;
}
.numeros-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.numero-item {
  text-align: left;
  padding: 20px 16px;
  border: 2px solid var(--line-dark);
  border-radius: var(--radius-md);
  background: var(--bg-deep);
}
.numero-big {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(36px, 4.5vw, 56px);
  font-weight: 900;
  color: var(--accent-soft);
  line-height: 1;
  letter-spacing: -0.02em;
}
.numero-label {
  display: block;
  margin-top: 10px;
  font-size: 13px;
  color: var(--text-light-mid);
  line-height: 1.4;
}

.contacto-zone {
  padding: clamp(80px, 12vh, 140px) 0;
  background: var(--bg-paper);
}
.contacto-grid {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--pad-x);
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}
.contacto-data-list {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.contacto-data-list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  font-size: 15px;
  color: var(--text-ink);
}
.contacto-data-list .material-icons {
  color: var(--accent);
  font-size: 22px;
  margin-top: 2px;
}
.contacto-data-list a:hover { color: var(--accent); }

.contacto-form-wrap {
  background: var(--bg-cream);
  padding: clamp(28px, 4vw, 44px);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--line);
}
.cafetech-form { display: flex; flex-direction: column; gap: 18px; }
.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.field-block { display: flex; flex-direction: column; gap: 6px; }
.field-block-full { grid-column: 1 / -1; }
.field-block label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-ink);
  letter-spacing: 0.02em;
}
.field-block input,
.field-block textarea {
  padding: 13px 14px;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--bg-cream);
  color: var(--text-ink);
  font-size: 15px;
  transition: border-color 0.15s;
  font-family: var(--font-body);
}
.field-block textarea { resize: vertical; min-height: 130px; }
.field-block input:focus,
.field-block textarea:focus {
  outline: 0;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(212, 63, 26, 0.16);
}
.field-error {
  font-size: 12.5px;
  color: #B23A1A;
  min-height: 14px;
}
.field-honey {
  position: absolute;
  left: -9999px;
  width: 1px; height: 1px;
  overflow: hidden;
}
.consent-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13.5px;
  color: var(--text-mid);
  font-weight: 400;
  cursor: pointer;
  line-height: 1.5;
}
.consent-row input { margin-top: 3px; flex-shrink: 0; }
.consent-row a {
  color: var(--accent-deep);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.form-submit-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 28px;
  background: var(--text-ink);
  color: var(--bg-cream);
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-weight: 600;
  transition: background 0.18s;
  align-self: flex-start;
}
.form-submit-btn:hover:not(:disabled) { background: var(--accent); }
.form-submit-btn:disabled { opacity: 0.6; cursor: wait; }
.form-submit-btn.btn-loading .btn-label::after {
  content: '…';
  animation: loadingDots 1.2s infinite;
}
@keyframes loadingDots {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 1; }
}

.form-status-line {
  font-size: 13.5px;
  color: var(--text-mid);
  min-height: 18px;
}

.site-bottom {
  background: var(--bg-dark);
  color: var(--text-light);
  padding: 70px 0 0;
}
.bottom-shell {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--pad-x);
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.4fr;
  gap: 50px;
  padding-bottom: 50px;
}
.brand-mark-light .brand-icon {
  background: var(--accent);
  color: var(--bg-dark);
}
.brand-mark-light .brand-line-one { color: var(--text-light); }
.brand-mark-light .brand-line-two { color: var(--text-light-mid); }

.bottom-tagline {
  margin-top: 18px;
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-light-mid);
  max-width: 320px;
}
.bottom-h4 {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 18px;
  color: var(--text-light);
}
.bottom-list { display: flex; flex-direction: column; gap: 10px; }
.bottom-list a {
  font-size: 14px;
  color: var(--text-light-mid);
  transition: color 0.15s;
}
.bottom-list a:hover { color: var(--accent-soft); }
.bottom-contact {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-light-mid);
  margin-bottom: 12px;
}
.bottom-contact a:hover { color: var(--accent-soft); }

.bottom-rule {
  border-top: 1px solid var(--line-dark);
  padding: 26px var(--pad-x);
  text-align: center;
}
.bottom-copy {
  font-size: 13px;
  color: var(--text-light-mid);
  max-width: var(--maxw);
  margin: 0 auto;
}

.cookie-bar {
  position: fixed;
  bottom: 18px;
  left: 18px;
  right: 18px;
  z-index: 90;
  background: var(--bg-dark);
  color: var(--text-light);
  padding: 22px 26px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--line-dark);
}
.cookie-bar-inner {
  display: flex;
  align-items: center;
  gap: 28px;
  max-width: var(--maxw);
  margin: 0 auto;
  flex-wrap: wrap;
}
.cookie-bar-text { flex: 1; min-width: 240px; }
.cookie-bar-title {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 6px;
}
.cookie-bar-text p {
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--text-light-mid);
}
.cookie-bar-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.ck-btn {
  padding: 11px 20px;
  font-size: 13.5px;
  font-weight: 600;
  border-radius: var(--radius-sm);
  transition: all 0.15s;
  border: 1.5px solid transparent;
}
.ck-btn-ghost {
  background: transparent;
  color: var(--text-light);
  border-color: var(--line-dark);
}
.ck-btn-ghost:hover { border-color: var(--accent-soft); color: var(--accent-soft); }
.ck-btn-solid {
  background: var(--accent);
  color: var(--bg-cream);
}
.ck-btn-solid:hover { background: var(--accent-soft); }

.cookie-modal,
.success-popup {
  position: fixed;
  inset: 0;
  z-index: 95;
  background: rgba(12, 16, 24, 0.72);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 22px;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.cookie-modal-card {
  background: var(--bg-cream);
  width: 100%;
  max-width: 560px;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  max-height: 90vh;
  display: flex;
  flex-direction: column;
}
.cookie-modal-head {
  padding: 24px 28px;
  border-bottom: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.cookie-modal-head h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--text-ink);
}
.cookie-close, .success-close {
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  color: var(--text-mid);
  transition: background 0.15s;
}
.cookie-close:hover, .success-close:hover { background: var(--bg-paper); color: var(--text-ink); }

.cookie-modal-body {
  padding: 24px 28px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.ck-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line-soft);
}
.ck-row:last-child { border-bottom: 0; }
.ck-row-text { flex: 1; }
.ck-row-text h4 {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--text-ink);
}
.ck-row-text p {
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--text-mid);
}

.ck-switch {
  position: relative;
  width: 46px; height: 26px;
  flex-shrink: 0;
  margin-top: 2px;
}
.ck-switch input { opacity: 0; width: 0; height: 0; }
.ck-slider {
  position: absolute;
  inset: 0;
  background: var(--line);
  border-radius: 26px;
  cursor: pointer;
  transition: background 0.2s;
}
.ck-slider::before {
  content: '';
  position: absolute;
  width: 20px; height: 20px;
  background: var(--bg-cream);
  border-radius: 50%;
  top: 3px; left: 3px;
  transition: transform 0.2s;
}
.ck-switch input:checked + .ck-slider { background: var(--accent); }
.ck-switch input:checked + .ck-slider::before { transform: translateX(20px); }
.ck-switch-locked .ck-slider { background: var(--leaf); cursor: not-allowed; opacity: 0.7; }
.ck-switch-locked input:checked + .ck-slider::before { transform: translateX(20px); }

.cookie-modal-foot {
  padding: 22px 28px;
  border-top: 1px solid var(--line);
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
  background: var(--bg-paper);
}

.success-card {
  background: var(--bg-cream);
  width: 100%;
  max-width: 460px;
  border-radius: var(--radius-md);
  padding: 50px 36px 38px;
  text-align: center;
  position: relative;
  box-shadow: var(--shadow-lg);
}
.success-close {
  position: absolute;
  top: 14px; right: 14px;
}
.success-icon {
  display: inline-flex;
  width: 76px; height: 76px;
  align-items: center; justify-content: center;
  background: var(--leaf);
  color: var(--bg-cream);
  border-radius: 50%;
  margin-bottom: 24px;
}
.success-icon .material-icons { font-size: 42px; }
.success-card h3 {
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 700;
  color: var(--text-ink);
  margin-bottom: 14px;
}
.success-card p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-mid);
  margin-bottom: 28px;
}
.success-ok { padding: 13px 30px; }

@media (max-width: 1024px) {
  .top-shell { gap: 14px; }
  .primary-nav {
    position: fixed;
    top: 70px;
    left: 0; right: 0;
    background: var(--bg-cream);
    flex-direction: column;
    align-items: stretch;
    padding: 18px var(--pad-x) 28px;
    border-bottom: 1px solid var(--line);
    transform: translateY(-130%);
    transition: transform 0.25s;
    z-index: 50;
    gap: 0;
  }
  .primary-nav.nav-open { transform: translateY(0); }
  .nav-link { padding: 14px 0; border-bottom: 1px solid var(--line-soft); }
  .nav-cta { margin-left: 0; margin-top: 12px; text-align: center; }
  .nav-toggle { display: inline-flex; }

  .hero-grid { grid-template-columns: 1fr; gap: 36px; }
  .hero-bg-piece { width: 80%; right: -16%; top: auto; bottom: -12%; opacity: 0.45; }
  .hero-col-c { padding-top: 0; }

  .aboutus-trio { grid-template-columns: 1fr; }
  .aboutus-card:nth-child(2) { transform: none; }

  .proc-intro-grid,
  .services-grid {
    grid-template-columns: 1fr;
  }
  .proc-intro-bg, .services-bg-half {
    background: var(--bg-warm);
  }
  .proc-intro-text,
  .services-text {
    align-items: stretch;
  }
  .align-right { text-align: left; }
  .link-arrow.align-right { align-self: flex-start; }

  .equipos-pair-a, .equipos-pair-b {
    grid-template-columns: 1fr;
  }
  .equipos-pair-b { grid-template-areas: "image" "info"; }
  .equipos-pair-b .equipos-info-wrap { order: 2; }

  .catalogo-grid { grid-template-columns: 1fr; }
  .catalogo-side { position: static; }

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

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

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

  .bottom-shell { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 640px) {
  body { font-size: 15px; }
  .hero-zone { min-height: auto; padding: 50px 0 70px; }
  .hero-zone::before {
    background: linear-gradient(180deg, var(--bg-cream) 0%, var(--bg-warm) 100%);
  }
  .big-headline { font-size: clamp(34px, 9vw, 50px); }
  .hero-cta-row { flex-direction: column; align-items: stretch; }
  .btn-primary, .btn-ghost { justify-content: center; }

  .field-row { grid-template-columns: 1fr; }
  .pasos-quad { grid-template-columns: 1fr; }
  .numeros-row { grid-template-columns: 1fr 1fr; gap: 12px; }
  .bottom-shell { grid-template-columns: 1fr; gap: 36px; }

  .catalogo-item-head { flex-direction: column; gap: 6px; }
  .catalogo-meta { gap: 14px; }

  .cookie-bar { left: 10px; right: 10px; bottom: 10px; padding: 18px 18px; }
  .cookie-bar-inner { gap: 16px; }
  .cookie-bar-actions { width: 100%; }
  .cookie-bar-actions .ck-btn { flex: 1; min-width: 90px; }

  .cita-text { text-align: left; }
  .equipos-pair-a, .equipos-pair-b { padding: 28px 22px; }
  .circle-border-img { max-width: 240px; outline-offset: 8px; border-width: 6px; }
}
.pr-hero {
  padding: clamp(60px, 9vh, 110px) 0;
  background: var(--bg-cream);
  position: relative;
  overflow: hidden;
}
.pr-hero-grid {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--pad-x);
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
.pr-hero-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.pr-hero-title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(38px, 5.4vw, 70px);
  line-height: 1.0;
  letter-spacing: -0.025em;
  color: var(--text-ink);
  margin: 8px 0 28px;
}
.pr-hero-title em {
  font-style: italic;
  font-weight: 400;
  color: var(--accent-deep);
}
.pr-hero-body {
  font-size: 16.5px;
  line-height: 1.7;
  color: var(--text-mid);
  margin-bottom: 36px;
  max-width: 540px;
}
.pr-hero-visual {
  position: relative;
  aspect-ratio: 4 / 5;
  max-width: 480px;
  margin-left: auto;
  width: 100%;
}
.pr-hero-img-a {
  position: absolute;
  top: 0;
  right: 0;
  width: 78%;
  aspect-ratio: 5 / 4;
  object-fit: cover;
  border-radius: 6px;
  box-shadow: var(--shadow-md);
}
.pr-hero-img-b {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 72%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 6px;
  border: 8px solid var(--bg-cream);
  box-shadow: var(--shadow-lg);
}

.pr-process {
  padding: clamp(80px, 11vh, 130px) 0;
  position: relative;
}
.pr-process-img-left { background: var(--bg-cream); }
.pr-process-img-right { background: var(--bg-paper); }

.pr-process-row {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--pad-x);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 90px);
  align-items: center;
}
.pr-process-img-side {
  position: relative;
  z-index: 1;
}
.pr-process-img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 4px;
  box-shadow: var(--shadow-md);
}
.pr-process-num {
  position: absolute;
  top: -36px;
  left: -32px;
  font-family: var(--font-display);
  font-size: clamp(80px, 11vw, 160px);
  font-weight: 900;
  color: var(--accent);
  line-height: 1;
  letter-spacing: -0.05em;
  z-index: 3;
  pointer-events: none;
}
.pr-process-img-right .pr-process-num {
  left: auto;
  right: -32px;
}
.pr-process-content {
  display: flex;
  flex-direction: column;
}
.pr-process-lead {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(20px, 2.2vw, 24px);
  color: var(--accent-deep);
  margin-bottom: 22px;
  line-height: 1.35;
}
.pr-spec-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin-top: 28px;
  border-top: 1px solid var(--line);
}
.pr-spec-list li {
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.pr-spec-list li:nth-child(odd) {
  padding-right: 22px;
  border-right: 1px solid var(--line);
}
.pr-spec-list li:nth-child(even) {
  padding-left: 22px;
}
.pr-spec-label {
  font-size: 11.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-soft);
  font-weight: 600;
}
.pr-spec-value {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-ink);
  font-variant-numeric: tabular-nums;
}

.pr-cta-zone {
  background: var(--bg-dark);
  padding: clamp(80px, 12vh, 140px) 0;
  text-align: center;
  position: relative;
}
.pr-cta-zone::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--accent);
}
.pr-cta-shell {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 var(--pad-x);
  display: flex;
  flex-direction: column;
  align-items: center;
}
.pr-cta-text {
  font-size: 17px;
  line-height: 1.65;
  color: var(--text-light-mid);
  margin: 0 auto 36px;
  max-width: 580px;
}

.legal-hero {
  background: var(--bg-paper);
  padding: clamp(80px, 12vh, 140px) 0 clamp(50px, 8vh, 90px);
  border-bottom: 1px solid var(--line);
}
.legal-hero-shell {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 var(--pad-x);
}
.legal-h1 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(40px, 6.4vw, 72px);
  line-height: 1.0;
  letter-spacing: -0.025em;
  color: var(--text-ink);
  margin: 18px 0 22px;
}
.legal-lead {
  font-size: 18px;
  line-height: 1.6;
  color: var(--text-mid);
  max-width: 640px;
}

.legal-body {
  padding: clamp(60px, 9vh, 100px) 0 clamp(80px, 12vh, 130px);
  background: var(--bg-cream);
}
.legal-body-shell {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 var(--pad-x);
}
.legal-article h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(22px, 2.6vw, 28px);
  letter-spacing: -0.01em;
  color: var(--text-ink);
  margin: 44px 0 16px;
  padding-top: 18px;
  position: relative;
}
.legal-article h2::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 56px;
  height: 2px;
  background: var(--accent);
}
.legal-article > h2:first-child {
  margin-top: 0;
}
.legal-article p {
  font-size: 16px;
  line-height: 1.78;
  color: var(--text-ink);
  margin-bottom: 16px;
}

@media (max-width: 1024px) {
  .pr-hero-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .pr-hero-visual {
    aspect-ratio: 5 / 4;
    max-width: 520px;
    margin: 0 auto;
  }
  .pr-process-row {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .pr-process-content {
    order: 2;
  }
  .pr-process-img-side {
    order: 1;
  }
  .pr-process-img-right .pr-process-num {
    left: -20px;
    right: auto;
  }
  .pr-process-num {
    font-size: clamp(70px, 14vw, 110px);
    top: -22px;
    left: -10px;
  }
  .pr-process-img {
    aspect-ratio: 5 / 4;
    max-width: 580px;
    margin: 0 auto;
  }
}

@media (max-width: 640px) {
  .pr-spec-list {
    grid-template-columns: 1fr;
  }
  .pr-spec-list li:nth-child(odd) {
    padding-right: 0;
    border-right: 0;
  }
  .pr-spec-list li:nth-child(even) {
    padding-left: 0;
  }
  .pr-process-num,
  .pr-process-img-right .pr-process-num {
    top: -6px;
    left: 4px;
    right: auto;
    font-size: clamp(56px, 14vw, 78px);
  }
  .legal-article h2 {
    margin-top: 32px;
  }
}