:root {
  --olive-950: #101915;
  --olive-900: #18241d;
  --olive-800: #24342b;
  --olive-700: #385142;
  --olive-600: #58705f;
  --sand-50: #f8f5ee;
  --sand-100: #f1ece2;
  --sand-200: #e5dccf;
  --sand-300: #d4c2ab;
  --sand-500: #b78f64;
  --clay-500: #b66e42;
  --ink-900: #1c211d;
  --text-muted: #66716b;
  --white-72: rgba(255, 255, 255, 0.72);
  --white-16: rgba(255, 255, 255, 0.16);
  --shadow-soft: 0 28px 70px rgba(18, 27, 22, 0.12);
  --shadow-strong: 0 34px 80px rgba(16, 25, 21, 0.24);
  --radius-xl: 2rem;
  --radius-lg: 1.5rem;
  --font-sans: "Manrope", "Segoe UI", sans-serif;
  --font-serif: "Cormorant Garamond", Georgia, serif;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 6rem;
}

body {
  font-family: var(--font-sans);
  color: var(--ink-900);
  overflow-x: hidden;
  background:
    radial-gradient(circle at top left, rgba(229, 220, 207, 0.45), transparent 36%),
    linear-gradient(180deg, #fcfaf6 0%, #f7f3ec 100%);
}

img {
  display: block;
}

.section-spacing {
  padding: 6rem 0;
}

.section-surface {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.65) 0%, rgba(244, 238, 228, 0.85) 100%);
}

.section-kicker,
.eyebrow {
  display: inline-block;
  margin-bottom: 0.85rem;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.section-kicker {
  color: var(--sand-500);
}

.eyebrow {
  color: rgba(255, 255, 255, 0.72);
}

.section-title,
.hero-title {
  font-family: var(--font-serif);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 0.95;
}

.section-title {
  max-width: 14ch;
  font-size: clamp(2.4rem, 4vw, 4.2rem);
  margin-bottom: 1.25rem;
}

.section-copy {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-muted);
}

.services-heading .section-kicker,
.services-heading .section-title,
.services-heading .section-copy {
  max-width: 54rem;
  margin-left: auto;
  margin-right: auto;
}

.services-heading .section-kicker {
  display: block;
}

.empresa-heading .section-kicker,
.empresa-heading .section-title,
.empresa-heading .section-copy {
  max-width: 54rem;
  margin-left: auto;
  margin-right: auto;
}

.empresa-heading .section-kicker {
  display: block;
}

.empresa-heading .section-title {
  font-size: clamp(1.55rem, 2.8vw, 2rem);
  font-weight: 500;
  line-height: 1.45;
}

.equipo-heading .section-kicker,
.equipo-heading .section-title,
.equipo-heading .section-copy {
  max-width: 54rem;
  margin-left: auto;
  margin-right: auto;
}

.equipo-heading .section-kicker {
  display: block;
}

.certificaciones-heading .section-kicker,
.certificaciones-heading .section-title {
  max-width: 54rem;
  margin-left: auto;
  margin-right: auto;
}

.certificaciones-heading .section-kicker {
  display: block;
}

.site-navbar {
  padding: 1rem 0;
  background: linear-gradient(180deg, rgba(11, 16, 14, 0.64) 0%, rgba(11, 16, 14, 0.18) 100%);
  backdrop-filter: blur(12px);
}

.site-navbar .nav-link {
  font-size: 0.92rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
}

.site-navbar .nav-link:hover,
.site-navbar .nav-link:focus {
  color: #fff;
}

.site-navbar .navbar-toggler {
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
}

.site-navbar .navbar-toggler-icon {
  display: inline-block;
  width: 1.5rem;
  height: 1.5rem;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.92%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100%;
}

.brand-logo,
.footer-logo {
  width: 9rem;
  height: auto;
}

.hero-shell {
  position: relative;
  min-height: 100vh;
  background: var(--olive-950);
}

.hero-video-stage {
  position: relative;
  isolation: isolate;
  min-height: 100vh;
  overflow: hidden;
}

.hero-video-stage::before {
  position: absolute;
  inset: 0;
  z-index: 0;
  content: "";
  background: url("img/hero-video-poster.jpg") center / cover no-repeat;
}

.hero-video {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-video-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(90deg, rgba(13, 20, 18, 0.78) 0%, rgba(13, 20, 18, 0.36) 52%, rgba(13, 20, 18, 0.2) 100%),
    linear-gradient(0deg, rgba(13, 20, 18, 0.42) 0%, rgba(13, 20, 18, 0) 42%);
}

