:root {
  --bg: #07111d;
  --bg2: #0a1625;
  --bg3: #0A0F1A;
  --gold: #B18A57;
  --gold2: #C09E58;
  --text: #E6DBC0;
  --white: #f8f0e3;
  --muted: #c9bdab;
  --line: rgba(177, 138, 87, 0.24);
  --card: rgba(255, 255, 255, 0.035);
  --serif: 'Cormorant Garamond', serif;
  --sans: 'Manrope', sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  overflow-x: hidden;
}

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

button,
input,
textarea,
select {
  font-family: inherit;
}

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  min-height: 86px;
  padding: 22px 5.5vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: 0.35s ease;
}

.site-header.scrolled {
  background: rgba(7, 17, 29, 0.9);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
  min-height: 68px;
  padding-top: 14px;
  padding-bottom: 14px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--gold2);
}

.brand-icon {
  font-size: 38px;
  line-height: 1;
}

.brand-name {
  font-family: var(--serif);
  font-size: 31px;
  font-weight: 700;
  line-height: 0.76;
  letter-spacing: 1px;
}

.main-nav {
  display: flex;
  gap: 38px;
}

.main-nav a {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #efe7d9;
  opacity: 0.9;
}

.main-nav a:hover {
  color: var(--gold2);
}

.header-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.header-cta {
  border: 1px solid var(--gold);
  color: var(--gold2);
  padding: 11px 18px;
  text-transform: uppercase;
  letter-spacing: 1.8px;
  font-size: 10px;
  font-weight: 800;
}

.lang {
  border-right: 1px solid var(--line);
  padding-right: 18px;
  font-size: 12px;
  letter-spacing: 2px;
}

.menu-btn {
  display: none;
  width: 34px;
  background: transparent;
  border: 0;
  cursor: pointer;
}

.menu-btn span {
  display: block;
  height: 2px;
  margin: 7px 0;
  background: var(--gold);
}

.page-section {
  position: relative;
  overflow: hidden;
}

.section-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(5, 8, 15, 0.08) 0%,
    rgba(5, 8, 15, 0.18) 55%,
    rgba(5, 8, 15, 0.75) 100%
  );
  pointer-events: none;
}

.eyebrow {
  display: block;
  color: var(--gold2);
  text-transform: uppercase;
  letter-spacing: 4px;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 25px;
}

h1,
h2,
h3 {
  font-family: var(--serif);
  font-weight: 500;
  color: var(--white);
}

h1 {
  font-size: clamp(54px, 6vw, 96px);
  line-height: 0.95;
}

h2 {
  font-size: clamp(44px, 5vw, 76px);
  line-height: 0.98;
}

h3 {
  font-size: clamp(30px, 3vw, 46px);
  line-height: 1.05;
}

em {
  color: var(--gold2);
  font-style: normal;
}

p {
  color: var(--muted);
  line-height: 1.85;
}

.line-small {
  width: 110px;
  height: 1px;
  background: var(--gold);
  margin: 32px 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 1px solid var(--gold);
  padding: 16px 30px;
  text-transform: uppercase;
  letter-spacing: 1.8px;
  font-size: 12px;
  font-weight: 800;
  transition: 0.3s;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold), #d3ac6d);
  color: #09111c;
}

.btn-secondary {
  background: transparent;
  color: var(--text);
}

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

.text-link {
  display: inline-block;
  margin-top: 28px;
  color: var(--gold2);
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 2px;
}

.hero {
  min-height: 100vh;
  padding: 160px 6vw 170px;
  display: flex;
  align-items: center;
  background: #050b13;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(
      90deg,
      rgba(5, 8, 15, 0.45) 0%,
      rgba(5, 8, 15, 0.28) 45%,
      rgba(5, 8, 15, 0.55) 100%
    ),
    url('../assets/img/hero-vinedo.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
}



.hero-content {
  position: relative;
  z-index: 3;
  max-width: 780px;
}

.hero-content p {
  max-width: 640px;
  font-size: 17px;
}

.hero-actions {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 38px;
}

.hero-pillars {
  position: absolute;
  left: 6vw;
  right: 6vw;
  bottom: 64px;
  z-index: 4;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  padding-top: 22px;
}

.hero-pillars article {
  min-height: 74px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-right: 1px solid var(--line);
  text-align: center;
}

.hero-pillars article:last-child {
  border-right: 0;
}

.hero-pillars span {
  color: var(--gold2);
  font-size: 26px;
  margin-bottom: 8px;
}

.hero-pillars p {
  font-size: 10px;
  line-height: 1.35;
  text-transform: uppercase;
  letter-spacing: 1.1px;
  color: var(--white);
}

.scroll-down {
  position: absolute;
  z-index: 5;
  bottom: 23px;
  left: 50%;
  transform: translateX(-50%);
  color: #d7cbb7;
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 3px;
}

.about-section {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 0.9fr 1.25fr;
  align-items: center;
  gap: 60px;
  padding: 120px 6vw;
  background: linear-gradient(90deg, #06101b 0%, #07111d 100%);
}

.copy-block {
  position: relative;
  z-index: 2;
  max-width: 650px;
}

.copy-block p {
  margin-top: 28px;
  max-width: 560px;
}

.visual-bg {
  min-height: 620px;
  border: 1px solid var(--line);
  background-size: cover;
  background-position: center;
  box-shadow: 0 35px 80px rgba(0, 0, 0, 0.35);
}

.visual-lab {
  background-image:
    linear-gradient(
      90deg,
      rgba(5, 8, 15, 0.10),
      rgba(5, 8, 15, 0.35)
    ),
    url('../assets/img/sobre-nosotros.webp');

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.origin-section {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 0.8fr 1.15fr;
  background: #07111d;
}

.origin-copy {
  padding: 115px 6vw;
}

.origin-copy h2 {
  font-size: clamp(42px, 4.6vw, 72px);
}

.origin-copy p {
  margin-top: 24px;
  max-width: 560px;
  font-size: 17px;
}

.brand-mark {
  width: 84px;
  height: 84px;
  border: 1px solid var(--line);
  color: var(--gold2);
  display: grid;
  place-items: center;
  font-size: 36px;
  margin: 40px 0 28px;
}

.origin-image {
  min-height: 100%;
  border: 0;
  background-image: url('../assets/img/referencia-3.webp');
}

.mini-values {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 60px;
  border-top: 1px solid var(--line);
}

.mini-values article {
  padding: 24px 14px;
  text-align: center;
  border-right: 1px solid var(--line);
}

.mini-values article:last-child {
  border-right: 0;
}

.mini-values span {
  display: block;
  color: var(--gold2);
  font-size: 32px;
  margin-bottom: 12px;
}

.mini-values b {
  text-transform: uppercase;
  font-size: 11px;
  line-height: 1.4;
  letter-spacing: 1.5px;
}

.philosophy-section {
  min-height: 100vh;
  padding: 110px 6vw;
  background:
    linear-gradient(
      90deg,
      rgba(5, 8, 15, 0.92) 0%,
      rgba(5, 8, 15, 0.68) 45%,
      rgba(5, 8, 15, 0.20) 100%
    ),
    url('../assets/img/filosofia-bg.webp') center/cover no-repeat;
}

.philosophy-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
}

.philosophy-content h2 {
  text-transform: uppercase;
  font-size: clamp(70px, 8vw, 132px);
  line-height: 0.86;
  letter-spacing: 2px;
}

.philosophy-content h3 {
  margin-top: 36px;
  max-width: 560px;
  font-size: clamp(32px, 3vw, 52px);
}

.philosophy-content p {
  margin-top: 28px;
  max-width: 600px;
}

.ornament-line {
  display: flex;
  align-items: center;
  gap: 20px;
  color: var(--gold2);
  margin: 34px 0;
}

.ornament-line::before,
.ornament-line::after {
  content: "";
  width: 180px;
  height: 1px;
  background: var(--gold);
}

.philosophy-values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 55px;
}

.philosophy-values article {
  border-right: 1px solid var(--line);
  padding-right: 24px;
}

.philosophy-values span {
  color: var(--gold2);
  font-size: 38px;
}

.philosophy-values b {
  display: block;
  color: var(--gold2);
  text-transform: uppercase;
  margin: 16px 0 8px;
  letter-spacing: 2px;
}

.quote-box {
  margin-top: 42px;
  border: 1px solid var(--line);
  padding: 26px 34px;
  color: var(--gold2);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 12px;
}

.commitment-section {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  background: #06101b;
}

.commitment-copy {
  padding: 110px 6vw;
}

.commitment-copy p {
  margin-top: 24px;
  font-size: 18px;
  max-width: 700px;
}

.commitment-icons {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 55px;
}

.commitment-icons article {
  text-align: center;
  border-right: 1px solid var(--line);
  padding: 18px;
}

.commitment-icons article:last-child {
  border-right: 0;
}

.commitment-icons span {
  color: var(--gold2);
  font-size: 38px;
  display: block;
  margin-bottom: 12px;
}

.commitment-icons b {
  text-transform: uppercase;
  font-size: 12px;
  line-height: 1.35;
  letter-spacing: 1.5px;
}

.section-actions {
  display: flex;
  gap: 26px;
  flex-wrap: wrap;
  margin-top: 55px;
}

.mosaic {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-auto-rows: 1fr;
}

.tile {
  min-height: 250px;
  background-size: cover;
  background-position: center;
}

.mosaic {
  min-height: 100%;
  background-image: url('../assets/img/compromiso-collage.webp');
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #050b13;
}

.mosaic .tile {
  background-image: none !important;
}

.capabilities-section {
  padding: 110px 6vw 80px;
  background: #07111d;
}

.center-title {
  text-align: center;
  max-width: 1120px;
  margin: 0 auto 60px;
}

.center-title p {
  margin: 18px auto 0;
  max-width: 700px;
}

.capabilities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.service-card {
  position: relative;
  min-height: 360px;
  padding: 34px;
  border: 1px solid var(--line);
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 17, 29, 0.18), rgba(7, 17, 29, 0.96));
}

.service-card > * {
  position: relative;
  z-index: 2;
}

.service-card span,
.service-card i {
  color: var(--gold2);
}

.service-card span {
  font-family: var(--serif);
  font-size: 28px;
}

.service-card i {
  display: block;
  font-style: normal;
  font-size: 34px;
  margin: 18px 0 40px;
}

.service-card h3 {
  font-size: 36px;
  margin-bottom: 16px;
}

.service-card p {
  font-size: 15px;
}

.c1 { background-image: url('../assets/img/quehacemos-01.webp'); }
.c2 { background-image: url('../assets/img/quehacemos-02.webp'); }
.c3 { background-image: url('../assets/img/quehacemos-03.webp'); }
.c4 { background-image: url('../assets/img/quehacemos-04.webp'); }
.c5 { background-image: url('../assets/img/quehacemos-05.webp'); }
.c6 { background-image: url('../assets/img/quehacemos-06.webp'); }

.closing-phrase {
  margin-top: 45px;
  padding-top: 30px;
  border-top: 1px solid var(--line);
  text-align: center;
  color: var(--gold2);
  text-transform: uppercase;
  letter-spacing: 4px;
}

.ecosystem-section {
  background: #07111d;
}

.ecosystem-hero,
.innovation-hero,
.experiences-hero,
.contact-hero {
  min-height: 560px;
  padding: 150px 6vw 90px;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  border-top: 1px solid var(--line);
}