.hero-content {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  min-height: 100vh;
  padding: 8rem 0 5rem;
}

.hero-statement {
  position: relative;
  max-width: 58rem;
  padding-bottom: 1.45rem;
}

.hero-statement::after {
  position: absolute;
  left: 0;
  bottom: 0;
  width: min(12rem, 46vw);
  height: 3px;
  content: "";
  background: var(--sand-500);
}

.hero-title {
  max-width: 12ch;
  margin-bottom: 0;
  font-size: clamp(4rem, 7.5vw, 7rem);
  line-height: 0.88;
  text-shadow: 0 20px 55px rgba(0, 0, 0, 0.42);
  text-wrap: balance;
}

.hero-copy {
  max-width: 38rem;
  font-size: 1.12rem;
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.88) !important;
}

.hero-actions {
  margin-top: 2rem;
}

.btn-hero {
  min-height: 2.75rem;
  padding-top: 0.65rem;
  padding-bottom: 0.65rem;
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.hero-metrics {
  display: grid;
  gap: 1rem;
}

.metric-card {
  padding: 1.35rem 1.4rem;
  border: 1px solid var(--white-16);
  border-radius: 1.4rem;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
  color: #fff;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
}

.metric-card strong {
  display: block;
  line-height: 1.5;
}

.metric-label {
  display: inline-block;
  margin-bottom: 0.45rem;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.btn-brand {
  color: #fff;
  background: linear-gradient(135deg, var(--sand-500) 0%, var(--clay-500) 100%);
  border: 0;
  box-shadow: 0 18px 34px rgba(182, 110, 66, 0.25);
}

.btn-brand:hover,
.btn-brand:focus {
  color: #fff;
  background: linear-gradient(135deg, #c19869 0%, #c17749 100%);
}

.service-card,
.editorial-card,
.team-card,
.certification-card,
.standard-card,
.form-card,
.team-summary {
  border: 0;
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.service-card-corporate {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.9) 0%, rgba(246, 243, 237, 0.95) 100%);
}

.service-media,
.editorial-image,
.team-image {
  overflow: hidden;
}

.service-media img,
.editorial-image,
.team-image {
  width: 100%;
  height: 23rem;
  object-fit: cover;
}

.service-highlight {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  margin-top: -1.35rem;
  padding: 0 1.75rem;
}

.service-body,
.editorial-body,
.team-body,
.team-summary,
.standard-card,
.form-card {
  padding: 1.75rem;
}

.service-tag {
  display: inline-flex;
  align-items: center;
  padding: 0.45rem 0.75rem;
  margin-bottom: 1rem;
  border-radius: 999px;
  background: rgba(88, 112, 95, 0.12);
  color: var(--olive-700);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.service-tag-prominent {
  justify-content: center;
  width: auto;
  min-width: 17rem;
  max-width: 24rem;
  padding: 0.95rem 1.25rem;
  border-radius: 1.15rem;
  background: linear-gradient(135deg, rgba(24, 36, 29, 0.98) 0%, rgba(56, 81, 66, 0.96) 100%);
  color: #fff;
  box-shadow: 0 18px 36px rgba(16, 25, 21, 0.18);
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-align: center;
}

.service-body h3,
.editorial-body h3,
.team-body h3,
.standard-card h3,
.form-card h3 {
  margin-bottom: 0.9rem;
  font-size: 1.55rem;
  line-height: 1.2;
}

.service-body p,
.editorial-body p,
.team-body p,
.standard-card p,
.form-card p {
  color: var(--text-muted);
  line-height: 1.75;
}

.service-list {
  display: grid;
  gap: 0.8rem;
}

.service-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--olive-900);
  font-weight: 600;
}

.service-list i {
  color: var(--sand-500);
}

.service-cta {
  display: flex;
  justify-content: flex-end;
}

.agreement-banner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2rem;
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, var(--olive-900) 0%, var(--olive-700) 100%);
  color: #fff;
  box-shadow: var(--shadow-strong);
}

.agreement-banner h3 {
  font-size: 1.6rem;
}

.agreement-banner .btn {
  align-self: flex-start;
  margin-top: auto;
}

.market-card {
  padding: 2.2rem 2.4rem;
  border-radius: calc(var(--radius-xl) + 0.25rem);
  background:
    linear-gradient(135deg, rgba(182, 110, 66, 0.9) 0%, rgba(36, 52, 43, 0.94) 100%),
    url("img/fabrica.png") center/cover no-repeat;
  box-shadow: var(--shadow-strong);
}

.market-card-store {
  padding: 2.2rem 0 0 2.4rem;
  overflow: hidden;
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.12), transparent 30%),
    linear-gradient(135deg, rgba(182, 110, 66, 0.96) 0%, rgba(36, 52, 43, 0.98) 100%);
}

.market-card-row {
  height: 100%;
}

.market-card h2 {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 4vw, 4rem);
}

.market-copy {
  color: var(--white-72);
  font-size: 1.12rem;
}

.market-copy-secondary {
  max-width: 34rem;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1rem;
  line-height: 1.8;
}

.market-device-wrap {
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  width: 100%;
  height: 100%;
}

.market-device {
  max-width: 18.5rem;
  margin-right: 0;
  filter: drop-shadow(0 28px 40px rgba(16, 25, 21, 0.28));
}

.market-device-column {
  display: flex;
  align-items: flex-end;
  padding-right: 0;
}

.market-copy-column {
  padding-right: 1.5rem;
}

.showcase-frame {
  display: flex;
  flex-direction: column;
}

.plant-heading {
  margin-bottom: 3rem;
}

.plant-heading .section-title,
.plant-heading .section-kicker {
  max-width: 64rem;
  margin-left: auto;
  margin-right: auto;
}

.plant-heading .section-title {
  line-height: 1.08;
}

.plant-heading .section-kicker {
  display: block;
}

.showcase-main {
  width: 100%;
  border-radius: 2rem;
  object-fit: cover;
  box-shadow: var(--shadow-strong);
}

.showcase-cert-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 1rem;
  max-width: 24rem;
  padding: 1rem 1.1rem;
  border: 1px solid rgba(36, 52, 43, 0.08);
  border-radius: 1.4rem;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-soft);
}

.floating-badge {
  width: 3.8rem;
  height: 3.8rem;
  object-fit: cover;
  border-radius: 1rem;
}

.floating-label,
.info-card-label {
  display: inline-block;
  margin-bottom: 0.35rem;
  color: var(--sand-500);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.plant-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem 1.5rem;
  margin: 2rem 0 1.5rem;
}

.plant-points li {
  position: relative;
  padding-left: 1.15rem;
  color: var(--olive-900);
  font-weight: 700;
  line-height: 1.6;
}

.plant-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.68rem;
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 50%;
  background: var(--sand-500);
}

.info-card {
  padding: 1.35rem;
  border-radius: 1.35rem;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 20px 45px rgba(20, 27, 22, 0.08);
}

.info-card-content {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  align-items: flex-start;
}

.info-card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 1rem;
  background: rgba(183, 143, 100, 0.14);
  color: var(--sand-500);
  font-size: 1.2rem;
  flex-shrink: 0;
}

.info-card h3 {
  margin: 0 0 0.35rem;
  font-size: 1rem;
  line-height: 1.3;
}

.info-card p {
  color: var(--text-muted);
  line-height: 1.6;
}

.stack-list {
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
  max-width: 39rem;
}

.stack-item {
  display: flex;
  gap: 1rem;
  align-items: center;
  padding: 1rem 1.1rem;
  border-radius: 1.2rem;
  background: rgba(255, 255, 255, 0.75);
  box-shadow: 0 20px 44px rgba(20, 27, 22, 0.08);
  color: var(--olive-900);
  font-weight: 600;
}

.stack-item i,
.rrhh-note i,
.contact-point i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.8rem;
  height: 2.8rem;
  border-radius: 1rem;
  background: rgba(183, 143, 100, 0.14);
  color: var(--sand-500);
  font-size: 1.15rem;
  flex-shrink: 0;
}

.anelo-card {
  position: relative;
  max-width: 31rem;
  margin-left: auto;
  padding: 1.1rem;
  border-radius: 2rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.78) 0%, rgba(237, 234, 225, 0.92) 100%);
  box-shadow: var(--shadow-soft);
}

.anelo-card::before {
  position: absolute;
  inset: 2.6rem -1.15rem -1.15rem 2.6rem;
  z-index: -1;
  content: "";
  border-radius: 2rem;
  background: rgba(183, 143, 100, 0.16);
}

.anelo-card img,
.anelo-video {
  width: 100%;
  border-radius: 1.5rem;
}