.ecosystem-hero{
    position: relative;
    min-height: 720px;
    display: flex;
    align-items: center;
    padding: 120px 7%;
    overflow: hidden;

    background:
        linear-gradient(
            90deg,
            rgba(3,10,22,0.92) 0%,
            rgba(3,10,22,0.82) 35%,
            rgba(3,10,22,0.30) 60%,
            rgba(3,10,22,0.10) 100%
        ),
        url('../assets/img/ecosistema-bg.webp');

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.ecosystem-row {
  display: grid;
  grid-template-columns: 1.2fr repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.row-intro,
.brand-card {
  min-height: 300px;
  padding: 42px;
  border-right: 1px solid var(--line);
}

.row-intro b,
.ecosystem-development b,
.platform-section b {
  color: var(--gold2);
  font-family: var(--serif);
  font-size: 42px;
}

.row-intro h3,
.ecosystem-development h3,
.platform-section h3 {
  color: var(--gold2);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin: 14px 0 20px;
}

.row-intro a,
.ecosystem-development a,
.platform-section a {
  color: var(--gold2);
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 2px;
}

.brand-card {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: linear-gradient(180deg, rgba(255,255,255,.08), rgba(0,0,0,.55));
  font-family: var(--serif);
  font-size: 32px;
}

.brand-card small {
  margin-top: 10px;
  color: var(--muted);
  font-family: var(--sans);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.ecosystem-development {
  min-height: 430px;
  padding: 70px 6vw 0;
  display: grid;
  grid-template-columns: 0.34fr 1fr;
  grid-template-rows: 1fr auto;
  gap: 40px 80px;
  align-items: end;

  background-image:
    linear-gradient(
      90deg,
      rgba(7,17,29,.98) 0%,
      rgba(7,17,29,.88) 28%,
      rgba(7,17,29,.38) 62%,
      rgba(7,17,29,.25) 100%
    ),
    url('../assets/img/ecosistema-desarrollo.webp');

  background-size: cover;
  background-position: center;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.ecosystem-icons {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  width: 100%;
  align-self: end;
  border-top: 1px solid var(--line);
  background: rgba(7, 17, 29, 0.82);
}

.ecosystem-icons article,
.values-strip article {
  text-align: center;
  border-right: 1px solid var(--line);
  padding: 22px 16px;
}

.ecosystem-icons article {
  min-height: 132px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.ecosystem-icons article:last-child {
  border-right: 0;
}


.ecosystem-icons span,
.values-strip article {
  color: var(--gold2);
}

.ecosystem-icons p,
.values-strip span {
  display: block;
  color: var(--white);
  text-transform: uppercase;
  font-size: 10px;
  line-height: 1.4;
  letter-spacing: 1px;
  margin-top: 10px;
}

.platform-section {
  min-height: 360px;
  padding: 70px 6vw;
  display: flex;
  align-items: center;

  background-image:
    linear-gradient(
      90deg,
      rgba(7,17,29,.96) 0%,
      rgba(7,17,29,.82) 34%,
      rgba(7,17,29,.35) 65%,
      rgba(7,17,29,.15) 100%
    ),
    url('../assets/img/plataforma-transformacion.webp');

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.platform-section > div {
  max-width: 430px;
}

.values-strip {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #06101b;
}

.experiences-values-strip {
  grid-template-columns: repeat(5, 1fr);
}

.experiences-values-strip article:last-child {
  border-right: 0;
}

.innovation-hero {
  background-image:
    linear-gradient(
      90deg,
      rgba(7,17,29,.96) 0%,
      rgba(7,17,29,.82) 38%,
      rgba(7,17,29,.35) 68%,
      rgba(7,17,29,.12) 100%
    ),
    url('../assets/img/innovacion-bg.webp');

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.approach-block {
  padding: 80px 6vw;
  text-align: center;
  background: #07111d;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.approach-grid {
  margin-top: 55px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}

.approach-grid article {
  padding: 0 28px;
  border-right: 1px solid var(--line);
}

.approach-grid article:last-child {
  border-right: 0;
}

.approach-grid span {
  color: var(--gold2);
  font-size: 46px;
}

.approach-grid h4 {
  margin: 22px 0 14px;
  text-transform: uppercase;
  color: var(--white);
  letter-spacing: 1.6px;
}

.approach-grid p {
  font-size: 13px;
}

.possibilities {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  min-height: 560px;
  border-bottom: 1px solid var(--line);
}

.possibilities-img {
  height: 100%;
  min-height: 560px;
  background-image:
    linear-gradient(
      90deg,
      rgba(7,17,29,0.00) 0%,
      rgba(7,17,29,0.00) 48%,
      rgba(7,17,29,0.35) 68%,
      rgba(7,17,29,0.75) 86%,
      rgba(7,17,29,1.00) 100%
    ),
    url('../assets/img/nuevas-posibilidades.webp');

  background-size: cover;
  background-position: center left;
  background-repeat: no-repeat;
}

.possibilities > div:last-child {
  padding: 80px 6vw;
}

.innovation-stats {
  padding: 55px 6vw;
  display: grid;
  grid-template-columns: 1.5fr repeat(4, 1fr);
  gap: 28px;
  align-items: center;
  background: #06101b;
}

.innovation-stats h3 {
  font-size: 28px;
  text-transform: uppercase;
}

.innovation-stats a {
  display: inline-block;
  color: var(--gold2);
  margin-top: 16px;
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 2px;
}

.innovation-stats article {
  border-left: 1px solid var(--line);
  padding-left: 28px;
}

.innovation-stats strong {
  display: block;
  color: var(--gold2);
  font-family: var(--serif);
  font-size: 56px;
  font-weight: 400;
}

.innovation-stats span {
  text-transform: uppercase;
  font-size: 10px;
  letter-spacing: 1px;
}

.experiences-hero {
  background-image:
    linear-gradient(
      90deg,
      rgba(7,17,29,.96) 0%,
      rgba(7,17,29,.82) 36%,
      rgba(7,17,29,.35) 68%,
      rgba(7,17,29,.12) 100%
    ),
    url('../assets/img/experiencias-bg.webp');

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.experience-cards {
  padding: 80px 6vw;
  text-align: center;
  background: #07111d;
}

.experience-grid {
  margin-top: 45px;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  border: 1px solid var(--line);
}

.experience-grid article {
  min-height: 360px;
  padding: 30px;
  text-align: left;
  border-right: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: linear-gradient(180deg, rgba(177,138,87,.09), rgba(7,17,29,.92));
}

.experience-grid article:last-child {
  border-right: 0;
}

.experience-grid span,
.experience-grid a {
  color: var(--gold2);
}

.experience-grid h3 {
  font-size: 22px;
  text-transform: uppercase;
  margin: 20px 0;
}

.experience-grid p {
  font-size: 13px;
}

.experience-grid a {
  margin-top: 22px;
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 2px;
}

.memories-section {
  min-height: 420px;
  padding: 90px 6vw;
  display: flex;
  align-items: center;

  background-image:
    linear-gradient(
      90deg,
      rgba(7,17,29,.96) 0%,
      rgba(7,17,29,.82) 38%,
      rgba(7,17,29,.36) 70%,
      rgba(7,17,29,.12) 100%
    ),
    url('../assets/img/momentos-recuerdos.webp');

  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.memories-section > div {
  max-width: 520px;
}

.memories-section p {
  margin: 24px 0;
}

.contact-hero {
  background-image:
    linear-gradient(
      90deg,
      rgba(7,17,29,.96) 0%,
      rgba(7,17,29,.82) 38%,
      rgba(7,17,29,.35) 70%,
      rgba(7,17,29,.12) 100%
    ),
    url('../assets/img/contacto-bg.webp');

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.contact-body {
  display: grid;
  grid-template-columns: 1.3fr 0.8fr;
  gap: 80px;
  padding: 70px 6vw;
  background: #07111d;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.contact-form {
  display: grid;
  gap: 16px;
}

.two-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  background: rgba(255,255,255,.02);
  border: 1px solid rgba(255,255,255,.12);
  color: var(--text);
  padding: 17px 18px;
  outline: 0;
}

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

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--gold);
}

.contact-form button {
  justify-self: start;
}

.direct-channels {
  border-left: 1px solid var(--line);
  padding-left: 55px;
}

.direct-channels article {
  margin-bottom: 28px;
}

.direct-channels b {
  color: var(--gold2);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 12px;
}

.collaboration-strip {
  min-height: 270px;
  padding: 70px 6vw;
  display: flex;
  align-items: center;

  background-image:
    linear-gradient(
  90deg,
  #d8cdb3 0%,
  #d8cdb3 50%,
  rgba(216, 205, 179, 0.98) 56%,
  rgba(216, 205, 179, 0.78) 63%,
  rgba(216, 205, 179, 0.42) 70%,
  rgba(216, 205, 179, 0.00) 82%
),
    url('../assets/img/colaboraciones-bg.webp');

  background-size: auto 100%;
  background-position: right center;
  background-repeat: no-repeat;
  background-color: #d8cdb3;
}

.collaboration-strip h2 {
  max-width: 520px;
  color: #141414;
  font-size: 42px;
}

.collaboration-strip a,
.collaboration-strip .eyebrow {
  color: #47321e;
}

.site-footer {
  background: #07111d;
  border-top: 1px solid var(--line);
}

.footer-top {
  padding: 90px 6vw 70px;
  display: grid;
  grid-template-columns: 1.7fr 1fr 1fr 1.3fr 1.8fr;
  gap: 50px;
  background-image: linear-gradient(90deg, rgba(7,17,29,1) 0%, rgba(7,17,29,.94) 62%, rgba(7,17,29,.45) 100%), url('../assets/img/compromiso-collage.webp');
  background-size: cover;
  background-position: right center;
}

.footer-symbol {
  color: var(--gold2);
  font-size: 62px;
  margin-bottom: 18px;
}

.footer-brand h2 {
  font-size: 38px;
}

.footer-brand span {
  color: var(--gold2);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 12px;
}

.footer-brand p {
  margin: 36px 0;
}

.footer-brand b {
  color: var(--gold2);
}

.footer-col,
.footer-contact {
  border-left: 1px solid var(--line);
  padding-left: 48px;
}

.footer-col h3,
.footer-contact h3 {
  color: var(--gold2);
  text-transform: uppercase;
  letter-spacing: 4px;
  font-family: var(--sans);
  font-size: 17px;
  margin-bottom: 28px;
}

.footer-col a {
  display: block;
  margin-bottom: 18px;
  color: var(--white);
}

.footer-contact p {
  margin-bottom: 26px;
}

.footer-contact b {
  display: block;
  color: var(--gold2);
  margin-top: 16px;
}

.footer-button {
  display: inline-flex;
  border: 1px solid var(--gold);
  color: var(--gold2);
  padding: 16px 32px;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 18px;
}

.socials {
  display: flex;
  gap: 20px;
  color: var(--gold2);
  margin-top: 28px;
}

.footer-values {
  padding: 42px 6vw;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.footer-values article {
  display: grid;
  grid-template-columns: 46px 1fr;
  column-gap: 18px;
  align-items: start;
  padding: 0 34px;
  border-right: 1px solid var(--line);
  text-align: left;
}

.footer-icon {
  width: 38px;
  height: 38px;
  position: relative;
  display: block;
  color: var(--gold2);
  margin-top: 2px;
}

.footer-values b {
  color: var(--gold2);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 13px;
  line-height: 1.2;
}

.footer-values p {
  font-size: 12px;
  margin-top: 6px;
  line-height: 1.55;
  max-width: 170px;
}

.icon-origin::before,
.icon-community::before,
.icon-innovation::before,
.icon-sustainability::before,
.icon-excellence::before {
  font-size: 34px;
  line-height: 1;
}

.footer-values article:last-child {
  border-right: 0;
}

.footer-values span {
  color: var(--gold2);
  font-size: 42px;
  grid-row: span 2;
}

.footer-values b {
  color: var(--gold2);
  text-transform: uppercase;
  letter-spacing: 2px;
}

.footer-values p {
  font-size: 14px;
}

.footer-bottom {
  padding: 34px 6vw;
  display: flex;
  justify-content: space-between;
  color: #9a8d7b;
  font-size: 14px;
}

.reveal {
  opacity: 0;
  transform: translateY(35px);
  transition: 0.8s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.delay {
  transition-delay: 0.18s;
}

@media (max-width: 1180px) {
  .main-nav {
    display: none;
  }

  .menu-btn {
    display: block;
  }

  .header-cta,
  .lang {
    display: none;
  }

  .main-nav.open {
    position: absolute;
    top: 76px;
    left: 0;
    right: 0;
    display: grid;
    gap: 0;
    background: rgba(7,17,29,.96);
    border-top: 1px solid var(--line);
  }

  .main-nav.open a {
    padding: 18px 6vw;
    border-bottom: 1px solid var(--line);
  }

  .hero-pillars,
  .ecosystem-icons,
  .values-strip,
  .approach-grid,
  .experience-grid,
  .footer-values {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-section,
  .origin-section,
  .commitment-section,
  .possibilities,
  .contact-body,
  .footer-top,
  .ecosystem-development {
    grid-template-columns: 1fr;
  }

  .origin-image,
  .visual-bg,
  .possibilities-img {
    min-height: 480px;
  }

  .mosaic {
    min-height: 600px;
  }

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

  .ecosystem-row {
    grid-template-columns: 1fr 1fr;
  }

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

  .direct-channels,
  .footer-col,
  .footer-contact {
    border-left: 0;
    padding-left: 0;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 12px;
  }
}

@media (max-width: 720px) {
  .site-header {
    padding: 18px 5vw;
  }

  .brand-name {
    font-size: 24px;
  }

  h1 {
    font-size: 48px;
  }

  h2 {
    font-size: 40px;
  }

  .hero {
    padding: 130px 5vw 360px;
  }

  .hero-actions,
  .section-actions {
    flex-direction: column;
  }

  .hero-pillars,
  .capabilities-grid,
  .ecosystem-row,
  .values-strip,
  .approach-grid,
  .experience-grid,
  .footer-values,
  .innovation-stats,
  .two-cols,
  .philosophy-values,
  .mini-values,
  .commitment-icons {
    grid-template-columns: 1fr;
  }

  .hero-pillars {
    bottom: 50px;
  }

  .about-section,
  .origin-copy,
  .philosophy-section,
  .commitment-copy,
  .capabilities-section,
  .ecosystem-hero,
  .innovation-hero,
  .experiences-hero,
  .contact-hero,
  .contact-body,
  .footer-top {
    padding-left: 5vw;
    padding-right: 5vw;
  }

  .service-card,
  .experience-grid article {
    min-height: 300px;
  }
}


/* ===== Fondos reales estilo viñedo/bodega ===== */




.origin-image {
  min-height: 100%;
  border: 0;
  background-image:
    linear-gradient(
      90deg,
      rgba(5, 8, 15, 0.05),
      rgba(5, 8, 15, 0.18)
    ),
    url('../assets/img/origen-bg.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}







.brand-amaya {
  background-image:
    linear-gradient(180deg, rgba(7,17,29,.10), rgba(7,17,29,.80)),
    url('../assets/img/marca-amaya.webp');
}

.brand-solara {
  background-image:
    linear-gradient(180deg, rgba(7,17,29,.10), rgba(7,17,29,.80)),
    url('../assets/img/marca-solara.webp');
}

.brand-why {
  background-image:
    linear-gradient(180deg, rgba(7,17,29,.10), rgba(7,17,29,.80)),
    url('../assets/img/marca-why-not.webp');
}

.brand-runa {
  background-image:
    linear-gradient(180deg, rgba(7,17,29,.10), rgba(7,17,29,.80)),
    url('../assets/img/marca-runa-soncco.webp');
}

.brand-card {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.direct-channels article {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 18px;
  align-items: start;
  margin-bottom: 34px;
}

.channel-icon {
  width: 28px;
  height: 28px;
  border: 1.5px solid var(--gold2);
  display: inline-block;
  position: relative;
  margin-top: 4px;
}

/* Correo */
.icon-mail {
  border-radius: 2px;
}

.icon-mail::before,
.icon-mail::after {
  content: "";
  position: absolute;
  top: 8px;
  width: 15px;
  height: 1.5px;
  background: var(--gold2);
}

.icon-mail::before {
  left: 1px;
  transform: rotate(35deg);
}

.icon-mail::after {
  right: 1px;
  transform: rotate(-35deg);
}

/* Teléfono */
.icon-phone {
  border: 0;
}

.icon-phone::before {
  content: "☎";
  color: var(--gold2);
  font-size: 30px;
  line-height: 1;
}

/* Ubicación */
.icon-location {
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
}

.icon-location::before {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  border: 1.5px solid var(--gold2);
  border-radius: 50%;
  top: 8px;
  left: 8px;
}

/* Global */
.icon-global {
  border-radius: 50%;
}

.icon-global::before,
.icon-global::after {
  content: "";
  position: absolute;
  border: 1.5px solid var(--gold2);
  border-radius: 50%;
}

.icon-global::before {
  inset: 5px 9px;
}

.icon-global::after {
  left: 3px;
  right: 3px;
  top: 12px;
}

.socials {
  display: flex;
  gap: 18px;
  margin-top: 28px;
}

.social-icon {
  width: 28px;
  height: 28px;
  border: 1.5px solid var(--gold2);
  border-radius: 6px;
  position: relative;
  display: inline-block;
}

.instagram::before {
  content: "";
  position: absolute;
  inset: 6px;
  border: 1.5px solid var(--gold2);
  border-radius: 50%;
}

.instagram::after {
  content: "";
  position: absolute;
  width: 4px;
  height: 4px;
  right: 6px;
  top: 6px;
  background: var(--gold2);
  border-radius: 50%;
}

.linkedin::before {
  content: "in";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: var(--gold2);
  font-size: 13px;
  font-weight: 800;
  font-family: var(--sans);
}

.youtube::before {
  content: "";
  position: absolute;
  left: 10px;
  top: 7px;
  border-left: 9px solid var(--gold2);
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
}

.icon-origin::before {
  content: "♧";
}

.icon-community::before {
  content: "☷";
}

.icon-innovation::before {
  content: "⚗";
}

.icon-sustainability::before {
  content: "♧";
}

.icon-excellence::before {
  content: "◎";
}

.footer-icon::before {
  display: block;
  color: var(--gold2);
  font-size: 34px;
  line-height: 1;
}

/* =========================================================
   RESPONSIVE FINAL - ALMA ZAMORA
   Ajustes para laptop, tablet y mobile.
   ========================================================= */

@media (max-width: 1280px) {
  .main-nav {
    gap: 24px;
  }

  .main-nav a {
    font-size: 10px;
    letter-spacing: 1.6px;
  }

  .header-cta {
    padding: 10px 14px;
  }

  .footer-top {
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
  }

  .footer-contact {
    grid-column: 1 / -1;
  }
}

@media (max-width: 1180px) {
  body {
    overflow-x: hidden;
  }

  .site-header {
    min-height: 74px;
    padding: 16px 5vw;
    background: rgba(7, 17, 29, 0.92);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--line);
  }

  .brand-name {
    font-size: 26px;
  }

  .brand-icon {
    font-size: 32px;
  }

  .header-cta,
  .lang {
    display: none;
  }

  .menu-btn {
    display: block;
  }

  .main-nav {
    display: none;
  }

  .main-nav.open {
    position: fixed;
    top: 74px;
    left: 0;
    right: 0;
    z-index: 999;
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    background: rgba(7, 17, 29, 0.98);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }

  .main-nav.open a {
    display: block;
    padding: 18px 5vw;
    border-bottom: 1px solid var(--line);
    font-size: 12px;
  }

  h1 {
    font-size: clamp(48px, 8vw, 76px);
  }

  h2 {
    font-size: clamp(38px, 7vw, 60px);
  }

  h3 {
    font-size: clamp(28px, 5vw, 42px);
  }

  .hero {
    min-height: auto;
    display: block;
    padding: 130px 5vw 42px;
  }

  .hero-content {
    max-width: 760px;
  }

  .hero-content p {
    max-width: 680px;
  }

  .hero-actions {
    margin-bottom: 0;
  }

  .hero-pillars {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    margin-top: 70px;
    grid-template-columns: repeat(3, 1fr);
    border-bottom: 1px solid var(--line);
    padding-bottom: 18px;
  }

  .hero-pillars article {
    border-bottom: 1px solid var(--line);
  }

  .scroll-down {
    display: none;
  }

  .about-section,
  .origin-section,
  .commitment-section,
  .possibilities,
  .contact-body,
  .ecosystem-development {
    grid-template-columns: 1fr;
  }

  .about-section,
  .origin-copy,
  .commitment-copy,
  .capabilities-section,
  .ecosystem-hero,
  .innovation-hero,
  .experiences-hero,
  .contact-hero,
  .experience-cards,
  .approach-block,
  .contact-body,
  .footer-top {
    padding-left: 5vw;
    padding-right: 5vw;
  }

  .about-section {
    padding-top: 90px;
    padding-bottom: 90px;
  }

  .visual-bg,
  .origin-image,
  .possibilities-img {
    min-height: 500px;
  }

  .origin-image {
    min-height: 540px;
  }

  .commitment-section {
    min-height: auto;
  }

  .mosaic {
    min-height: 520px;
  }

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

  .ecosystem-row {
    grid-template-columns: 1fr 1fr;
  }

  .row-intro {
    grid-column: 1 / -1;
  }

  .ecosystem-icons,
  .values-strip {
    grid-template-columns: repeat(3, 1fr);
  }

  .approach-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px 0;
  }

  .approach-grid article {
    border-right: 0;
    padding: 22px 28px;
    border-bottom: 1px solid var(--line);
  }

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

  .innovation-stats > div {
    grid-column: 1 / -1;
  }

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

  .experience-grid article {
    min-height: 300px;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand,
  .footer-contact {
    grid-column: 1 / -1;
  }

  .footer-col,
  .footer-contact {
    border-left: 0;
    padding-left: 0;
  }

  .footer-values {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 0;
  }

  .footer-values article {
    border-right: 0;
    padding: 0 26px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 12px;
  }
}

@media (max-width: 820px) {
  .hero-pillars,
  .ecosystem-icons,
  .values-strip,
  .capabilities-grid,
  .ecosystem-row,
  .innovation-stats,
  .experience-grid,
  .footer-values,
  .two-cols,
  .mini-values,
  .commitment-icons,
  .philosophy-values {
    grid-template-columns: 1fr;
  }

  .hero-pillars article,
  .ecosystem-icons article,
  .values-strip article {
    border-right: 0;
  }

  .hero-pillars article {
    padding: 18px 10px;
  }

  .service-card {
    min-height: 330px;
  }

  .ecosystem-hero,
  .innovation-hero,
  .experiences-hero,
  .contact-hero {
    min-height: 560px;
    padding-top: 120px;
    padding-bottom: 70px;
  }

  .ecosystem-development {
    padding-top: 60px;
    gap: 35px;
  }

  .ecosystem-icons {
    margin-left: -5vw;
    margin-right: -5vw;
  }

  .possibilities {
    display: flex;
    flex-direction: column;
  }

  .possibilities-img {
    width: 100%;
    min-height: 420px;
  }

  .possibilities > div:last-child {
    padding: 65px 5vw;
  }

  .contact-body {
    gap: 45px;
  }

  .direct-channels {
    border-left: 0;
    padding-left: 0;
    border-top: 1px solid var(--line);
    padding-top: 40px;
  }

  .collaboration-strip {
    min-height: 330px;
    background-size: cover;
    background-position: center right;
  }

  .collaboration-strip h2 {
    font-size: 36px;
  }

  .footer-top {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .site-header {
    min-height: 66px;
    padding: 14px 18px;
  }

  .main-nav.open {
    top: 66px;
  }

  .brand {
    gap: 10px;
  }

  .brand-icon {
    font-size: 28px;
  }

  .brand-name {
    font-size: 22px;
  }

  h1 {
    font-size: 43px;
    line-height: 0.98;
  }

  h2 {
    font-size: 36px;
    line-height: 1;
  }

  h3 {
    font-size: 28px;
  }

  p {
    font-size: 15px;
  }

  .eyebrow {
    font-size: 11px;
    letter-spacing: 3px;
  }

  .btn {
    width: 100%;
    padding: 15px 18px;
    text-align: center;
  }

  .hero {
    padding: 112px 18px 36px;
  }

  .hero-actions,
  .section-actions {
    width: 100%;
    flex-direction: column;
    gap: 14px;
  }

  .hero-pillars {
    margin-top: 52px;
  }

  .about-section,
  .origin-copy,
  .philosophy-section,
  .commitment-copy,
  .capabilities-section,
  .ecosystem-hero,
  .innovation-hero,
  .experiences-hero,
  .contact-hero,
  .experience-cards,
  .approach-block,
  .contact-body,
  .footer-top,
  .footer-values,
  .footer-bottom {
    padding-left: 18px;
    padding-right: 18px;
  }

  .about-section,
  .origin-copy,
  .commitment-copy,
  .capabilities-section,
  .experience-cards,
  .approach-block {
    padding-top: 75px;
    padding-bottom: 75px;
  }

  .visual-bg,
  .origin-image,
  .possibilities-img {
    min-height: 340px;
  }

  .origin-copy h2 {
    font-size: 36px;
  }

  .brand-mark {
    width: 66px;
    height: 66px;
    font-size: 28px;
  }

  .philosophy-section {
    min-height: auto;
  }

  .philosophy-content h2 {
    font-size: 58px;
  }

  .ornament-line::before,
  .ornament-line::after {
    width: 80px;
  }

  .mosaic {
    min-height: 360px;
    background-size: cover;
  }

  .capabilities-grid,
  .experience-grid {
    gap: 16px;
  }

  .service-card {
    min-height: 300px;
    padding: 28px;
  }

  .service-card h3 {
    font-size: 30px;
  }

  .ecosystem-hero,
  .innovation-hero,
  .experiences-hero,
  .contact-hero {
    min-height: 520px;
  }

  .row-intro,
  .brand-card {
    min-height: 240px;
    padding: 30px 24px;
  }

  .brand-card {
    font-size: 28px;
  }

  .ecosystem-icons {
    margin-left: -18px;
    margin-right: -18px;
  }

  .ecosystem-icons article,
  .values-strip article {
    padding: 24px 18px;
  }

  .approach-grid article {
    padding: 24px 0;
  }

  .innovation-stats {
    padding: 45px 18px;
    gap: 22px;
  }

  .innovation-stats article {
    border-left: 0;
    border-top: 1px solid var(--line);
    padding-left: 0;
    padding-top: 20px;
  }

  .contact-form input,
  .contact-form select,
  .contact-form textarea {
    padding: 15px;
  }

  .direct-channels article {
    grid-template-columns: 34px 1fr;
    gap: 14px;
  }

  .footer-brand h2 {
    font-size: 32px;
  }

  .footer-symbol {
    font-size: 48px;
  }

  .footer-values article {
    grid-template-columns: 42px 1fr;
    padding: 0;
  }

  .footer-icon {
    width: 34px;
    height: 34px;
  }

  .footer-icon::before {
    font-size: 30px;
  }
}

@media (max-width: 380px) {
  h1 {
    font-size: 38px;
  }

  h2 {
    font-size: 32px;
  }

  .hero {
    padding-top: 105px;
  }

  .btn {
    font-size: 10px;
    letter-spacing: 1.4px;
  }

  .service-card h3 {
    font-size: 27px;
  }
}


/* =========================================================
   Selector de idioma ES / EN
   ========================================================= */

.language-switch {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-right: 1px solid var(--line);
  padding-right: 18px;
  font-size: 12px;
  letter-spacing: 2px;
}

.language-switch a,
.language-switch span {
  color: var(--gold2);
  font-weight: 700;
}

.language-switch a {
  opacity: 0.55;
  transition: 0.25s ease;
}

.language-switch a:hover {
  opacity: 1;
}

@media (max-width: 1180px) {
  .language-switch {
    display: none;
  }
}

/* ===== Premium brand interaction + modal ===== */
.brand-card {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  cursor: pointer;
  transition: transform .45s ease, filter .45s ease, border-color .45s ease;
}

.brand-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(3, 10, 22, .08), rgba(3, 10, 22, .78));
  transition: background .45s ease, opacity .45s ease;
}

.brand-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 78% 18%, rgba(218, 164, 88, .30), transparent 28%);
  opacity: 0;
  transition: opacity .45s ease;
}

.brand-card:hover,
.brand-card:focus-visible {
  transform: translateY(-6px);
  border-color: rgba(218, 164, 88, .55);
}

.brand-card:hover::before,
.brand-card:focus-visible::before {
  background: linear-gradient(180deg, rgba(3, 10, 22, .28), rgba(3, 10, 22, .88));
}

.brand-card:hover::after,
.brand-card:focus-visible::after {
  opacity: 1;
}

.brand-card__tag {
  position: absolute;
  top: 28px;
  left: 32px;
  color: var(--gold2);
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(-8px);
  transition: .35s ease;
}

.brand-card__title {
  color: #fff6e7;
  text-shadow: 0 8px 22px rgba(0,0,0,.55);
}

.brand-card__action {
  position: absolute;
  top: 28px;
  right: 28px;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(218, 164, 88, .75);
  border-radius: 999px;
  background: rgba(3, 10, 22, .34);
  color: var(--gold2);
  font-size: 28px;
  line-height: 1;
  display: grid;
  place-items: center;
  opacity: 0;
  transform: translateX(12px) scale(.92);
  transition: .35s ease;
  z-index: 2;
}

.brand-card:hover .brand-card__action,
.brand-card:focus-visible .brand-card__action,
.brand-card:hover .brand-card__tag,
.brand-card:focus-visible .brand-card__tag {
  opacity: 1;
  transform: translate(0) scale(1);
}

.brand-card__action:hover {
  background: var(--gold2);
  color: #07111d;
}

.brand-modal {
  position: fixed;
  inset: 0;
  z-index: 999;
  display: grid;
  place-items: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease;
will-change: opacity;
}

.brand-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.brand-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(2, 8, 15, .84);
}

.brand-modal__dialog {
  position: relative;
  width: min(920px, 94vw);
  min-height: 440px;
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  overflow: hidden;
  border: 1px solid rgba(218, 164, 88, .50);
  background: linear-gradient(135deg, rgba(5, 14, 25, .98), rgba(4, 10, 18, .96));
  box-shadow: 0 22px 48px rgba(0,0,0,.42);
  transform: translateY(24px) scale(.98);
  transition: transform .28s ease, opacity .28s ease;
  will-change: transform, opacity;
}

.brand-modal.is-open .brand-modal__dialog {
  transform: translateY(0) scale(1);
}

.brand-modal__image {
  min-height: 440px;
  background-size: cover;
  background-position: center;
}

.brand-modal__content {
  padding: 56px 54px;
}

.brand-modal__eyebrow,
.brand-modal__subtitle {
  color: var(--gold2);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 12px;
}

.brand-modal__content h3 {
  margin: 12px 0 10px;
  color: var(--gold2);
  font-family: var(--serif);
  font-size: clamp(34px, 4vw, 54px);
}

.brand-modal__description {
  margin: 26px 0 34px;
  color: rgba(255,255,255,.84);
  line-height: 1.8;
}

.brand-modal__features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.brand-modal__features span {
  display: block;
  color: var(--gold2);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1.6px;
  margin-bottom: 8px;
}

.brand-modal__features p {
  color: rgba(255,255,255,.72);
  font-size: 13px;
  line-height: 1.5;
}

.brand-modal__close {
  position: absolute;
  top: 18px;
  right: 20px;
  z-index: 3;
  width: 42px;
  height: 42px;
  border: 0;
  background: transparent;
  color: var(--gold2);
  font-size: 38px;
  cursor: pointer;
}

body.modal-open {
  overflow: hidden;
}

@media (max-width: 760px) {
  .brand-card__action,
  .brand-card__tag {
    opacity: 1;
    transform: none;
  }

  .brand-modal__dialog {
    grid-template-columns: 1fr;
    max-height: 88vh;
    overflow-y: auto;
  }

  .brand-modal__image {
    min-height: 260px;
  }

  .brand-modal__content {
    padding: 34px 26px;
  }

  .brand-modal__features {
    grid-template-columns: 1fr;
  }
}

.main-nav a {
  position: relative;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 0;
  height: 1px;
  background: var(--gold2);
  transition: width .28s ease;
}

.main-nav a:hover::after,
.main-nav a.active::after {
  width: 100%;
}

.menu-btn {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(177, 138, 87, .35);
  background: transparent;
  color: var(--gold2);
  cursor: pointer;
  transition: all .25s ease;
}

.menu-btn i {
  font-size: 1.4rem;
}

.menu-btn:hover {
  border-color: var(--gold2);
  background: rgba(177, 138, 87, .06);
}

@media (max-width: 1180px) {
  .menu-btn {
    display: grid;
    place-items: center;
  }
}

.mobile-language-switch {
  display: none;
}

@media (max-width: 1180px) {
  .mobile-language-switch {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 18px 5vw;
    border-bottom: 1px solid var(--line);
    color: var(--gold2);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 2px;
  }

  .mobile-language-switch a {
    color: var(--gold2);
    opacity: .55;
  }

  .mobile-language-switch .active {
    opacity: 1;
  }
}

.collaboration-strip a {
  display: inline-flex;
  align-items: center;
  margin-top: 28px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(71, 50, 30, .55);

  color: #47321e;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 2px;

  transition:
    transform .25s ease,
    border-color .25s ease,
    letter-spacing .25s ease;
}

.collaboration-strip a:hover {
  transform: translateX(6px);
  border-color: #47321e;
  letter-spacing: 2.4px;
}

.ecosystem-icons-full {
  width: 100vw;
  margin-left: calc(-6vw);
  margin-right: calc(-6vw);
  grid-template-columns: repeat(6, 1fr);
}

.ecosystem-icons-full article {
  min-height: 132px;
}

.ecosystem-icons-full article:last-child {
  border-right: 0;
}

.hero-pillars i {
  font-size: 28px;
  color: var(--gold2);
  line-height: 1;
}

.mini-values i {
  font-size: 26px;
  color: var(--gold2);
  line-height: 1;
}

.philosophy-values i {
  font-size: 34px;
  color: var(--gold2);
  line-height: 1;
}

.commitment-icons i {
  font-size: 34px;
  color: var(--gold2);
  line-height: 1;
}

.service-card i {
  font-size: 38px;
  color: var(--gold2);
  line-height: 1;
}

.ecosystem-icons i {
  font-size: 34px;
  color: var(--gold2);
  line-height: 1;
}

.values-strip i {
  font-size: 34px;
  color: var(--gold2);
  display: block;
  margin-bottom: 12px;
  line-height: 1;
}

.approach-grid i {
  font-size: 38px;
  color: var(--gold2);
  line-height: 1;
}

.experience-grid i {
  font-size: 34px;
  color: var(--gold2);
  line-height: 1;
}

.experiences-values-strip i {
  font-size: 34px;
  color: var(--gold2);
  display: block;
  margin-bottom: 12px;
  line-height: 1;
}

.channel-icon i {
  font-size: 24px;
  color: var(--gold2);
  line-height: 1;
}

.social-icon {
  display: inline-grid;
  place-items: center;
}

.social-icon i {
  font-size: 18px;
  color: var(--gold2);
  line-height: 1;
}

.footer-icon i {
  font-size: 32px;
  color: var(--gold2);
  line-height: 1;
}

.brand-icon {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.brand-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}



/* =========================================================
   AJUSTES RESPONSIVE SOLO ESPAÑOL
   No afecta escritorio ni la versión EN.
   ========================================================= */

@media (max-width: 1180px) {
  body.es-page .site-header {
    padding-left: 5vw;
    padding-right: 5vw;
  }

  body.es-page .brand {
    min-width: 0;
  }

  body.es-page .brand-icon {
    width: 46px;
    height: 46px;
    flex: 0 0 46px;
  }

  body.es-page .brand-name {
    white-space: nowrap;
  }

  body.es-page .main-nav.open {
    max-height: calc(100vh - 74px);
    overflow-y: auto;
  }

  body.es-page .ecosystem-icons-full {
    width: auto;
    margin-left: -5vw;
    margin-right: -5vw;
    grid-template-columns: repeat(3, 1fr) !important;
  }

  body.es-page .ecosystem-icons-full article {
    min-height: 118px;
  }

  body.es-page .experiences-values-strip {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

@media (max-width: 820px) {
  body.es-page .hero {
    min-height: auto;
    padding-top: 116px;
    padding-bottom: 52px;
  }

  body.es-page .hero-content {
    max-width: 100%;
  }

  body.es-page .hero h1 {
    font-size: clamp(42px, 12vw, 62px);
    line-height: .98;
    max-width: 680px;
  }

  body.es-page .hero-content p {
    font-size: 15px;
    line-height: 1.75;
  }

  body.es-page .hero-pillars {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 0;
  }

  body.es-page .hero-pillars article {
    min-height: 105px;
    padding: 18px 12px;
  }

  body.es-page .about-section,
  body.es-page .origin-section,
  body.es-page .commitment-section,
  body.es-page .possibilities,
  body.es-page .contact-body {
    grid-template-columns: 1fr !important;
  }

  body.es-page .copy-block {
    max-width: 100%;
  }

  body.es-page .visual-bg,
  body.es-page .origin-image,
  body.es-page .possibilities-img {
    min-height: 380px;
  }

  body.es-page .mini-values,
  body.es-page .commitment-icons,
  body.es-page .philosophy-values {
    grid-template-columns: repeat(2, 1fr) !important;
  }

  body.es-page .capabilities-grid,
  body.es-page .experience-grid {
    grid-template-columns: 1fr !important;
  }

  body.es-page .service-card,
  body.es-page .experience-grid article {
    min-height: 280px;
  }

  body.es-page .ecosystem-row {
    grid-template-columns: 1fr !important;
  }

  body.es-page .row-intro,
  body.es-page .brand-card {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  body.es-page .ecosystem-icons-full {
    grid-template-columns: repeat(2, 1fr) !important;
    margin-left: -5vw;
    margin-right: -5vw;
  }

  body.es-page .values-strip {
    grid-template-columns: repeat(2, 1fr) !important;
  }

  body.es-page .values-strip article,
  body.es-page .ecosystem-icons-full article {
    min-height: 116px;
    padding: 22px 12px;
  }

  body.es-page .values-strip i,
  body.es-page .ecosystem-icons-full i {
    font-size: 28px;
  }

  body.es-page .values-strip span,
  body.es-page .ecosystem-icons-full p {
    font-size: 10px;
    line-height: 1.35;
  }

  body.es-page .approach-grid {
    grid-template-columns: 1fr !important;
  }

  body.es-page .innovation-stats {
    grid-template-columns: 1fr !important;
  }

  body.es-page .collaboration-strip {
    min-height: 360px;
    background-size: cover;
    background-position: center right;
  }

  body.es-page .collaboration-strip h2 {
    max-width: 440px;
  }

  body.es-page .footer-top,
  body.es-page .footer-values {
    grid-template-columns: 1fr !important;
  }

  body.es-page .footer-values article {
    border-right: 0;
    border-bottom: 1px solid var(--line);
    padding: 22px 0;
  }

  body.es-page .footer-values article:last-child {
    border-bottom: 0;
  }
}

@media (max-width: 560px) {
  body.es-page .site-header {
    min-height: 66px;
    padding: 14px 18px;
  }

  body.es-page .brand-icon {
    width: 38px;
    height: 38px;
    flex-basis: 38px;
  }

  body.es-page .brand-name {
    font-size: 21px;
    line-height: .78;
  }

  body.es-page .menu-btn {
    width: 42px;
    height: 42px;
  }

  body.es-page .main-nav.open {
    top: 66px;
    max-height: calc(100vh - 66px);
  }

  body.es-page .hero {
    padding: 100px 18px 42px;
  }

  body.es-page .hero h1 {
    font-size: clamp(38px, 13vw, 50px);
    line-height: .98;
  }

  body.es-page .line-small {
    margin: 24px 0;
  }

  body.es-page .hero-actions {
    gap: 12px;
  }

  body.es-page .hero-pillars {
    margin-top: 42px;
    grid-template-columns: repeat(2, 1fr) !important;
  }

  body.es-page .hero-pillars article {
    min-height: 102px;
  }

  body.es-page .hero-pillars p {
    font-size: 9px;
  }

  body.es-page .about-section,
  body.es-page .origin-copy,
  body.es-page .philosophy-section,
  body.es-page .commitment-copy,
  body.es-page .capabilities-section,
  body.es-page .ecosystem-hero,
  body.es-page .innovation-hero,
  body.es-page .experiences-hero,
  body.es-page .contact-hero,
  body.es-page .experience-cards,
  body.es-page .approach-block,
  body.es-page .contact-body,
  body.es-page .footer-top,
  body.es-page .footer-values,
  body.es-page .footer-bottom {
    padding-left: 18px;
    padding-right: 18px;
  }

  body.es-page h2 {
    font-size: clamp(34px, 10vw, 42px);
  }

  body.es-page h3 {
    font-size: clamp(26px, 8vw, 34px);
  }

  body.es-page .philosophy-content h2 {
    font-size: clamp(48px, 14vw, 62px);
  }

  body.es-page .mini-values,
  body.es-page .commitment-icons,
  body.es-page .philosophy-values {
    grid-template-columns: 1fr !important;
  }

  body.es-page .ecosystem-development {
    padding-top: 58px;
    gap: 34px;
  }

  body.es-page .ecosystem-development h3,
  body.es-page .platform-section h3 {
    font-size: 34px;
    line-height: 1.05;
  }

  body.es-page .ecosystem-icons-full {
    width: auto;
    margin-left: -18px;
    margin-right: -18px;
    grid-template-columns: repeat(2, 1fr) !important;
  }

  body.es-page .ecosystem-icons-full article {
    min-height: 118px;
    padding: 22px 10px;
  }

  body.es-page .ecosystem-icons-full p {
    font-size: 9px;
    letter-spacing: .8px;
  }

  body.es-page .platform-section {
    min-height: 390px;
    padding: 66px 18px;
  }

  body.es-page .values-strip {
    grid-template-columns: repeat(2, 1fr) !important;
  }

  body.es-page .values-strip article {
    min-height: 112px;
    padding: 22px 10px;
  }

  body.es-page .values-strip span {
    font-size: 9.5px;
    letter-spacing: .8px;
  }

  body.es-page .experience-grid article,
  body.es-page .service-card {
    min-height: 260px;
    padding: 26px;
  }

  body.es-page .contact-body {
    gap: 36px;
  }

  body.es-page .direct-channels {
    border-left: 0;
    border-top: 1px solid var(--line);
    padding-left: 0;
    padding-top: 34px;
  }

  body.es-page .collaboration-strip {
    padding: 60px 18px;
    background-position: center right;
  }

  body.es-page .collaboration-strip h2 {
    font-size: 34px;
    max-width: 340px;
  }

  body.es-page .brand-modal {
    padding: 14px;
  }

  body.es-page .brand-modal__dialog {
    width: 100%;
    max-height: 88vh;
  }
}


@media (max-width: 560px) {
  body.es-page .mini-values {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 0;
  }

  body.es-page .mini-values article {
    min-height: 145px;
    padding: 28px 12px;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }

  body.es-page .mini-values article:nth-child(2n) {
    border-right: 0;
  }

  body.es-page .mini-values article:nth-last-child(-n + 2) {
    border-bottom: 0;
  }
}

@media (max-width: 560px) {
  body.es-page .philosophy-values {
    text-align: center;
    gap: 28px;
  }

  body.es-page .philosophy-values article {
    border-right: 0;
    padding: 26px 18px;
    background: rgba(7, 17, 29, 0.38);
    border: 1px solid var(--line);
  }

  body.es-page .philosophy-values i {
    font-size: 34px;
    margin-bottom: 14px;
  }

  body.es-page .philosophy-values b {
    margin-top: 8px;
  }

  body.es-page .philosophy-values p {
    margin: 14px auto 0;
    max-width: 260px;
  }
}

@media (max-width: 560px) {
  body.es-page .commitment-icons {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 0;
  }

  body.es-page .commitment-icons article {
    min-height: 145px;
    padding: 28px 12px;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }

  body.es-page .commitment-icons article:nth-child(2n) {
    border-right: 0;
  }

  body.es-page .commitment-icons article:nth-last-child(-n + 2) {
    border-bottom: 0;
  }
}

@media (max-width: 560px) {
  body.es-page .innovation-stats {
    text-align: center;
  }

  body.es-page .innovation-stats article {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  body.es-page .innovation-stats strong {
    text-align: center;
  }

  body.es-page .innovation-stats span {
    display: block;
    max-width: 240px;
    margin: 8px auto 0;
    text-align: center;
  }
}

@media (max-width: 560px) {
  body.es-page .main-nav.open a {
    text-align: center;
    justify-content: center;
  }

  body.es-page .mobile-language-switch {
    justify-content: center;
    text-align: center;
  }
}

@media (max-width: 560px) {
  body.es-page .capabilities-grid {
    display: flex !important;
    overflow-x: auto;
    gap: 16px;
    scroll-snap-type: x mandatory;
    padding-bottom: 14px;
  }

  body.es-page .capabilities-grid .service-card {
    min-width: 82%;
    scroll-snap-align: center;
  }

  body.es-page .capabilities-grid::-webkit-scrollbar {
    height: 4px;
  }

  body.es-page .capabilities-grid::-webkit-scrollbar-thumb {
    background: var(--gold2);
    border-radius: 20px;
  }
}

@media (max-width: 560px) {
  body.es-page .ecosystem-row {
  display: flex !important;
  overflow-x: auto;
  overflow-y: hidden;
  gap: 16px;
  padding: 18px;
  scroll-snap-type: x mandatory;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  scrollbar-width: none;
  -ms-overflow-style: none;
  overscroll-behavior-x: contain;
  overscroll-behavior-y: auto;
  touch-action: pan-x pan-y;
}

  body.es-page .ecosystem-row::-webkit-scrollbar {
    display: none;
  }

  body.es-page .ecosystem-row .row-intro,
  body.es-page .ecosystem-row .brand-card {
    flex: 0 0 86%;
    min-width: 86%;
    min-height: 420px;
    scroll-snap-align: center;
    border: 1px solid var(--line);
    transform: none !important;
  }

  body.es-page .ecosystem-row .brand-card {
    background-size: cover;
    background-position: center;
    transition: border-color .25s ease, filter .25s ease;
  }

  body.es-page .ecosystem-row .brand-card:hover,
  body.es-page .ecosystem-row .brand-card:focus-visible,
  body.es-page .ecosystem-row .brand-card:active {
    transform: none !important;
  }
}

@media (max-width: 560px) {
  body.es-page .brand-modal {
    align-items: flex-start;
    padding: 96px 14px 24px;
  }

  body.es-page .brand-modal__dialog {
    max-height: calc(100vh - 120px);
  }

  body.es-page .brand-modal__image {
    min-height: 220px;
  }
}

@media (max-width: 560px) {
  body.es-page .brand-modal__image {
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    background-color: #050b13;
  }
}

@media (max-width: 560px) {
  body.es-page .approach-grid {
    display: flex !important;
    overflow-x: auto;
    gap: 16px;
    scroll-snap-type: x mandatory;
    padding: 18px 0 8px;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  body.es-page .approach-grid::-webkit-scrollbar {
    display: none;
  }

  body.es-page .approach-grid article {
    flex: 0 0 84%;
    min-height: 300px;
    scroll-snap-align: center;
    border: 1px solid var(--line);
    padding: 34px 22px;
    text-align: center;
  }

  body.es-page .approach-grid i {
    font-size: 42px;
    margin-bottom: 18px;
  }
}

@media (max-width: 560px) {
  body.es-page .experience-grid {
    display: flex !important;
    overflow-x: auto;
    gap: 16px;
    scroll-snap-type: x mandatory;
    padding: 18px 0 8px;
    border: 0;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  body.es-page .experience-grid::-webkit-scrollbar {
    display: none;
  }

  body.es-page .experience-grid article {
    flex: 0 0 84%;
    min-height: 360px;
    scroll-snap-align: center;
    border: 1px solid var(--line);
    padding: 34px 26px;
  }

  body.es-page .experience-grid article:last-child {
    border-right: 1px solid var(--line);
  }
}

@media (max-width: 560px) {
  body.es-page .philosophy-content h2 {
    font-size: 50px;
    line-height: 0.92;
    max-width: 100%;
    word-break: normal;
  }
}

@media (max-width: 560px) {
  body.es-page .ecosystem-icons-full {
    display: flex !important;
    overflow-x: auto;
    overflow-y: hidden;
    gap: 16px;
    padding: 20px 34px 26px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  body.es-page .ecosystem-icons-full::-webkit-scrollbar {
    display: none;
  }

  body.es-page .ecosystem-icons-full article {
    flex: 0 0 100%;
    min-height: 90px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 18px;
    padding: 22px 18px;
    border: 1px solid var(--line);
    background: rgba(7, 17, 29, 0.72);
    scroll-snap-align: center;
  }

  body.es-page .ecosystem-icons-full p {
    margin: 0;
    text-align: left;
    font-size: 12px;
  }
}

@media (max-width: 560px) {
  body.es-page .platform-values-carousel {
    display: flex !important;
    overflow-x: auto;
    overflow-y: hidden;
    gap: 16px;
    padding: 20px 34px 26px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  body.es-page .platform-values-carousel::-webkit-scrollbar {
    display: none;
  }

  body.es-page .platform-values-carousel article {
    flex: 0 0 100%;
    min-height: 90px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 18px;
    padding: 22px 18px;
    border: 1px solid var(--line);
    background: rgba(7, 17, 29, 0.72);
    scroll-snap-align: center;
  }

  body.es-page .platform-values-carousel span {
    margin: 0;
    text-align: left;
    font-size: 12px;
  }
}

@media (max-width: 560px) {
  body.es-page .experiences-values-strip {
    display: flex !important;
    overflow-x: auto;
    overflow-y: hidden;
    gap: 16px;
    padding: 20px 34px 26px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  body.es-page .experiences-values-strip::-webkit-scrollbar {
    display: none;
  }

  body.es-page .experiences-values-strip article {
    flex: 0 0 100%;
    min-height: 90px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 18px;
    padding: 22px 18px;
    border: 1px solid var(--line);
    background: rgba(7, 17, 29, 0.72);
    scroll-snap-align: center;
  }

  body.es-page .experiences-values-strip span {
    margin: 0;
    text-align: left;
    font-size: 12px;
  }
}

.origen-premium-section {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 0.9fr 1.25fr;
  align-items: center;
  gap: 60px;
  padding: 120px 6vw;
  background: linear-gradient(90deg, #06101b 0%, #07111d 100%);
}

.origen-premium-copy {
  max-width: 650px;
}

.origen-premium-copy h2 {
  font-size: clamp(42px, 4.6vw, 72px);
}

.origen-premium-copy p {
  margin-top: 24px;
  max-width: 560px;
  font-size: 17px;
}

.origen-premium-image {
  min-height: 620px;
  border: 1px solid var(--line);
  background-image:
    linear-gradient(
      90deg,
      rgba(5, 8, 15, 0.06),
      rgba(5, 8, 15, 0.22)
    ),
    url('../assets/img/origen-bg.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  box-shadow: 0 35px 80px rgba(0, 0, 0, 0.35);
}

@media (max-width: 820px) {
  .origen-premium-section {
    grid-template-columns: 1fr;
    padding: 75px 18px;
    gap: 34px;
  }

  .origen-premium-copy h2 {
    font-size: 36px;
  }

  .origen-premium-image {
    min-height: 340px;
  }
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 28px;
  color: var(--gold2);
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 2px;
  padding-bottom: 7px;
  border-bottom: 1px solid rgba(192, 158, 88, .45);
  transition: .25s ease;
}

.text-link:hover {
  transform: translateX(6px);
  border-color: var(--gold2);
}

@media (max-width: 560px) {
  body.es-page .hero-pillars-carousel {
    display: flex !important;
    grid-template-columns: unset !important;
    overflow-x: auto;
    overflow-y: hidden;
    gap: 16px;
    padding: 20px 34px 26px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  body.es-page .hero-pillars-carousel::-webkit-scrollbar {
    display: none;
  }

  body.es-page .hero-pillars-carousel article {
    flex: 0 0 100%;
    min-width: 100%;
    min-height: 90px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 18px;
    border: 1px solid var(--line);
    background: rgba(7, 17, 29, 0.72);
    scroll-snap-align: center;
  }
}

.compromiso-valores {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 55px;
}

.compromiso-valor {
  text-align: center;
  border-right: 1px solid var(--line);
  padding: 18px;
}

.compromiso-valor:last-child {
  border-right: 0;
}

.compromiso-valor span {
  color: var(--gold2);
  display: block;
  margin-bottom: 12px;
}

.compromiso-valor i {
  font-size: 34px;
  color: var(--gold2);
  line-height: 1;
}

.compromiso-valor b {
  text-transform: uppercase;
  font-size: 12px;
  line-height: 1.35;
  letter-spacing: 1.5px;
}

@media (max-width: 560px) {
  body.es-page .compromiso-valores {
    grid-template-columns: repeat(2, 1fr);
    margin-top: 45px;
  }

  body.es-page .compromiso-valor {
    min-height: 145px;
    padding: 26px 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }

  body.es-page .compromiso-valor:nth-child(2n) {
    border-right: 0;
  }

  body.es-page .compromiso-valor:nth-last-child(-n + 2) {
    border-bottom: 0;
  }

  body.es-page .compromiso-valor b {
    text-align: center;
    font-size: 11px;
    line-height: 1.45;
  }
}

@media (max-width: 560px) {
  body.es-page .innovation-stats-carousel {
    display: flex;
    overflow-x: auto;
    overflow-y: hidden;
    gap: 16px;
    padding: 20px 0 8px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  body.es-page .innovation-stats-carousel::-webkit-scrollbar {
    display: none;
  }

  body.es-page .innovation-stats-carousel article {
    flex: 0 0 100%;
    min-height: 150px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    border: 1px solid var(--line);
    padding: 26px 18px;
    scroll-snap-align: center;
    text-align: center;
  }
}

/* POLÍTICA DE PRIVACIDAD */

.privacy-page {
  background: #07111d;
  min-height: 100vh;
}

.privacy-hero {
  min-height: 520px;
  display: flex;
  align-items: center;
  padding: 140px 7vw 90px;
  background:
    linear-gradient(90deg, rgba(7,17,29,.96), rgba(7,17,29,.55)),
    url("../assets/img/contacto-bg.webp") center/cover no-repeat;
}

.privacy-hero-content {
  max-width: 820px;
}

.privacy-hero h1 {
  margin: 10px 0 28px;
  font-size: clamp(58px, 7vw, 104px);
}

.privacy-date {
  display: inline-block;
  margin-top: 32px;
  color: var(--gold2);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.privacy-intro,
.privacy-accordion,
.privacy-contact {
  max-width: 1100px;
  margin: 0 auto;
}

.privacy-intro {
  padding: 70px 6vw 30px;
}

.privacy-back {
  display: inline-block;
  margin-bottom: 34px;
  color: var(--gold2);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 12px;
}

.privacy-accordion {
  padding: 20px 6vw 90px;
}

.privacy-item {
  border-top: 1px solid var(--line);
}

.privacy-item:last-child {
  border-bottom: 1px solid var(--line);
}

.privacy-toggle {
  width: 100%;
  padding: 28px 0;
  border: 0;
  background: transparent;
  color: var(--white);
  display: flex;
  justify-content: space-between;
  gap: 20px;
  cursor: pointer;
  text-align: left;
}

.privacy-toggle span {
  font-family: var(--serif);
  font-size: 28px;
}

.privacy-toggle b {
  color: var(--gold2);
  font-size: 28px;
  font-weight: 400;
}

.privacy-panel {
  display: none;
  padding: 0 0 32px;
}

.privacy-item.active .privacy-panel {
  display: block;
}

.privacy-item.active .privacy-toggle b {
  transform: rotate(45deg);
}

.privacy-panel p,
.privacy-panel li {
  color: var(--muted);
  line-height: 1.85;
  font-size: 16px;
}

.privacy-panel ul {
  margin: 16px 0 0 22px;
}

.privacy-contact {
  margin-bottom: 90px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.025);
}

.privacy-contact-image {
  min-height: 320px;
  background: url("../assets/img/sobre-nosotros.webp") center/cover no-repeat;
}

.privacy-contact-copy {
  padding: 60px;
}

.privacy-contact-copy span,
.privacy-contact-copy a {
  color: var(--gold2);
}

.privacy-contact-copy h3 {
  margin: 18px 0;
}

.privacy-contact-copy small {
  margin-top: 24px;
  display: block;
  color: var(--muted);
}

@media (max-width: 720px) {
  .privacy-hero {
    min-height: 430px;
    padding: 110px 24px 70px;
  }

  .privacy-hero h1 {
    font-size: 52px;
  }

  .privacy-contact {
    grid-template-columns: 1fr;
  }

  .privacy-contact-copy {
    padding: 34px 24px;
  }

  .privacy-toggle span {
    font-size: 22px;
  }
}

/* Color dorado para los títulos del acordeón legal */
.privacy-toggle span {
  color: #c99b45;
}

/* Color dorado para el número y el símbolo + / x */
.privacy-toggle b {
  color: #c99b45;
}

/* Cuando está abierto, mantener el título dorado */
.privacy-item.active .privacy-toggle span,
.privacy-item.active .privacy-toggle b {
  color: #c99b45;
}

/* Opcional: borde dorado suave cuando el bloque está abierto */
.privacy-item.active {
  border-color: rgba(201, 155, 69, 0.6);
}

/** sasasa **/

/* Privacidad / Términos en 2 columnas */
.privacy-accordion {
  max-width: 1280px;
  margin: 55px auto 90px;
  padding: 0 42px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 72px;
  row-gap: 0;
  align-items: start;
}

.privacy-item {
  border-bottom: 1px solid rgba(201, 155, 69, 0.22);
}

.privacy-toggle span,
.privacy-toggle b {
  color: #c99b45;
}

/* El punto abierto NO ocupa todo el ancho */
.privacy-item.active {
  grid-column: auto;
}

/* Responsive */
@media (max-width: 900px) {
  .privacy-accordion {
    grid-template-columns: 1fr;
    padding: 0 22px;
    margin-top: 40px;
  }
}

.footer-location {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.peru-flag {
  width: 24px;
  height: 16px;
  display: inline-block;
  border-radius: 3px;
  background: linear-gradient(
    90deg,
    #d91023 0 33.33%,
    #ffffff 33.33% 66.66%,
    #d91023 66.66% 100%
  );
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.18);
}

.footer-logo-symbol {
  width: 58px;
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-logo-symbol img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.footer-logo-symbol {
  margin-left: 96px; /* ajusta según tu vista */
}

.footer-email {
  display: inline-block;
  margin-top: 22px;
  color: #c99b45;
  text-decoration: none;
  transition: .3s;
}

.footer-email:hover {
  opacity: .8;
}

.innovation-metrics-desktop {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0;
  width: 100%;
}

.innovation-metrics-desktop article {
  flex: 1;
  padding: 0 48px;
  border-left: 1px solid var(--line);
}

.innovation-metrics-desktop strong {
  display: block;
  color: var(--gold2);
  font-family: var(--serif);
  font-size: 68px;
  line-height: 1;
  margin-bottom: 18px;
}

.innovation-metrics-desktop span {
  display: block;
  max-width: 190px;
  color: var(--white);
  font-size: 15px;
  line-height: 1.6;
  font-weight: 500;
  text-transform: none;
  letter-spacing: 0;
}


/* =========================================================
   FIX FINAL - BLOQUE MÉTRICAS DE INNOVACIÓN (ESCRITORIO/MÓVIL)
   Evita conflictos con .innovation-stats original y con el carrusel antiguo.
   ========================================================= */

@media (min-width: 901px) {
  body.es-page .innovation-stats {
    display: grid !important;
    grid-template-columns: minmax(300px, 360px) minmax(0, 1fr) !important;
    gap: 76px !important;
    align-items: center !important;
    padding: 68px 6vw !important;
  }

  body.es-page .innovation-stats > div:first-child {
    grid-column: auto !important;
    max-width: 360px !important;
  }

  body.es-page .innovation-stats > .innovation-metrics-desktop {
    grid-column: auto !important;
    display: grid !important;
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    align-items: center !important;
    width: 100% !important;
    min-width: 0 !important;
    gap: 0 !important;
  }

  body.es-page .innovation-metrics-desktop article {
    min-width: 0 !important;
    min-height: 190px !important;
    padding: 0 clamp(28px, 3.2vw, 64px) !important;
    border-left: 1px solid var(--line) !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: center !important;
    text-align: center !important;
  }

  body.es-page .innovation-metrics-desktop strong {
    display: block !important;
    color: var(--gold2) !important;
    font-family: var(--serif) !important;
    font-size: clamp(58px, 4.4vw, 76px) !important;
    font-weight: 400 !important;
    line-height: 0.9 !important;
    margin-bottom: 22px !important;
  }

  body.es-page .innovation-metrics-desktop span {
    display: block !important;
    max-width: 245px !important;
    color: var(--white) !important;
    font-family: var(--sans) !important;
    font-size: 14px !important;
    line-height: 1.5 !important;
    letter-spacing: 0.8px !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    word-break: normal !important;
    overflow-wrap: normal !important;
    hyphens: none !important;
  }
}

@media (max-width: 900px) {
  body.es-page .innovation-stats {
    grid-template-columns: 1fr !important;
    gap: 36px !important;
  }

  body.es-page .innovation-stats > div:first-child,
  body.es-page .innovation-stats > .innovation-metrics-desktop {
    grid-column: auto !important;
  }

  body.es-page .innovation-metrics-desktop {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    border-top: 1px solid var(--line);
  }

  body.es-page .innovation-metrics-desktop article {
    padding: 30px 20px !important;
    border-left: 0 !important;
    border-bottom: 1px solid var(--line);
    text-align: center;
  }

  body.es-page .innovation-metrics-desktop strong {
    font-size: 56px !important;
  }

  body.es-page .innovation-metrics-desktop span {
    max-width: 240px !important;
    margin: 0 auto !important;
  }
}

@media (max-width: 560px) {
  body.es-page .innovation-metrics-desktop {
    display: flex !important;
    overflow-x: auto;
    gap: 16px;
    padding: 18px 0 8px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  body.es-page .innovation-metrics-desktop::-webkit-scrollbar {
    display: none;
  }

  body.es-page .innovation-metrics-desktop article {
    flex: 0 0 82%;
    min-height: 160px;
    border: 1px solid var(--line) !important;
    scroll-snap-align: center;
  }
}

/* Footer: redes sociales igual que las columnas del footer */
.footer-social {
  border-left: 1px solid var(--line);
  padding-left: 48px;
}

.footer-social h3 {
  color: var(--gold2);
  text-transform: uppercase;
  letter-spacing: 4px;
  font-family: var(--sans);
  font-size: 17px;
  font-weight: 500;
  margin-bottom: 28px;
}

.footer-social p {
  max-width: 360px;
  color: var(--muted);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.85;
  margin-bottom: 26px;
}

.footer-social .socials {
  margin-top: 0;
}

@media (max-width: 1180px) {
  .footer-social {
    border-left: 0;
    padding-left: 0;
  }
}

/* Animación hover para enlaces del footer */
.footer-col a {
  position: relative;
  width: fit-content;
  transition: color 0.28s ease, transform 0.28s ease;
}

.footer-col a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 1px;
  background: var(--gold2);
  transition: width 0.28s ease;
}

.footer-col a:hover {
  color: var(--gold2);
  transform: translateX(4px);
}

.footer-col a:hover::after {
  width: 100%;
}

.footer-top-clean {
  grid-template-columns: 1.8fr 1fr 1.4fr 1.5fr;
}

.footer-top-clean {
  grid-template-columns: 1.7fr 0.9fr 1.1fr 1.4fr;
  gap: 56px;
  padding-top: 80px;
  padding-bottom: 68px;
  background-image:
    linear-gradient(
      90deg,
      rgba(7, 17, 29, 1) 0%,
      rgba(7, 17, 29, 0.96) 58%,
      rgba(7, 17, 29, 0.72) 100%
    ),
    url("../assets/img/compromiso-collage.webp");
}

.footer-brand p {
  max-width: 460px;
}

.footer-social p {
  max-width: 340px;
}

.footer-bottom {
  padding-top: 28px;
  padding-bottom: 28px;
}

.footer-top-clean {
  grid-template-columns: 1fr 1.2fr 1.5fr;
  justify-content: center;
  padding-top: 76px;
  padding-bottom: 70px;
}

.footer-top-map {
  grid-template-columns: 0.9fr 1.1fr 1.3fr 1.45fr;
}

.footer-map {
  border-left: 1px solid var(--line);
  padding-left: 48px;
}

.footer-map h3 {
  color: var(--gold2);
  text-transform: uppercase;
  letter-spacing: 4px;
  font-family: var(--sans);
  font-size: 17px;
  font-weight: 500;
  margin-bottom: 28px;
}

.footer-map-frame {
  width: 100%;
  max-width: 360px;
  height: 210px;
  border: 1px solid var(--line);
  overflow: hidden;
}

.footer-map-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(100%) invert(92%) contrast(90%);
}

@media (max-width: 1180px) {
  .footer-top-map {
    grid-template-columns: 1fr 1fr;
  }

  .footer-map {
    border-left: 0;
    padding-left: 0;
  }
}

@media (max-width: 720px) {
  .footer-top-map {
    grid-template-columns: 1fr;
  }

  .footer-map-frame {
    max-width: 100%;
    height: 240px;
  }
}

.footer-top-map {
  grid-template-columns: 1fr 1.2fr 1.6fr;
}

.footer-bottom-center {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
}

.footer-bottom-center .footer-location {
  justify-self: start;
}

.footer-bottom-center > span:nth-child(2) {
  justify-self: center;
}

.footer-facebook {
  justify-self: end;
  width: 34px;
  height: 34px;
  border: 1px solid var(--gold2);
  border-radius: 6px;
  display: inline-grid;
  place-items: center;
  color: var(--gold2);
}

.footer-facebook i {
  font-size: 18px;
}

.direct-channels a {
  color: var(--muted);
  transition: color 0.25s ease;
}

.direct-channels a:hover {
  color: var(--gold2);
}

.footer-top-map {
  grid-template-columns: 1fr 1.2fr 1.65fr;
  gap: 72px;
  padding-top: 78px;
  padding-bottom: 72px;
  align-items: start;
}

.footer-map-location {
  margin-top: 18px;
  color: var(--gold2);
}

.footer-bottom-simple {
  justify-content: center;
  text-align: center;
  padding-top: 28px;
  padding-bottom: 28px;
}

.footer-bottom-simple span {
  margin: 0 auto;
}

@media (max-width: 1180px) {
  .footer-top-map {
    grid-template-columns: 1fr;
    gap: 44px;
  }
}


.footer-minimal-inner {
  max-width: 980px;
  margin: 0 auto;
  padding: 82px 24px 46px;
  text-align: center;
}

.footer-group {
  margin-bottom: 48px;
}

.footer-group h3 {
  color: var(--gold2);
  font-family: var(--sans);
  font-size: 17px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 7px;
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
}

.footer-group h3::before,
.footer-group h3::after {
  content: "";
  width: 180px;
  height: 1px;
  background: var(--line);
}

.footer-links-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 42px;
  flex-wrap: wrap;
}

.footer-links-row a,
.footer-location {
  color: var(--white);
  font-size: 18px;
}

.footer-links-row a {
  position: relative;
  transition: color 0.28s ease;
}

.footer-links-row a:hover {
  color: var(--gold2);
}

.footer-legal-row {
  gap: 36px;
}

.footer-facebook {
  width: 48px;
  height: 48px;
  margin: 8px auto 42px;
  border: 1px solid var(--gold2);
  border-radius: 6px;
  display: grid;
  place-items: center;
  color: var(--gold2);
}

.footer-facebook i {
  font-size: 24px;
}

.footer-copy {
  border-top: 1px solid var(--line);
  padding-top: 28px;
  color: #9a8d7b;
  font-size: 15px;
}

@media (max-width: 720px) {
  .footer-group h3::before,
  .footer-group h3::after {
    width: 58px;
  }

  .footer-links-row {
    gap: 20px;
    flex-direction: column;
  }
}

.contact-form select {
  background-color: #07111d;
  color: var(--text);
  border: 1px solid rgba(201, 155, 69, 0.65);
  appearance: auto;
}

.contact-form select option {
  background-color: #07111d;
  color: var(--text);
}

.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 160px;
  background: linear-gradient(
    180deg,
    rgba(7, 17, 29, 0) 0%,
    rgba(7, 17, 29, 0.55) 45%,
    #07111d 100%
  );
  pointer-events: none;
  z-index: 2;
}

.philosophy-section {
  position: relative;
  overflow: hidden;
}

.philosophy-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      180deg,
      #07111d 0%,
      rgba(7, 17, 29, 0) 16%,
      rgba(7, 17, 29, 0) 82%,
      #07111d 100%
    );
  pointer-events: none;
  z-index: 1;
}

.philosophy-content {
  position: relative;
  z-index: 2;
}

/* Compromiso: collage premium sin recorte */
.commitment-section {
  grid-template-columns: 0.78fr 1.35fr;
  align-items: center;
  gap: 78px;
  padding: 95px 6vw;
}

.commitment-copy {
  padding: 0;
  max-width: 560px;
}

.commitment-copy h2 {
  font-size: clamp(46px, 4.2vw, 68px);
  line-height: 0.96;
}

.commitment-copy p {
  max-width: 520px;
  font-size: 16px;
  line-height: 1.8;
}

.mosaic {
  width: 100%;
  aspect-ratio: 1.45 / 1;
  min-height: 0;
  margin: 0;
  position: relative;
  overflow: hidden;
  border: 0;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  background-color: transparent;
  box-shadow:
    0 35px 90px rgba(0, 0, 0, 0.45),
    0 0 80px rgba(192, 158, 88, 0.08);
}
.mosaic::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(7, 17, 29, 0.08) 0%,
    rgba(7, 17, 29, 0.02) 50%,
    rgba(7, 17, 29, 0.08) 100%
  );
  pointer-events: none;
}

@media (max-width: 1180px) {
  .commitment-section {
    grid-template-columns: 1fr;
    gap: 46px;
    padding: 80px 5vw;
  }

  .mosaic {
    aspect-ratio: 1.45 / 1;
    width: 100%;
  }
}

@media (max-width: 768px) {
  .mosaic {
    aspect-ratio: 0.72 / 1;
    background-size: contain;
  }
}

.mosaic {
  border: 0;
  box-shadow: none;
}

.whatsapp-float {
  position: fixed;
  right: 28px;
  bottom: 28px;
  width: 58px;
  height: 58px;
  z-index: 9999;
  border-radius: 50%;
  background: #25d366;
  color: #07111d;
  display: grid;
  place-items: center;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.whatsapp-float i {
  font-size: 34px;
}

.whatsapp-float:hover {
  transform: translateY(-4px) scale(1.04);
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.45);
}

@media (max-width: 768px) {
  .whatsapp-float {
    right: 18px;
    bottom: 18px;
    width: 54px;
    height: 54px;
  }
}

/* =========================================================
   FIX FINAL - BLOQUE MÉTRICAS DE INNOVACIÓN PARA INGLÉS
   ========================================================= */

@media (min-width: 901px) {
  body.en-page .innovation-stats {
    display: grid !important;
    grid-template-columns: minmax(300px, 360px) minmax(0, 1fr) !important;
    gap: 76px !important;
    align-items: center !important;
    padding: 68px 6vw !important;
  }

  body.en-page .innovation-stats > div:first-child {
    grid-column: auto !important;
    max-width: 360px !important;
  }

  body.en-page .innovation-stats > .innovation-metrics-desktop {
    grid-column: auto !important;
    display: grid !important;
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    align-items: center !important;
    width: 100% !important;
    min-width: 0 !important;
    gap: 0 !important;
  }

  body.en-page .innovation-metrics-desktop article {
    min-width: 0 !important;
    min-height: 190px !important;
    padding: 0 clamp(28px, 3.2vw, 64px) !important;
    border-left: 1px solid var(--line) !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: center !important;
    text-align: center !important;
  }

  body.en-page .innovation-metrics-desktop strong {
    display: block !important;
    color: var(--gold2) !important;
    font-family: var(--serif) !important;
    font-size: clamp(58px, 4.4vw, 76px) !important;
    font-weight: 400 !important;
    line-height: 0.9 !important;
    margin-bottom: 22px !important;
  }

  body.en-page .innovation-metrics-desktop span {
    display: block !important;
    max-width: 245px !important;
    color: var(--white) !important;
    font-family: var(--sans) !important;
    font-size: 14px !important;
    line-height: 1.5 !important;
    letter-spacing: 0.8px !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    word-break: normal !important;
    overflow-wrap: normal !important;
    hyphens: none !important;
  }
}

@media (max-width: 900px) {
  body.en-page .innovation-stats {
    grid-template-columns: 1fr !important;
    gap: 36px !important;
  }

  body.en-page .innovation-stats > div:first-child,
  body.en-page .innovation-stats > .innovation-metrics-desktop {
    grid-column: auto !important;
  }

  body.en-page .innovation-metrics-desktop {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    border-top: 1px solid var(--line);
  }

  body.en-page .innovation-metrics-desktop article {
    padding: 30px 20px !important;
    border-left: 0 !important;
    border-bottom: 1px solid var(--line);
    text-align: center;
  }

  body.en-page .innovation-metrics-desktop strong {
    font-size: 56px !important;
  }

  body.en-page .innovation-metrics-desktop span {
    max-width: 240px !important;
    margin: 0 auto !important;
  }
}

@media (max-width: 560px) {
  body.en-page .innovation-metrics-desktop {
    display: flex !important;
    overflow-x: auto;
    gap: 16px;
    padding: 18px 0 8px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  body.en-page .innovation-metrics-desktop::-webkit-scrollbar {
    display: none;
  }

  body.en-page .innovation-metrics-desktop article {
    flex: 0 0 82%;
    min-height: 160px;
    border: 1px solid var(--line) !important;
    scroll-snap-align: center;
  }
}

/* =========================================================
   FIX MÓVIL - Reducir espacio superior en Quiénes somos
   ========================================================= */

@media (max-width: 768px) {
  .about-section {
    padding-top: 56px !important;
  }

  .about-section .copy-block {
    padding-top: 0 !important;
  }
}

@media (max-width: 480px) {
  .about-section {
    padding-top: 28px !important;
  }
}

/* =========================================================
   FIX MÓVIL - Reducir espacio superior en Nuestro origen
   ========================================================= */

@media (max-width: 768px) {
  .origen-premium-section {
    padding-top: 52px !important;
  }

  .origen-premium-copy {
    padding-top: 0 !important;
  }
}

@media (max-width: 480px) {
  .origen-premium-section {
    padding-top: 36px !important;
  }
}

/* =========================================================
   FIX MÓVIL - Nuestra filosofía
   ========================================================= */

@media (max-width: 768px) {
  .philosophy-section {
    min-height: auto !important;
    padding: 82px 7vw 72px !important;
  }

  .philosophy-content {
    max-width: 100% !important;
  }

  .philosophy-content h2 {
    font-size: clamp(42px, 12vw, 64px) !important;
    line-height: 0.92 !important;
    letter-spacing: 0.04em !important;
  }

  .philosophy-content .eyebrow {
    margin-bottom: 22px !important;
  }
}

@media (max-width: 480px) {
  .philosophy-section {
    padding: 68px 7vw 64px !important;
  }

  .philosophy-content h2 {
    font-size: clamp(38px, 11vw, 52px) !important;
    line-height: 0.95 !important;
    letter-spacing: 0.035em !important;
  }
}

/* =========================================================
   FIX MÓVIL - Reducir espacio superior en Nuestro compromiso
   ========================================================= */

@media (max-width: 768px) {
  .commitment-section {
    padding-top: 54px !important;
  }

  .commitment-copy {
    padding-top: 0 !important;
  }
}

@media (max-width: 480px) {
  .commitment-section {
    padding-top: 38px !important;
  }
}

/* =========================================================
   CARRUSEL MÓVIL - Nuestra filosofía: Naturaleza / Arte / Ciencia
   ========================================================= */

@media (max-width: 768px) {
  .philosophy-values-carousel {
    display: flex !important;
    gap: 18px !important;
    overflow-x: auto !important;
    scroll-snap-type: x mandatory !important;
    scroll-behavior: smooth !important;
    scrollbar-width: none !important;
    padding: 6px 2px 16px !important;
  }

  .philosophy-values-carousel::-webkit-scrollbar {
    display: none !important;
  }

  .philosophy-values-carousel article {
    flex: 0 0 82% !important;
    min-height: 210px !important;
    scroll-snap-align: center !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: center !important;
    text-align: center !important;
  }
}

@media (max-width: 480px) {
  .philosophy-values-carousel {
    gap: 16px !important;
    padding-bottom: 12px !important;
  }

  .philosophy-values-carousel article {
    flex: 0 0 86% !important;
    min-height: 195px !important;
    padding: 28px 22px !important;
  }

  .philosophy-values-carousel article span {
    margin-bottom: 14px !important;
  }

  .philosophy-values-carousel article b {
    margin-bottom: 10px !important;
  }

  .philosophy-values-carousel article p {
    max-width: 240px !important;
    margin: 0 auto !important;
  }
}

/* =========================================================
   FIX MÓVIL - Centrar frase final de Nuestra filosofía
   ========================================================= */

@media (max-width: 768px) {
  .philosophy-section .quote-box {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    padding: 28px 24px !important;
    min-height: 96px !important;
    margin-top: 28px !important;
  }
}

@media (max-width: 480px) {
  .philosophy-section .quote-box {
    padding: 26px 20px !important;
    min-height: 90px !important;
    font-size: 12px !important;
    line-height: 1.7 !important;
    letter-spacing: 0.22em !important;
  }
}

/* =========================================================
   FIX MÓVIL - Acercar mosaico de Nuestro compromiso
   ========================================================= */

@media (max-width: 768px) {
  .commitment-section {
    gap: 34px !important;
    padding-bottom: 56px !important;
  }

  .commitment-section .section-actions {
    margin-bottom: 0 !important;
  }

  .commitment-section .mosaic {
    margin-top: -8px !important;
    width: 100% !important;
  }
}

@media (max-width: 480px) {
  .commitment-section {
    gap: 22px !important;
    padding-bottom: 42px !important;
  }

  .commitment-section .mosaic {
    margin-top: -58px !important;
    min-height: 230px !important;
  }
}

/* =========================================================
   FIX MÓVIL - Reducir espacio inferior del mosaico compromiso
   ========================================================= */

@media (max-width: 768px) {
  .commitment-section {
    padding-bottom: 42px !important;
  }

  .commitment-section .mosaic {
    margin-bottom: 0 !important;
  }
}

@media (max-width: 480px) {
  .commitment-section {
    padding-bottom: 0px !important;
  }

  .commitment-section .mosaic {
    margin-bottom: 0 !important;
  }
}

/* =========================================================
   FIX MÓVIL - Reducir espacio superior en Qué hacemos
   ========================================================= */

@media (max-width: 768px) {
  .capabilities-section {
    padding-top: 56px !important;
    min-height: auto !important;
  }

  .capabilities-section .center-title {
    padding-top: 0 !important;
    margin-top: 0 !important;
  }
}

@media (max-width: 480px) {
  .capabilities-section {
    padding-top: 38px !important;
  }
}

/* =========================================================
   CONTACTO MODERNO + MINIMAPA
   ========================================================= */

.contact-body-map {
  align-items: stretch;
}

.contact-form-modern h2 {
  margin: 14px 0 34px;
  color: var(--white);
  font-family: var(--serif);
  font-size: clamp(38px, 3.2vw, 58px);
  font-weight: 500;
  line-height: 1;
}

.contact-form-modern .two-cols {
  gap: 18px;
}

.input-icon {
  position: relative;
  width: 100%;
}

.input-icon i {
  position: absolute;
  left: 24px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gold2);
  font-size: 22px;
  z-index: 2;
  pointer-events: none;
}

.input-icon input,
.input-icon select,
.input-icon textarea {
  width: 100%;
  padding-left: 64px !important;
}

.textarea-icon i {
  top: 30px;
  transform: none;
}

.contact-form-modern textarea {
  min-height: 190px;
}

.select-icon select {
  appearance: auto;
}

.direct-channels-modern {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.direct-channels-modern > .eyebrow {
  margin-bottom: 18px;
}

.direct-card {
  position: relative;
  display: grid;
  grid-template-columns: 62px 1fr 24px;
  gap: 20px;
  align-items: center;
  padding: 22px 24px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.025);
  transition: border-color 0.25s ease, background 0.25s ease, transform 0.25s ease;
}

.direct-card:hover {
  border-color: rgba(177, 138, 87, 0.45);
  background: rgba(177, 138, 87, 0.055);
  transform: translateY(-2px);
}

.direct-card .channel-icon {
  width: 52px;
  height: 52px;
  border: 1px solid rgba(177, 138, 87, 0.45);
  display: grid;
  place-items: center;
  color: var(--gold2);
  font-size: 27px;
}

.direct-card b {
  display: block;
  margin-bottom: 8px;
  color: var(--gold2);
  font-size: 12px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.direct-card p {
  margin: 0;
  color: var(--white);
  font-size: 17px;
  line-height: 1.55;
}

.direct-card a {
  color: inherit;
  text-decoration: none;
}

.direct-card a:hover {
  color: var(--gold2);
}

.direct-arrow {
  color: var(--gold2);
  font-size: 22px;
  opacity: 0.85;
}

.direct-card-global {
  grid-template-columns: 62px 1fr;
}

.contact-map-card {
  margin: 10px 0 14px;
  border: 1px solid rgba(177, 138, 87, 0.35);
  background: rgba(255, 255, 255, 0.025);
  overflow: hidden;
}

.contact-map-card iframe {
  display: block;
  width: 100%;
  height: 240px;
  border: 0;
  filter: grayscale(100%) invert(92%) contrast(88%);
  opacity: 0.78;
}

.contact-map-card:hover iframe {
  opacity: 0.95;
}

.map-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 22px;
  border-top: 1px solid rgba(177, 138, 87, 0.28);
  color: var(--gold2);
  text-decoration: none;
  font-size: 12px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  font-weight: 700;
}

.map-link:hover {
  background: rgba(177, 138, 87, 0.06);
}

/* Responsive */
@media (max-width: 900px) {
  .contact-form-modern h2 {
    font-size: clamp(34px, 9vw, 48px);
  }

  .direct-card {
    grid-template-columns: 54px 1fr 20px;
    padding: 20px;
  }

  .direct-card .channel-icon {
    width: 48px;
    height: 48px;
  }

  .contact-map-card iframe {
    height: 220px;
  }
}

@media (max-width: 560px) {
  .contact-form-modern .two-cols {
    grid-template-columns: 1fr;
  }

  .input-icon i {
    left: 20px;
    font-size: 20px;
  }

  .input-icon input,
  .input-icon select,
  .input-icon textarea {
    padding-left: 56px !important;
  }

  .direct-card {
    grid-template-columns: 50px 1fr 18px;
    gap: 16px;
    padding: 18px;
  }

  .direct-card p {
    font-size: 15px;
  }

  .direct-card-global {
    grid-template-columns: 50px 1fr;
  }

  .contact-map-card iframe {
    height: 200px;
  }

  .map-link {
    padding: 15px 18px;
    font-size: 11px;
    letter-spacing: 0.2em;
  }
}

/* =========================================================
   FIX DEFINITIVO - Contacto moderno
   ========================================================= */

.contact-form-modern,
.direct-channels-modern {
  min-width: 0;
}

.contact-form-modern h2 {
  margin: 14px 0 34px;
  color: var(--text-light);
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(42px, 3.6vw, 64px);
  font-weight: 500;
  line-height: 1.05;
}

.contact-form-modern .two-cols {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.contact-form-modern .input-icon {
  position: relative;
  display: block;
  width: 100%;
}

.contact-form-modern .input-icon i {
  position: absolute;
  left: 22px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gold2);
  font-size: 20px;
  line-height: 1;
  pointer-events: none;
  z-index: 2;
}

.contact-form-modern .textarea-icon i {
  top: 24px;
  transform: none;
}

.contact-form-modern .input-icon input,
.contact-form-modern .input-icon select,
.contact-form-modern .input-icon textarea {
  width: 100%;
  margin: 0 !important;
  display: block;
  padding-left: 58px !important;
  box-sizing: border-box;
}

.contact-form-modern .input-icon textarea {
  padding-top: 22px !important;
  min-height: 170px;
}

.contact-form-modern > .input-icon,
.contact-form-modern .two-cols,
.contact-form-modern .btn {
  margin-bottom: 18px;
}

.contact-form-modern select {
  appearance: auto;
}

.direct-channels-modern {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.direct-channels-modern > .eyebrow {
  margin-bottom: 18px;
}

.direct-card {
  position: relative;
  display: grid;
  grid-template-columns: 52px 1fr 18px;
  gap: 16px;
  align-items: center;
  padding: 22px 20px;
  margin: 0 !important;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.02);
}

.direct-card .channel-icon {
  width: 46px;
  height: 46px;
  border: 1px solid rgba(177, 138, 87, 0.35);
  display: grid;
  place-items: center;
  color: var(--gold2);
  font-size: 22px;
}

.direct-card b {
  display: block;
  margin-bottom: 6px;
  color: var(--gold2);
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.direct-card p {
  margin: 0;
  color: var(--text-light);
  font-size: 16px;
  line-height: 1.5;
}

.direct-card a {
  color: inherit;
  text-decoration: none;
}

.direct-card a:hover {
  color: var(--gold2);
}

.direct-arrow {
  color: var(--gold2);
  font-size: 20px;
  line-height: 1;
}

.direct-card-global {
  grid-template-columns: 52px 1fr;
}

.contact-map-card {
  margin: 6px 0 8px;
  border: 1px solid rgba(177, 138, 87, 0.28);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.02);
}

.contact-map-card iframe {
  width: 100%;
  height: 220px;
  border: 0;
  display: block;
  filter: grayscale(100%) contrast(90%) brightness(0.85);
}

.map-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  border-top: 1px solid rgba(177, 138, 87, 0.2);
  color: var(--gold2);
  text-decoration: none;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.map-link:hover {
  background: rgba(177, 138, 87, 0.04);
}

@media (max-width: 900px) {
  .contact-form-modern .two-cols {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .contact-form-modern h2 {
    font-size: clamp(34px, 8vw, 46px);
  }

  .contact-form-modern .input-icon i {
    left: 18px;
    font-size: 18px;
  }

  .contact-form-modern .input-icon input,
  .contact-form-modern .input-icon select,
  .contact-form-modern .input-icon textarea {
    padding-left: 50px !important;
  }

  .direct-card {
    grid-template-columns: 44px 1fr 16px;
    padding: 18px 16px;
  }

  .direct-card .channel-icon {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }

  .direct-card p {
    font-size: 15px;
  }

  .contact-map-card iframe {
    height: 200px;
  }
}

/* =========================================================
   CONTACTO - AJUSTE FINAL LIMPIO
   ========================================================= */

.contact-body.contact-body-map {
  display: grid;
  grid-template-columns: minmax(0, 1.7fr) minmax(320px, 0.9fr);
  gap: 46px;
  align-items: start;
}

.contact-form-modern,
.direct-channels-modern {
  min-width: 0;
}

/* -------------------------
   FORMULARIO
------------------------- */

.contact-form-modern .eyebrow {
  display: inline-block;
  margin-bottom: 14px;
}

.contact-form-modern h2 {
  margin: 0 0 28px;
  color: var(--text-light);
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(40px, 3.4vw, 60px);
  font-weight: 500;
  line-height: 1.05;
}

.contact-form-modern .two-cols {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 14px;
}

/* wrapper de cada campo */
.contact-form-modern .input-icon {
  position: relative;
  width: 100%;
  margin-bottom: 14px;
}

/* iconos */
.contact-form-modern .input-icon i {
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gold2);
  font-size: 18px;
  line-height: 1;
  pointer-events: none;
  z-index: 2;
}

/* textarea: icono arriba */
.contact-form-modern .textarea-icon i {
  top: 22px;
  transform: none;
}

/* MUY IMPORTANTE:
   quitar márgenes viejos de inputs/select/textarea */
.contact-form-modern .input-icon input,
.contact-form-modern .input-icon select,
.contact-form-modern .input-icon textarea {
  width: 100%;
  display: block;
  margin: 0 !important;
  box-sizing: border-box;
  padding-left: 52px !important;
}

/* alturas más compactas */
.contact-form-modern .input-icon input,
.contact-form-modern .input-icon select {
  min-height: 54px;
}

.contact-form-modern .input-icon textarea {
  min-height: 150px;
  padding-top: 18px !important;
  resize: vertical;
}

/* select */
.contact-form-modern select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--gold2) 50%),
    linear-gradient(135deg, var(--gold2) 50%, transparent 50%);
  background-position:
    calc(100% - 22px) calc(50% - 3px),
    calc(100% - 16px) calc(50% - 3px);
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
  padding-right: 42px !important;
}

/* botón */
.contact-form-modern .btn {
  margin-top: 8px;
}

/* -------------------------
   COLUMNA DERECHA
------------------------- */

.direct-channels-modern {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding-left: 38px;
  border-left: 1px solid var(--line);
}

.direct-channels-modern > .eyebrow {
  margin-bottom: 10px;
}

.direct-card {
  display: grid;
  grid-template-columns: 46px 1fr 18px;
  gap: 14px;
  align-items: center;
  padding: 18px 18px;
  margin: 0 !important;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.02);
}

.direct-card .channel-icon {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(177, 138, 87, 0.35);
  display: grid;
  place-items: center;
  color: var(--gold2);
  font-size: 18px;
}

.direct-card b {
  display: block;
  margin-bottom: 4px;
  color: var(--gold2);
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.direct-card p {
  margin: 0;
  color: var(--text-light);
  font-size: 15px;
  line-height: 1.45;
}

.direct-card a {
  color: inherit;
  text-decoration: none;
}

.direct-card a:hover {
  color: var(--gold2);
}

.direct-arrow {
  color: var(--gold2);
  font-size: 18px;
  line-height: 1;
}

.direct-card-global {
  grid-template-columns: 46px 1fr;
}

/* -------------------------
   MAPA
------------------------- */

.contact-map-card {
  margin: 2px 0 2px;
  border: 1px solid rgba(177, 138, 87, 0.28);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.02);
}

.contact-map-card iframe {
  width: 100%;
  height: 210px;
  border: 0;
  display: block;
  filter: grayscale(100%) contrast(92%) brightness(0.9);
}

.map-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px 16px;
  border-top: 1px solid rgba(177, 138, 87, 0.2);
  color: var(--gold2);
  text-decoration: none;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.map-link:hover {
  background: rgba(177, 138, 87, 0.04);
}

/* -------------------------
   RESPONSIVE
------------------------- */

@media (max-width: 1100px) {
  .contact-body.contact-body-map {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .direct-channels-modern {
    padding-left: 0;
    border-left: 0;
  }
}

@media (max-width: 768px) {
  .contact-form-modern h2 {
    font-size: clamp(34px, 8vw, 48px);
    margin-bottom: 22px;
  }

  .contact-form-modern .two-cols {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-bottom: 12px;
  }

  .contact-form-modern .input-icon {
    margin-bottom: 12px;
  }

  .contact-form-modern .input-icon input,
  .contact-form-modern .input-icon select {
    min-height: 50px;
  }

  .contact-form-modern .input-icon textarea {
    min-height: 135px;
  }

  .direct-card {
    padding: 16px;
  }

  .contact-map-card iframe {
    height: 190px;
  }
}

/* Nota de campos obligatorios */
.form-note {
  margin: 0 0 24px;
  color: rgba(230, 219, 192, 0.68);
  font-size: 14px;
  line-height: 1.7;
}

.form-note span {
  color: var(--gold2);
  font-weight: 700;
}

.map-link {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  text-align: center !important;
}

/* =========================================================
   INDEX.HTML-INGLES
   ========================================================= */

/* =========================================================
   CARRUSEL MÓVIL INGLS - Hero pillars centrado
   ========================================================= */

@media (max-width: 560px) {
  body.en-page .hero-pillars-en-carousel {
    --card-width: 82%;

    display: flex !important;
    overflow-x: auto !important;
    overflow-y: hidden !important;
    gap: 16px !important;

    padding-inline: calc((100% - var(--card-width)) / 2) !important;
    scroll-padding-inline: calc((100% - var(--card-width)) / 2) !important;

    scroll-snap-type: x mandatory !important;
    scroll-behavior: smooth !important;

    scrollbar-width: none !important;
    -ms-overflow-style: none !important;

    border-top: 1px solid var(--line) !important;
    border-bottom: 1px solid var(--line) !important;
  }

  body.en-page .hero-pillars-en-carousel::-webkit-scrollbar {
    display: none !important;
  }

  body.en-page .hero-pillars-en-carousel article {
    flex: 0 0 var(--card-width) !important;
    min-width: var(--card-width) !important;
    min-height: 96px !important;

    border: 1px solid var(--line) !important;
    border-right: 1px solid var(--line) !important;

    scroll-snap-align: center !important;

    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
  }
}   

@media (max-width: 560px) {
  body.en-page .philosophy-values-en-carousel {
    --card-width: 86%;

    display: flex !important;
    overflow-x: auto !important;
    overflow-y: hidden !important;
    gap: 16px !important;

    padding-inline: calc((100% - var(--card-width)) / 2) !important;
    scroll-padding-inline: calc((100% - var(--card-width)) / 2) !important;

    scroll-snap-type: x mandatory !important;
    scroll-behavior: smooth !important;

    scrollbar-width: none !important;
    -ms-overflow-style: none !important;

    margin-top: 34px !important;
  }

  body.en-page .philosophy-values-en-carousel::-webkit-scrollbar {
    display: none !important;
  }

  body.en-page .philosophy-values-en-carousel article {
    flex: 0 0 var(--card-width) !important;
    min-width: var(--card-width) !important;
    min-height: 210px !important;

    scroll-snap-align: center !important;

    border: 1px solid var(--line) !important;
    background: rgba(7, 17, 29, 0.72) !important;
    backdrop-filter: blur(2px);

    padding: 30px 24px !important;

    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
  }

  body.en-page .philosophy-values-en-carousel article span {
    margin-bottom: 14px !important;
  }

  body.en-page .philosophy-values-en-carousel article b {
    margin: 0 0 10px !important;
  }

  body.en-page .philosophy-values-en-carousel article p {
    max-width: 250px !important;
    margin: 0 auto !important;
  }
}

/* =========================================================
   CARRUSEL MÓVIL INGLÉS - What we do / Capabilities
   ========================================================= */

@media (max-width: 560px) {
  body.en-page .capabilities-en-carousel {
    --card-width: 86%;

    display: flex !important;
    overflow-x: auto !important;
    overflow-y: hidden !important;
    gap: 16px !important;

    padding-inline: calc((100% - var(--card-width)) / 2) !important;
    scroll-padding-inline: calc((100% - var(--card-width)) / 2) !important;

    scroll-snap-type: x mandatory !important;
    scroll-behavior: smooth !important;

    scrollbar-width: none !important;
    -ms-overflow-style: none !important;
  }

  body.en-page .capabilities-en-carousel::-webkit-scrollbar {
    display: none !important;
  }

  body.en-page .capabilities-en-carousel .service-card {
    flex: 0 0 var(--card-width) !important;
    min-width: var(--card-width) !important;
    min-height: 360px !important;
    scroll-snap-align: center !important;
    border: 1px solid var(--line) !important;
  }
}

/* =========================================================
   SCROLL MANUAL MÓVIL INGLÉS - Brands born in-house
   No automático, solo deslizar con el dedo
   ========================================================= */

@media (max-width: 560px) {
  body.en-page .ecosystem-row-en-scroll {
    --card-width: 86%;

    display: flex !important;
    overflow-x: auto !important;
    overflow-y: hidden !important;
    gap: 16px !important;

    padding: 18px 0 18px !important;
    padding-inline: calc((100% - var(--card-width)) / 2) !important;
    scroll-padding-inline: calc((100% - var(--card-width)) / 2) !important;

    scroll-snap-type: x mandatory !important;
    scroll-behavior: smooth !important;

    border-top: 1px solid var(--line) !important;
    border-bottom: 1px solid var(--line) !important;

    scrollbar-width: none !important;
    -ms-overflow-style: none !important;
  }

  body.en-page .ecosystem-row-en-scroll::-webkit-scrollbar {
    display: none !important;
  }

  body.en-page .ecosystem-row-en-scroll .row-intro,
  body.en-page .ecosystem-row-en-scroll .brand-card {
    flex: 0 0 var(--card-width) !important;
    min-width: var(--card-width) !important;
    min-height: 420px !important;

    scroll-snap-align: center !important;

    border: 1px solid var(--line) !important;
    border-right: 1px solid var(--line) !important;
  }

  body.en-page .ecosystem-row-en-scroll .row-intro {
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    text-align: left !important;
    background: rgba(7, 17, 29, 0.72) !important;
  }

  body.en-page .ecosystem-row-en-scroll .brand-card {
    transform: none !important;
  }
}

/* =========================================================
   CARRUSEL MÓVIL INGLÉS - Ecosystem icons
   Product development / Manufacturing / Innovation...
   ========================================================= */

@media (max-width: 560px) {
  body.en-page .ecosystem-icons-en-carousel {
    --card-width: 82%;

    display: flex !important;
    overflow-x: auto !important;
    overflow-y: hidden !important;
    gap: 16px !important;

    padding: 18px 0 18px !important;
    padding-inline: calc((100% - var(--card-width)) / 2) !important;
    scroll-padding-inline: calc((100% - var(--card-width)) / 2) !important;

    scroll-snap-type: x mandatory !important;
    scroll-behavior: smooth !important;

    border-top: 1px solid var(--line) !important;
    border-bottom: 1px solid var(--line) !important;

    scrollbar-width: none !important;
    -ms-overflow-style: none !important;

    background: rgba(7, 17, 29, 0.82) !important;
  }

  body.en-page .ecosystem-icons-en-carousel::-webkit-scrollbar {
    display: none !important;
  }

  body.en-page .ecosystem-icons-en-carousel article {
    flex: 0 0 var(--card-width) !important;
    min-width: var(--card-width) !important;
    min-height: 130px !important;

    scroll-snap-align: center !important;

    border: 1px solid var(--line) !important;
    border-right: 1px solid var(--line) !important;

    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;

    background: rgba(7, 17, 29, 0.72) !important;
  }

  body.en-page .ecosystem-icons-en-carousel article span {
    margin-bottom: 10px !important;
  }

  body.en-page .ecosystem-icons-en-carousel article p {
    max-width: 240px !important;
    margin: 0 auto !important;
    color: var(--white) !important;
  }
}

/* =========================================================
   CARRUSEL MÓVIL INGLÉS - Platform values
   Respect for origin / Shared value / Innovation...
   ========================================================= */

@media (max-width: 560px) {
  body.en-page .platform-values-en-carousel {
    --card-width: 82%;

    display: flex !important;
    overflow-x: auto !important;
    overflow-y: hidden !important;
    gap: 16px !important;

    padding: 18px 0 18px !important;
    padding-inline: calc((100% - var(--card-width)) / 2) !important;
    scroll-padding-inline: calc((100% - var(--card-width)) / 2) !important;

    scroll-snap-type: x mandatory !important;
    scroll-behavior: smooth !important;

    border-top: 1px solid var(--line) !important;
    border-bottom: 1px solid var(--line) !important;

    scrollbar-width: none !important;
    -ms-overflow-style: none !important;

    background: #06101b !important;
  }

  body.en-page .platform-values-en-carousel::-webkit-scrollbar {
    display: none !important;
  }

  body.en-page .platform-values-en-carousel article {
    flex: 0 0 var(--card-width) !important;
    min-width: var(--card-width) !important;
    min-height: 130px !important;

    scroll-snap-align: center !important;

    border: 1px solid var(--line) !important;
    border-right: 1px solid var(--line) !important;

    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;

    background: rgba(7, 17, 29, 0.74) !important;
  }

  body.en-page .platform-values-en-carousel article i {
    margin-bottom: 12px !important;
  }

  body.en-page .platform-values-en-carousel article span {
    max-width: 230px !important;
    margin: 0 auto !important;
    color: var(--white) !important;
  }
}

/* =========================================================
   CARRUSEL MÓVIL INGLÉS - Our approach
   Applied research / R&D+i / Technology...
   ========================================================= */

@media (max-width: 560px) {
  body.en-page .approach-en-carousel {
    --card-width: 86%;

    display: flex !important;
    overflow-x: auto !important;
    overflow-y: hidden !important;
    gap: 16px !important;

    padding: 18px 0 18px !important;
    padding-inline: calc((100% - var(--card-width)) / 2) !important;
    scroll-padding-inline: calc((100% - var(--card-width)) / 2) !important;

    scroll-snap-type: x mandatory !important;
    scroll-behavior: smooth !important;

    scrollbar-width: none !important;
    -ms-overflow-style: none !important;

    margin-top: 38px !important;
  }

  body.en-page .approach-en-carousel::-webkit-scrollbar {
    display: none !important;
  }

  body.en-page .approach-en-carousel article {
    flex: 0 0 var(--card-width) !important;
    min-width: var(--card-width) !important;
    min-height: 260px !important;

    scroll-snap-align: center !important;

    border: 1px solid var(--line) !important;
    border-right: 1px solid var(--line) !important;

    padding: 32px 24px !important;

    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;

    background: rgba(7, 17, 29, 0.74) !important;
  }

  body.en-page .approach-en-carousel article span {
    color: var(--gold2) !important;
    margin-bottom: 14px !important;
  }

  body.en-page .approach-en-carousel article h4 {
    margin: 10px 0 14px !important;
    color: var(--white) !important;
    text-align: center !important;
  }

  body.en-page .approach-en-carousel article p {
    max-width: 250px !important;
    margin: 0 auto !important;
    text-align: center !important;
  }
}

/* =========================================================
   CARRUSEL MÓVIL INGLÉS - Experiences
   Wine tourism / Tastings / Private events...
   ========================================================= */

@media (max-width: 560px) {
  body.en-page .experience-en-carousel {
    --card-width: 86%;

    display: flex !important;
    overflow-x: auto !important;
    overflow-y: hidden !important;
    gap: 16px !important;

    padding: 18px 0 18px !important;
    padding-inline: calc((100% - var(--card-width)) / 2) !important;
    scroll-padding-inline: calc((100% - var(--card-width)) / 2) !important;

    scroll-snap-type: x mandatory !important;
    scroll-behavior: smooth !important;

    scrollbar-width: none !important;
    -ms-overflow-style: none !important;

    margin-top: 34px !important;
  }

  body.en-page .experience-en-carousel::-webkit-scrollbar {
    display: none !important;
  }

  body.en-page .experience-en-carousel article {
    flex: 0 0 var(--card-width) !important;
    min-width: var(--card-width) !important;
    min-height: 250px !important;

    scroll-snap-align: center !important;

    border: 1px solid var(--line) !important;
    border-right: 1px solid var(--line) !important;

    padding: 30px 24px !important;

    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;

    background: rgba(7, 17, 29, 0.74) !important;
  }

  body.en-page .experience-en-carousel article span {
    color: var(--gold2) !important;
    margin-bottom: 14px !important;
  }

  body.en-page .experience-en-carousel article h3 {
    margin: 10px 0 14px !important;
    text-align: center !important;
    color: var(--white) !important;
  }

  body.en-page .experience-en-carousel article p {
    max-width: 250px !important;
    margin: 0 auto !important;
    text-align: center !important;
  }
}

/* =========================================================
   CARRUSEL MÓVIL INGLÉS - Experience values
   We connect / We honor / We celebrate...
   ========================================================= */

@media (max-width: 560px) {
  body.en-page .experiences-values-en-carousel {
    --card-width: 82%;

    display: flex !important;
    overflow-x: auto !important;
    overflow-y: hidden !important;
    gap: 16px !important;

    padding: 18px 0 18px !important;
    padding-inline: calc((100% - var(--card-width)) / 2) !important;
    scroll-padding-inline: calc((100% - var(--card-width)) / 2) !important;

    scroll-snap-type: x mandatory !important;
    scroll-behavior: smooth !important;

    border-top: 1px solid var(--line) !important;
    border-bottom: 1px solid var(--line) !important;

    scrollbar-width: none !important;
    -ms-overflow-style: none !important;

    background: #06101b !important;
  }

  body.en-page .experiences-values-en-carousel::-webkit-scrollbar {
    display: none !important;
  }

  body.en-page .experiences-values-en-carousel article {
    flex: 0 0 var(--card-width) !important;
    min-width: var(--card-width) !important;
    min-height: 130px !important;

    scroll-snap-align: center !important;

    border: 1px solid var(--line) !important;
    border-right: 1px solid var(--line) !important;

    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;

    background: rgba(7, 17, 29, 0.74) !important;
  }

  body.en-page .experiences-values-en-carousel article i {
    margin-bottom: 12px !important;
    color: var(--gold2) !important;
  }

  body.en-page .experiences-values-en-carousel article span {
    max-width: 230px !important;
    margin: 0 auto !important;
    color: var(--white) !important;
  }
}

/* =========================================================
   FIX MÓVIL - Modal de marcas como ventana flotante
   ========================================================= */

@media (max-width: 760px) {
  .brand-modal {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;

    padding: 86px 18px 32px !important;
    overflow: hidden !important;
  }

  .brand-modal__dialog {
    width: 100% !important;
    max-width: 430px !important;

    /* Altura controlada para que no toque abajo */
    max-height: calc(100vh - 132px) !important;
    min-height: auto !important;

    display: flex !important;
    flex-direction: column !important;

    overflow-y: auto !important;
    overflow-x: hidden !important;

    border: 1px solid rgba(177, 138, 87, 0.55) !important;
    background: #07111d !important;

    margin: 0 auto !important;
  }

  .brand-modal__image {
    min-height: 250px !important;
    flex: 0 0 250px !important;
    background-size: cover !important;
    background-position: center !important;
  }

  .brand-modal__content {
    padding: 34px 28px 46px !important;
  }

  .brand-modal__description {
    margin: 24px 0 30px !important;
  }

  .brand-modal__features {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 18px !important;
    padding-bottom: 18px !important;
  }

  .brand-modal__close {
    position: absolute !important;
    top: 18px !important;
    right: 18px !important;
    z-index: 5 !important;
  }
}

/* Ocultar WhatsApp cuando el modal esté abierto */
body.modal-open .whatsapp-float {
  display: none !important;
}

/* =========================================================
   FIX MÓVIL - Evitar que imágenes del modal se corten
   ========================================================= */

@media (max-width: 760px) {
  .brand-modal__image {
    min-height: 250px !important;
    flex: 0 0 250px !important;

    background-size: contain !important;
    background-position: center !important;
    background-repeat: no-repeat !important;

    background-color: #050b13 !important;
  }
}

/* =========================================================
   FIX MÓVIL - Centrar textos del menú desplegable
   ========================================================= */

@media (max-width: 1180px) {
  .main-nav.open a {
    text-align: center !important;
    justify-content: center !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  .mobile-language-switch {
    justify-content: center !important;
    text-align: center !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
}

/* =========================================================
   FIX REAL MÓVIL - Modal de marcas con espacio superior
   ========================================================= */

@media (max-width: 760px) {
  .brand-modal {
    display: flex !important;
    align-items: flex-start !important;
    justify-content: center !important;

    /* Espacio arriba para que no choque con el header */
    padding: 96px 18px 34px !important;

    overflow-y: auto !important;
    overflow-x: hidden !important;
  }

  .brand-modal__dialog {
    width: 100% !important;
    max-width: 430px !important;

    /* Altura controlada para dejar espacio arriba y abajo */
    max-height: calc(100svh - 130px) !important;
    min-height: auto !important;

    display: flex !important;
    flex-direction: column !important;

    overflow-y: auto !important;
    overflow-x: hidden !important;

    margin: 0 auto 34px !important;

    border: 1px solid rgba(177, 138, 87, 0.55) !important;
    background: #07111d !important;
  }

  .brand-modal__image {
    min-height: 250px !important;
    flex: 0 0 250px !important;

    background-size: contain !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    background-color: #050b13 !important;
  }

  .brand-modal__content {
    padding: 34px 28px 58px !important;
  }

  .brand-modal__close {
    top: 18px !important;
    right: 18px !important;
    z-index: 5 !important;
  }

  body.modal-open .whatsapp-float {
    display: none !important;
  }
}

/* ==================================================
   FIX FINAL - EXPERIENCIAS CON IMAGEN ARRIBA
================================================== */

.experience-cards {
  max-width: 1680px;
  margin: 0 auto;
}

.experience-cards .eyebrow {
  display: block;
  text-align: center;
  margin-bottom: 48px;
}

.experience-cards .experience-grid {
  display: grid !important;
  grid-template-columns: repeat(6, minmax(0, 1fr)) !important;
  max-width: 1680px;
  margin: 0 auto;
  border: 1px solid rgba(177, 138, 87, 0.22);
}

.experience-cards .experience-grid article {
  min-height: 560px !important;
  padding: 0 !important;
  display: flex !important;
  flex-direction: column !important;
  background: rgba(255, 255, 255, 0.025) !important;
  border-right: 1px solid rgba(177, 138, 87, 0.22);
  overflow: hidden;
}

.experience-cards .experience-grid article:last-child {
  border-right: none;
}

.experience-cards .experience-img {
  width: 100% !important;
  max-width: none !important;
  height: 255px !important;
  margin: 0 !important;
  padding: 0 !important;
  flex-shrink: 0;

  background-size: cover !important;
  background-repeat: no-repeat !important;
  background-position: center center !important;

  position: relative;
}

.experience-cards .experience-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(10, 15, 26, 0.08) 0%,
    rgba(10, 15, 26, 0.18) 55%,
    rgba(10, 15, 26, 0.82) 100%
  );
}

.experience-cards .experience-content {
  flex: 1;
  padding: 42px 32px 46px !important;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.experience-cards .experience-content h3 {
  margin: 0 0 22px !important;
  color: #ffffff;
  font-size: clamp(1.08rem, 1.18vw, 1.42rem);
  line-height: 1.18;
  text-transform: uppercase;
  letter-spacing: 0.045em;
}

.experience-cards .experience-content p {
  margin: 0 !important;
  max-width: 100% !important;
  width: 100%;
  color: rgba(230, 219, 192, 0.92);
  font-size: 0.96rem;
  line-height: 1.75;
}

/* Imágenes */
.experience-cards .experience-grid article:nth-child(1) .experience-img {
  background-image: url("../assets/img/experiencia-enoturismo.webp");
}

.experience-cards .experience-grid article:nth-child(2) .experience-img {
  background-image: url("../assets/img/experiencia-catas-degustaciones.webp");
}

.experience-cards .experience-grid article:nth-child(3) .experience-img {
  background-image: url("../assets/img/experiencia-eventos-privados.webp");
}

.experience-cards .experience-grid article:nth-child(4) .experience-img {
  background-image: url("../assets/img/experiencia-concursos.webp");
}

.experience-cards .experience-grid article:nth-child(5) .experience-img {
  background-image: url("../assets/img/experiencia-cultura-territorio.webp");
}

.experience-cards .experience-grid article:nth-child(6) .experience-img {
  background-image: url("../assets/img/experiencia-formacion.webp");
}

@media (max-width: 1180px) {
  .experience-cards .experience-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  }

  .experience-cards .experience-grid article {
    min-height: 520px !important;
  }

  .experience-cards .experience-img {
    height: 270px !important;
  }
}

@media (max-width: 760px) {
  .experience-cards .experience-grid {
    grid-template-columns: 1fr !important;
    border: none;
    gap: 20px;
  }

  .experience-cards .experience-grid article {
    min-height: auto !important;
    border: 1px solid rgba(177, 138, 87, 0.22);
  }

  .experience-cards .experience-img {
    height: 280px !important;
  }

  .experience-cards .experience-content {
    padding: 30px 24px 34px !important;
  }

  .experience-cards .experience-content h3 {
    font-size: 1.18rem;
  }

  .experience-cards .experience-content p {
    font-size: 0.94rem;
    line-height: 1.65;
  }
}

/* ==================================================
   EXPERIENCIAS - DESKTOP + CARRUSEL MOBILE
================================================== */

.experience-cards {
  max-width: 1680px;
  margin: 0 auto;
}

.experience-cards .eyebrow {
  display: block;
  text-align: center;
  margin-bottom: 48px;
}

/* GRID DESKTOP */
.experience-cards .experience-grid {
  display: grid !important;
  grid-template-columns: repeat(6, minmax(0, 1fr)) !important;
  max-width: 1680px;
  margin: 0 auto;
  border: 1px solid rgba(177, 138, 87, 0.22);
}

.experience-cards .experience-grid article {
  min-height: 560px !important;
  padding: 0 !important;
  display: flex !important;
  flex-direction: column !important;
  background: rgba(255, 255, 255, 0.025) !important;
  border-right: 1px solid rgba(177, 138, 87, 0.22);
  overflow: hidden;
}

.experience-cards .experience-grid article:last-child {
  border-right: none;
}

/* Imagen */
.experience-cards .experience-img {
  width: 100% !important;
  max-width: none !important;
  height: 255px !important;
  margin: 0 !important;
  padding: 0 !important;
  flex-shrink: 0;

  background-size: cover !important;
  background-repeat: no-repeat !important;
  background-position: center center !important;
  background-color: rgba(255, 255, 255, 0.015);

  position: relative;
}

.experience-cards .experience-img::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(
    180deg,
    rgba(10, 15, 26, 0.08) 0%,
    rgba(10, 15, 26, 0.18) 55%,
    rgba(10, 15, 26, 0.72) 100%
  );
}

/* Contenido */
.experience-cards .experience-content {
  flex: 1;
  padding: 38px 26px 44px !important;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.experience-cards .experience-content h3 {
  margin: 0 0 22px !important;
  color: #ffffff;
  font-size: clamp(1.08rem, 1.18vw, 1.42rem);
  line-height: 1.18;
  text-transform: uppercase;
  letter-spacing: 0.045em;
}

.experience-cards .experience-content p {
  margin: 0 !important;
  max-width: 100% !important;
  width: 100%;
  color: rgba(230, 219, 192, 0.92);
  font-size: 0.96rem;
  line-height: 1.72;
}

/* Imágenes */
.experience-cards .experience-grid article:nth-child(1) .experience-img {
  background-image: url("../assets/img/experiencia-enoturismo.webp");
  background-position: center center !important;
}

.experience-cards .experience-grid article:nth-child(2) .experience-img {
  background-image: url("../assets/img/experiencia-catas-degustaciones.webp");
  background-position: center center !important;
}

.experience-cards .experience-grid article:nth-child(3) .experience-img {
  background-image: url("../assets/img/experiencia-eventos-privados.webp");
  background-position: center center !important;
}

.experience-cards .experience-grid article:nth-child(4) .experience-img {
  background-image: url("../assets/img/experiencia-concursos.webp");
  background-position: center center !important;
}

.experience-cards .experience-grid article:nth-child(5) .experience-img {
  background-image: url("../assets/img/experiencia-cultura-territorio.webp");
  background-position: center center !important;
}

.experience-cards .experience-grid article:nth-child(6) .experience-img {
  background-image: url("../assets/img/experiencia-formacion.webp");
  background-position: center center !important;
}

/* TABLET */
@media (max-width: 1180px) {
  .experience-cards .experience-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  }

  .experience-cards .experience-grid article {
    min-height: 520px !important;
  }

  .experience-cards .experience-img {
    height: 270px !important;
  }

  .experience-cards .experience-content {
    padding: 34px 28px 40px !important;
  }
}

/* MOBILE - CARRUSEL */
@media (max-width: 760px) {
  .experience-cards .eyebrow {
    margin-bottom: 30px;
  }

  .experience-cards .experience-grid.experience-carousel {
    display: flex !important;
    grid-template-columns: none !important;
    gap: 16px;
    border: none;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    padding: 0 12px 10px;
  }

  .experience-cards .experience-grid.experience-carousel::-webkit-scrollbar {
    display: none;
  }

  .experience-cards .experience-grid.experience-carousel {
    scrollbar-width: none;
  }

  .experience-cards .experience-grid.experience-carousel article {
    flex: 0 0 calc(100% - 8px) !important;
    min-width: calc(100% - 8px) !important;
    max-width: calc(100% - 8px) !important;
    min-height: auto !important;
    border: 1px solid rgba(177, 138, 87, 0.22);
    scroll-snap-align: center;
    border-right: 1px solid rgba(177, 138, 87, 0.22) !important;
  }

  .experience-cards .experience-grid.experience-carousel article:last-child {
    border-right: 1px solid rgba(177, 138, 87, 0.22) !important;
  }

  .experience-cards .experience-img {
    height: 250px !important;
  }

  .experience-cards .experience-content {
    padding: 28px 22px 30px !important;
  }

  .experience-cards .experience-content h3 {
    font-size: 1.05rem;
    margin-bottom: 16px !important;
  }

  .experience-cards .experience-content p {
    font-size: 0.95rem;
    line-height: 1.65;
  }
}

/* ==================================================
   FIX - CAPACIDADES SIN ICONOS
================================================== */

.capabilities-grid .service-card i {
  display: none !important;
}

.capabilities-grid .service-card span {
  display: block;
  margin-bottom: 92px;
  color: #b18a57;
  font-size: 1rem;
  letter-spacing: 0.12em;
  font-weight: 500;
}

.capabilities-grid .service-card h3 {
  margin-top: 0;
}

/* ==================================================
   FIX - FONDO ECOSISTEMA / DESARROLLO PARA TERCEROS
================================================== */

.ecosystem-development {
  position: relative;
  overflow: hidden;

  background-image:
    linear-gradient(
      90deg,
      rgba(10, 15, 26, 0.96) 0%,
      rgba(10, 15, 26, 0.9) 36%,
      rgba(10, 15, 26, 0.62) 68%,
      rgba(10, 15, 26, 0.9) 100%
    ),
    url("../assets/img/ecosistema-desarrollo.webp") !important;

  background-size: cover !important;
  background-position: center center !important;
  background-repeat: no-repeat !important;
}

/* FIX - MAPA A COLOR */
.contact-map-card iframe {
  filter: none !important;
  -webkit-filter: none !important;
  opacity: 1 !important;
}