.anelo-video {
  display: block;
  aspect-ratio: 464 / 554;
  height: auto;
  object-fit: cover;
}

.anelo-badge {
  position: absolute;
  left: 2rem;
  bottom: 2rem;
  padding: 1rem 1.2rem;
  border-radius: 1.2rem;
  background: rgba(16, 25, 21, 0.9);
  color: #fff;
}

.anelo-badge span {
  display: block;
  margin-bottom: 0.2rem;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.team-summary {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.team-list {
  display: grid;
  gap: 0.85rem;
}

.team-list li {
  padding-left: 1.2rem;
  position: relative;
  color: var(--olive-900);
  font-weight: 600;
}

.team-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65rem;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: var(--sand-500);
}

.certification-label {
  display: block;
  margin-bottom: 0.45rem;
  color: var(--sand-500);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.certification-layout {
  margin-top: 1rem;
}

.certification-card-horizontal {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  overflow: hidden;
  border-radius: 1.85rem;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-soft);
}

.certification-visual {
  height: 100%;
  overflow: hidden;
  position: relative;
}

.certification-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(16, 25, 21, 0.04) 0%, rgba(16, 25, 21, 0) 42%);
}

.certification-visual-image {
  width: 100%;
  height: 100%;
  min-height: 20rem;
  object-fit: cover;
}

.certification-proof-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  padding: 2.2rem 2.35rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92) 0%, rgba(248, 245, 238, 0.98) 100%);
}

.certification-proof-head {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.3rem;
}

.certification-logo {
  width: 100%;
  max-width: 5.8rem;
  flex-shrink: 0;
}

.certification-proof-card h3 {
  margin: 0;
  font-size: 1.7rem;
  line-height: 1.15;
}

.certification-proof-copy {
  margin-bottom: 1rem;
  color: var(--text-muted);
  line-height: 1.8;
}

.certification-proof-note {
  color: var(--olive-900);
  font-weight: 600;
  line-height: 1.7;
}

.certification-proof-cta {
  display: flex;
  justify-content: flex-end;
  margin-top: 1.5rem;
}

.quote-card {
  margin-top: 2rem;
  padding: 1.75rem;
  border-left: 4px solid var(--sand-500);
  border-radius: 0 1.4rem 1.4rem 0;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: var(--shadow-soft);
  font-family: var(--font-serif);
  font-size: 1.55rem;
  line-height: 1.35;
}

.training-accordion .accordion-item {
  margin-bottom: 1rem;
  border: 0;
  border-radius: 1.4rem;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 22px 50px rgba(20, 27, 22, 0.08);
}

.training-accordion .accordion-button {
  padding: 1.25rem 1.4rem;
  background: rgba(255, 255, 255, 0.92);
  color: var(--olive-900);
  font-weight: 800;
  box-shadow: none;
}

.training-accordion .accordion-button:not(.collapsed) {
  color: var(--olive-900);
  background: rgba(229, 220, 207, 0.4);
}

.training-accordion .accordion-body {
  color: var(--text-muted);
  line-height: 1.8;
}

.rrhh-note {
  display: flex;
  gap: 1rem;
  padding: 1.25rem;
  border-radius: 1.4rem;
  background: rgba(255, 255, 255, 0.8);
  box-shadow: var(--shadow-soft);
}

.rrhh-note strong {
  display: block;
  margin-bottom: 0.35rem;
}

.form-card {
  padding: 2rem;
}

.form-control,
.form-select {
  min-height: 3.2rem;
  border-color: rgba(36, 52, 43, 0.12);
  border-radius: 1rem;
  background-color: rgba(255, 255, 255, 0.9);
}

.form-control:focus,
.form-select:focus {
  border-color: rgba(183, 143, 100, 0.55);
  box-shadow: 0 0 0 0.25rem rgba(183, 143, 100, 0.16);
}

/* CV upload area */
.cv-upload-input {
  display: none;
}
.cv-upload-area {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  width: 100%;
  min-height: 3.2rem;
  padding: 0.65rem 1rem;
  border: 1px solid rgba(36, 52, 43, 0.12);
  border-radius: 1rem;
  background-color: rgba(255, 255, 255, 0.9);
  cursor: pointer;
  transition: border-color 0.2s, box-shadow 0.2s;
  margin-bottom: 0;
}
.cv-upload-area:hover {
  border-color: rgba(183, 143, 100, 0.55);
  box-shadow: 0 0 0 0.25rem rgba(183, 143, 100, 0.16);
}
.cv-upload-icon {
  font-size: 1.35rem;
  color: var(--sand-500);
  flex-shrink: 0;
}
.cv-upload-text {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.3;
}
.cv-upload-hint {
  display: block;
  font-size: 0.75rem;
  color: rgba(102, 113, 107, 0.7);
}

.contact-section {
  padding-top: 0;
  background:
    radial-gradient(circle at top right, rgba(183, 143, 100, 0.22), transparent 32%),
    linear-gradient(135deg, var(--olive-950) 0%, var(--olive-800) 100%);
}

.contact-wrapper {
  width: 100%;
  padding: 4.5rem 0;
}

.contact-heading {
  margin-bottom: 2.75rem;
}

.contact-heading .section-kicker,
.contact-heading .section-title,
.contact-heading .section-copy {
  max-width: 54rem;
  margin-left: auto;
  margin-right: auto;
}

.contact-heading .section-kicker {
  display: block;
}

.contact-subtitle {
  color: rgba(255, 255, 255, 0.82) !important;
}

.form-card-dark {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: none;
}

.form-card-dark .form-control,
.form-card-dark .form-select {
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.92);
}

.presupuesto-cta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2rem;
  padding: 2.5rem 3rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-xl);
  width: 100%;
}

.presupuesto-cta-text {
  font-size: 1.1rem;
  color: var(--white-72);
  line-height: 1.6;
  margin: 0;
}

.presupuesto-btn {
  font-size: 1rem;
}

.contact-points {
  display: grid;
  gap: 1rem;
  margin: 2rem 0;
}

.contact-point {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: rgba(255, 255, 255, 0.8);
}

.contact-primary {
  display: grid;
  gap: 2rem;
  margin: 0;
}

.contact-primary-item {
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.contact-primary-label {
  display: inline-block;
  margin-bottom: 0.75rem;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.contact-primary-value {
  color: #fff;
  font-size: clamp(1rem, 1.4vw, 1.25rem);
  font-weight: 600;
  line-height: 1.4;
}

.contact-primary-value a {
  color: inherit;
  text-decoration: none;
}

.contact-title {
  max-width: none;
}

.contact-heading .section-copy {
  max-width: none;
}

.contact-illustration {
  max-width: 18rem;
}

@media (max-width: 991.98px) {
  .site-navbar {
    background: rgba(11, 16, 14, 0.88);
  }

  .site-navbar .navbar-toggler {
    position: absolute;
    top: 1rem;
    right: 1rem;
    z-index: 5;
    display: inline-flex !important;
  }

  .site-navbar .navbar-collapse {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 1.2rem;
    background: rgba(255, 255, 255, 0.06);
  }

  .hero-content {
    align-items: flex-end;
  }

  .hero-statement {
    max-width: 34rem;
  }

  .hero-title {
    font-size: clamp(2.65rem, 11.5vw, 4.2rem);
  }

  .section-title {
    max-width: none;
  }

  .showcase-cert-card,
  .anelo-badge {
    position: static;
    margin-top: 1rem;
  }

  .anelo-card {
    max-width: 32rem;
    margin-right: auto;
  }

  .contact-wrapper {
    padding: 3rem 0;
  }

  .market-card-store {
    padding: 2rem;
  }

  .market-copy-column,
  .market-device-column {
    padding-right: calc(var(--bs-gutter-x) * 0.5);
  }

  .market-device-wrap {
    justify-content: center;
  }

  .plant-points {
    grid-template-columns: 1fr;
  }

  .certification-card-horizontal {
    grid-template-columns: 1fr;
  }

  .certification-proof-card {
    padding: 1.6rem;
  }

  .certification-visual-image {
    min-height: 15rem;
  }

  .certification-proof-head {
    align-items: flex-start;
  }
}

@media (max-width: 767.98px) {
  .section-spacing {
    padding: 4.5rem 0;
  }

  .brand-logo,
  .footer-logo {
    width: 7.5rem;
  }

  .service-media img,
  .editorial-image,
  .team-image {
    height: 18rem;
  }

  .agreement-banner,
  .market-card,
  .contact-wrapper {
    padding: 1.5rem;
  }

  .quote-card {
    font-size: 1.3rem;
  }
}

/* Organigrama */
.org-section {
  border-top: 1px solid rgba(36, 52, 43, 0.1);
}

.org-heading {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 600;
  color: var(--olive-900);
  margin-bottom: 0;
}

.org-chart {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.org-root {
  position: relative;
  z-index: 1;
  margin-bottom: 3.5rem;
}

.org-root::after {
  content: "";
  position: absolute;
  bottom: -3.5rem;
  left: 50%;
  width: 2px;
  height: 3.5rem;
  background: var(--sand-300);
  transform: translateX(-50%);
}

.org-node-root {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 1.1rem 3rem;
  border-radius: 1.2rem;
  background: linear-gradient(135deg, var(--olive-900), var(--olive-700));
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  box-shadow: var(--shadow-strong);
}

.org-node-root i {
  font-size: 1.4rem;
  color: var(--sand-500);
}

.org-branches {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  width: 100%;
  padding-top: 3.5rem;
  margin-top: 0;
}

.org-branches::before {
  content: "";
  position: absolute;
  top: 0;
  left: calc(100% / 6);
  right: calc(100% / 6);
  height: 2px;
  background: var(--sand-300);
}

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

.org-branches-4::before {
  left: calc(100% / 8);
  right: calc(100% / 8);
}

.org-branch {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.85rem;
}

.org-branch::before {
  content: "";
  position: absolute;
  top: -3.5rem;
  left: 50%;
  width: 2px;
  height: 3.5rem;
  background: var(--sand-300);
  transform: translateX(-50%);
}

.org-node-branch {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 1rem;
  width: 100%;
  border-radius: 1.1rem;
  background: rgba(255, 255, 255, 0.9);
  color: var(--olive-900);
  font-weight: 700;
  font-size: 0.92rem;
  text-align: center;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(183, 143, 100, 0.2);
}

.org-node-branch i {
  font-size: 1.3rem;
  color: var(--sand-500);
}

.org-leaves {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  width: 100%;
}

.org-leaf {
  padding: 0.6rem 0.85rem;
  border-radius: 0.85rem;
  background: rgba(255, 255, 255, 0.55);
  color: var(--olive-700);
  font-size: 0.83rem;
  font-weight: 600;
  text-align: center;
  border: 1px solid rgba(183, 143, 100, 0.12);
}

@media (max-width: 991.98px) {
  .org-branches,
  .org-branches-4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .org-branches::before,
  .org-branches-4::before,
  .org-branch::before,
  .org-root::after {
    display: none;
  }
}

@media (max-width: 575.98px) {
  .org-branches,
  .org-branches-4 {
    grid-template-columns: 1fr;
  }
}

/* Clientes */
.clientes-section {
  background: #fff;
}

.clientes-section .section-title {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  max-width: none;
  white-space: nowrap;
}

.clientes-track-wrap {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
}

.clientes-track {
  display: flex;
  width: max-content;
  animation: scroll-logos 90s linear infinite;
}

.clientes-logos {
  display: flex;
  align-items: center;
  gap: 3rem;
  padding: 0 1.5rem;
}

.clientes-logos img {
  height: 4.5rem;
  width: auto;
  max-width: 11rem;
  object-fit: contain;
  opacity: 0.85;
  transition: opacity 0.2s;
}

.clientes-logos img:hover {
  opacity: 1;
}

@keyframes scroll-logos {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* Habilitaciones */
.section-habilitaciones {
  background: linear-gradient(135deg, var(--olive-950) 0%, var(--olive-800) 100%);
}

.hab-col {
  padding: 4rem 3.5rem;
}

.hab-col-right {
  background: rgba(255, 255, 255, 0.04);
  border-left: 1px solid rgba(255, 255, 255, 0.08);
}

.hab-kicker {
  display: inline-block;
  margin-bottom: 0.85rem;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sand-500);
}

.hab-title {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  font-weight: 600;
  line-height: 1.15;
  color: #fff;
  margin-bottom: 0;
}

.hab-divider {
  width: 4rem;
  height: 2px;
  background: var(--sand-500);
  margin: 1.5rem 0;
}

.hab-intro {
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

.hab-list {
  display: grid;
  gap: 1rem;
}

.hab-list li {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.65;
}

.hab-list i {
  color: var(--sand-500);
  font-size: 1.1rem;
  flex-shrink: 0;
  margin-top: 0.2rem;
}

.hab-list-docs a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
  transition: color 0.18s;
}

.hab-list-docs a:hover {
  color: var(--sand-500);
}

@media (max-width: 767.98px) {
  .hab-col {
    padding: 3rem 1.5rem;
  }

  .hab-col-right {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }
}
