/* ═══════════════════════════════════════════════════
   KALMAR — sections.css
   Shared section-level styles used across all sections.
   ─────────────────────────────────────────────────── */

.kalmar-section {
    position: relative;
}

/* Quiénes somos — image box clip */
.kalmar-img-box {
    position: relative;
    overflow: hidden;
}

/* Fason sticky card */
.kalmar-fason-card {
    position: sticky;
    top: 90px;
}

/* Proceso timeline step hover */
.kalmar-proceso-step .kalmar-paso-num:hover {
    background-color: var(--color-azul);
    color: var(--color-white);
}

/* CF7 form inside Kalmar wrapper */
.kalmar-cf7-wrap .wpcf7-form p {
    margin-bottom: 0;
}

.kalmar-cf7-wrap .wpcf7-form input[type="text"],
.kalmar-cf7-wrap .wpcf7-form input[type="email"],
.kalmar-cf7-wrap .wpcf7-form input[type="tel"],
.kalmar-cf7-wrap .wpcf7-form select,
.kalmar-cf7-wrap .wpcf7-form textarea {
    width: 100%;
    background: var(--color-white);
    border: 1px solid rgba(0, 61, 85, 0.12);
    border-bottom: 2px solid rgba(0, 61, 85, 0.2);
    padding: 0.75rem 1rem;
    font-family: var(--font-gotham);
    font-size: var(--fs-base);
    color: var(--color-text);
    outline: none;
    transition: border-color var(--transition-base);
    border-radius: 0;
    margin-bottom: var(--space-5);
    appearance: none;
}

.kalmar-cf7-wrap .wpcf7-form input:focus,
.kalmar-cf7-wrap .wpcf7-form textarea:focus {
    border-bottom-color: var(--color-terra);
}

.kalmar-cf7-wrap .wpcf7-form input[type="submit"] {
    background: var(--color-terra);
    color: var(--color-white);
    font-family: var(--font-gotham);
    font-weight: var(--fw-bold);
    font-size: var(--fs-sm);
    letter-spacing: var(--ls-wider);
    text-transform: uppercase;
    padding: 0.9rem 2rem;
    border: none;
    cursor: pointer;
    transition: background var(--transition-base), transform var(--transition-base);
}

.kalmar-cf7-wrap .wpcf7-form input[type="submit"]:hover {
    background: var(--color-terra-dark);
    transform: translateY(-2px);
}

.wpcf7 .screen-reader-response {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

.wpcf7-form input.wpcf7-not-valid,
.wpcf7-form select.wpcf7-not-valid,
.wpcf7-form textarea.wpcf7-not-valid {
    border-color: #e74c3c !important;
    outline: none;
}

.kalmar-cf7-wrap .wpcf7-not-valid-tip,
.wpcf7 .wpcf7-not-valid-tip {
    font-family: var(--font-gotham);
    color: #e74c3c;
    margin-bottom: var(--space-3);
}

.kalmar-cf7-wrap .wpcf7-response-output {
    font-family: var(--font-gotham);
    font-size: var(--fs-sm);
    padding: var(--space-4);
    border-radius: 0;
    margin-top: var(--space-4);
}

/* CF7 inserts <br> between label text and input — suppress it */
.kalmar-cf7-wrap .wpcf7-form label br {
    display: none;
}

/* CF7 label structure: make it look like .form-label */
.kalmar-cf7-wrap .wpcf7-form label {
    display: block;
    font-family: var(--font-gotham);
    font-weight: 500;
    font-size: 0.62rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-azul);
    margin-bottom: 0.4rem;
}

/* wpcf7-form-control-wrap is inline by default — block it */
.kalmar-cf7-wrap .wpcf7-form .wpcf7-form-control-wrap {
    display: block;
}

/* ── CALENDARIO DE VISITAS ── */
.section-calendario {
    background: var(--color-gray);
    padding: 80px 0;
    text-align: center;
}

.calendario-logo {
    display: block;
    max-height: 150px;
    width: auto;
    margin: 0 auto 32px;
}

.calendario-title {
    font-family: var(--font-gotham);
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    font-weight: 700;
    color: var(--color-azul);
    margin-bottom: 40px;
}

.kal-cal-wrap {
    display: inline-block;
    background: var(--color-white);
    border-radius: 12px;
    padding: 28px 24px 24px;
    box-shadow: 0 4px 32px var(--color-azul-15);
    min-width: 300px;
    max-width: 400px;
    width: 100%;
}

.kal-cal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.kal-cal-month-label {
    font-family: var(--font-gotham);
    font-weight: 700;
    color: var(--color-azul);
    font-size: 1rem;
}

.kal-cal-nav {
    background: none;
    border: none;
    color: var(--color-azul);
    font-size: 1.1rem;
    cursor: pointer;
    padding: 4px 10px;
    border-radius: 6px;
    transition: background .2s;
    line-height: 1;
}

.kal-cal-nav:hover {
    background: var(--color-azul-10);
}

.kal-cal-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 3px;
}

.kal-cal-dayname {
    font-family: var(--font-gotham);
    font-size: .7rem;
    font-weight: 600;
    color: var(--color-text-muted);
    text-align: center;
    padding: 4px 0 10px;
}

.kal-cal-cell {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-gotham);
    font-size: .85rem;
    color: var(--color-text);
    border-radius: 50%;
    cursor: default;
}

.kal-cal-marked {
    background: var(--color-terra);
    color: var(--color-white);
    font-weight: 700;
}

.kal-cal-today {
    outline: 2px solid var(--color-azul);
    outline-offset: -2px;
}

.kal-cal-today.kal-cal-marked {
    outline-color: var(--color-white-70);
}

.calendario-cta {
    margin-top: 32px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.calendario-wa-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #25D366;
    color: var(--color-white);
    font-family: var(--font-gotham);
    font-weight: 700;
    font-size: .95rem;
    letter-spacing: .03em;
    padding: 14px 28px;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(37, 211, 102, .35);
    transition: background .2s, transform .2s, box-shadow .2s;
}

.calendario-wa-btn:hover {
    background: #1ebe5d;
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(37, 211, 102, .45);
    color: var(--color-white);
}

.calendario-wa-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.calendario-wa-note {
    font-family: var(--font-gotham);
    font-size: .75rem;
    color: var(--color-text-muted);
    letter-spacing: .06em;
    text-transform: uppercase;
    margin: 0;
}

/* ─── migrado de kalmar-responsive.css: SECTION BASE + QUIENES + UNIDADES ─── */
/* ══ SECTION BASE ══ */
.section {
  padding: 8rem 0;
}

.section-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 3rem;
}

.section-label {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.2rem;
}

.section-label-line {
  width: 28px;
  height: 2px;
  background: var(--terra);
  flex-shrink: 0;
}

.section-label-text {
  font-family: 'Gotham', sans-serif;
  font-weight: 500;
  font-size: 0.62rem;
  letter-spacing: 0.32em;
  color: var(--terra);
  text-transform: uppercase;
}

.section-title {
  font-family: 'Gotham', sans-serif;
  font-weight: 700;
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  line-height: 1.1;
  color: var(--azul);
  margin-bottom: 1.5rem;
}

.section-title em {
  font-family: 'Gentium', serif;
  font-style: italic;
  font-weight: 400;
  color: var(--terra);
}

.section-title-white {
  color: #fff;
}

.section-body {
  font-weight: 300;
  line-height: 1.85;
  color: var(--text-mid);
}

.section-body-white,
.section-body-white p {
  color: rgba(223, 223, 217, 0.75);
}

/* ══ QUIÉNES SOMOS ══ */
.quienes {
  background: var(--cream);
}

.quienes-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.quienes-img-box {
  background: var(--azul);
  aspect-ratio: 4/5;
  position: relative;
  overflow: hidden;
}

.quienes-img-inner {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.quienes-img-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: bottom;
}

.quienes-img-inner svg {
  width: 65%;
  height: auto;
  opacity: 0.75;
}

/*.quienes-img-box::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 38%;
  height: 38%;
  background: var(--cream);
}*/

.quienes-accent {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  background: var(--terra);
  color: #fff;
  padding: 1.5rem 2rem;
  z-index: 2;
  min-width: 200px;
}

.quienes-accent-num {
  font-family: 'Gotham', sans-serif;
  font-weight: 700;
  font-size: 2.5rem;
  line-height: 1;
  margin-bottom: 0.3rem;
}

.quienes-accent-lbl {
  font-family: 'Gotham', sans-serif;
  font-weight: 400;
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  opacity: 0.9;
  line-height: 1.4;
}

.values-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 1.5rem;
  margin-top: 3rem;
}

.value-item {
  padding: .5rem;
}

.value-icon {
  font-size: 1.4rem;
}

.value-title {
  font-family: 'Gotham', sans-serif;
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--azul);
  margin-bottom: 0.35rem;
}

/* ── Qué Hacemos subsection ── */
.quienes-que {
  margin-top: 4rem;
  padding-top: 3.5rem;
  border-top: 2px solid var(--color-terra);
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.quienes-que__title {
  font-family: 'Gotham', sans-serif;
  font-weight: 700;
  font-size: 1.75rem;
  color: var(--color-azul);
  margin-bottom: 1.25rem;
  letter-spacing: -0.01em;
}

.quienes-que__text {
  text-align: justify;
  color: var(--color-text-mid);
  font-size: 0.95rem;
  line-height: 1.75;
}

/* ══ UNIDADES DE NEGOCIO ══ */
.unidades {
  background: var(--gray);
  position: relative;
  overflow: hidden;
}

.unidades::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.03);
  pointer-events: none;
}

.unidades-intro {
  text-align: center;
  margin-bottom: 5rem;
}

.unidades-intro .section-label {
  justify-content: center;
}

.unidades-intro .section-body {
  max-width: 580px;
  margin: 0 auto;
  text-align: center;
}

.unidades-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(0, 61, 85, 0.1);
  margin-bottom: 1px;
}

.unidad-card {
  background: var(--azul);
  padding: 2.8rem 2.2rem;
  position: relative;
  transition: background 0.3s;
  overflow: hidden;
}

.unidad-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--terra);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s;
}

.unidad-card:hover {
  background: var(--azul-mid);
}

.unidad-card:hover::after {
  transform: scaleX(1);
}

.unidad-num {
  font-family: 'Gotham', sans-serif;
  font-weight: 700;
  font-size: 0.58rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(211, 106, 77, 0.4);
  margin-bottom: 1.5rem;
}

.unidad-icon {
  font-size: 2rem;
  margin-bottom: 1.2rem;
  display: block;
}

.unidad-logo {
  display: block;
  margin-bottom: 1.2rem;
}

.unidad-logo img {
  display: block;
  width: auto;
  max-width: 120px;
  height: auto;
}

.unidad-name {
  font-family: 'Gotham', sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: 0.04em;
  color: #fff;
  margin-bottom: 0.4rem;
}

.unidad-sub {
  font-family: 'Gentium', serif;
  font-style: italic;
  font-size: 0.88rem;
  color: var(--terra);
  margin-bottom: 1.2rem;
}

.unidad-desc {
  font-family: 'Gotham', sans-serif;
  font-weight: 300;
  font-size: 0.82rem;
  line-height: 1.75;
  color: rgba(223, 223, 217, 0.55);
}

.unidad-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 1.5rem;
}

.unidad-tag {
  font-family: 'Gotham', sans-serif;
  font-weight: 500;
  font-size: 0.55rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.25rem 0.65rem;
  border: 1px solid rgba(211, 106, 77, 0.25);
  color: rgba(211, 106, 77, 0.7);
}

/* Second row - 2 cards centered */
.unidades-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: rgba(255, 255, 255, 0.07);
}


/* ─── migrado de kalmar-responsive.css: PREMIOS + FASON + VISITAS + EMPRESA-B + PROCESO + COLABORATIVA + CONTACTO ─── */
/* ══ CRONOLOGÍA / PREMIOS ══ */
.premios {
  background: var(--azul);
  position: relative;
  overflow: hidden;
}

.premios::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(to right, transparent, var(--terra), transparent);
}

.premios-header {
  text-align: center;
  margin-bottom: 5rem;
}

.premios-header .section-label {
  justify-content: center;
}

.premios-header .section-label-line {
  background: var(--terra);
}

.premios-header .section-label-text {
  color: var(--terra);
}

.section-label-logo {
  height: 110px;
  width: auto;
  object-fit: contain;
  display: block;
}

.premios-header .section-title em {
  color: var(--terra);
}

/* ══ PREMIOS — TABS SHOWCASE ══ */
.premios-tabs-nav {
  display: flex;
  gap: 0;
  justify-content: center;
  border-bottom: 1px solid rgba(211, 106, 77, 0.15);
  flex-wrap: wrap;
}

.premios-tab-btn {
  background: none;
  border: none;
  font-family: 'Gotham', sans-serif;
  font-size: var(--fs-md);
  font-weight: 700;
  color: rgba(223, 223, 217, 0.3);
  padding: 1rem 1.5rem;
  cursor: pointer;
  position: relative;
  transition: color 0.3s;
  letter-spacing: 0.05em;
}

.premios-tab-btn::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--terra);
  transform: scaleX(0);
  transition: transform 0.35s ease;
}

.premios-tab-btn.active {
  color: var(--terra);
}

.premios-tab-btn.active::after {
  transform: scaleX(1);
}

.premios-tab-btn:hover:not(.active) {
  color: rgba(223, 223, 217, 0.65);
}

.premios-tab-content {
  position: relative;
}

.premios-tab-pane {
  display: none;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 3rem 4rem;
  padding: 6rem 0 3rem;
}

.premios-tab-pane.active {
  display: flex;
  animation: premios-fade-in 0.35s ease both;
}

@keyframes premios-fade-in {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

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

.tab-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.tab-item img {
  width: 160px;
  height: 160px;
  object-fit: contain;
  filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.45));
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), filter 0.4s ease;
}

.tab-item:hover img {
  transform: scale(1.08) rotate(-3deg);
  filter: drop-shadow(0 16px 36px rgba(211, 106, 77, 0.5));
}


.tab-item-name {
  text-align: center;
  margin-top: 0.6rem;
  font-size: 0.75rem;
  font-family: 'Gotham', sans-serif;
  font-weight: 600;
  color: rgba(223, 223, 217, 0.85);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  line-height: 1.4;
  max-width: 180px;
}

.tab-item-concurso {
  text-align: center;
  margin-top: 0.35rem;
  font-size: 0.65rem;
  font-family: 'Gotham', sans-serif;
  font-weight: 400;
  color: rgba(223, 223, 217, 0.4);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ══ PREMIOS — NOTA FASÓN ══ */
.premios-note {
  margin-top: 3.5rem;
  padding: 1.5rem 2rem;
  border: 1px solid rgba(211, 106, 77, 0.15);
  background: rgba(211, 106, 77, 0.04);
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.premios-note-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.premios-note-text,
.premios-note-text p {
  font-family: 'Gotham', sans-serif;
  font-weight: 300;
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(223, 223, 217, 0.5);
}

.premios-note-text strong {
  color: var(--terra-dark);
  font-weight: 500;
}

/* ══ FASÓN EXPANDIDO ══ */
.fason {
  background: var(--cream);
}

.fason-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: start;
}

.fason-steps {
  margin-top: 2.5rem;
}

.fason-step {
  display: flex;
  gap: 1.5rem;
  padding: 1.8rem 0;
  border-bottom: 1px solid rgba(0, 61, 85, 0.1);
}

.fason-step:last-child {
  border-bottom: none;
}

.step-num {
  font-family: 'Gotham', sans-serif;
  font-weight: 700;
  font-size: 2.8rem;
  color: rgba(0, 61, 85, 0.1);
  line-height: 1;
  min-width: 56px;
  flex-shrink: 0;
}

.step-title {
  font-family: 'Gotham', sans-serif;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--azul);
  margin-bottom: 0.4rem;
  padding-top: 0.3rem;
}

.step-desc {
  font-family: 'Gotham', sans-serif;
  font-weight: 300;
  font-size: 0.85rem;
  line-height: 1.75;
  color: var(--text-mid);
}

.fason-tipos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-top: 2rem;
}

.fason-tipo {
  padding: 1rem;
  border: 1px solid rgba(0, 61, 85, 0.12);
  background: var(--white);
}

.fason-tipo-icon {
  font-size: var(--fs-md);
  margin-bottom: 0.4rem;
}

.fason-tipo-name {
  font-family: 'Gotham', sans-serif;
  font-weight: 700;
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--azul);
  margin-bottom: 0.2rem;
}

.fason-tipo-desc {
  font-family: 'Gotham', sans-serif;
  font-weight: 300;
  font-size: 0.75rem;
  color: var(--text-mid);
  line-height: 1.5;
}

.fason-card {
  background: var(--azul);
  padding: 2.5rem;
  position: sticky;
  top: 90px;
  overflow: hidden;
}

.fason-card::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: var(--terra);
  opacity: 0.08;
}

.fason-card-logo {
  height: 36px;
  margin-bottom: 1.5rem;
  filter: brightness(0) invert(1);
  opacity: 0.85;
  display: block;
}

.fason-card-title {
  font-family: 'Gotham', sans-serif;
  font-weight: 700;
  font-size: 1.6rem;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 0.4rem;
}

.fason-card-title em {
  font-family: 'Gentium', serif;
  font-style: italic;
  font-weight: 400;
  color: var(--terra);
  font-size: 1.5rem;
}

.fason-card-title-img {
  display: block;
  max-width: 100%;
  height: 150px;
  margin: 0 auto;
}

.fason-card-sub {
  font-family: 'Gotham', sans-serif;
  font-weight: 400;
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
  margin-bottom: 2rem;
}

.fason-options {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.fason-option {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.9rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.07);
  cursor: pointer;
  transition: all 0.2s;
}

.fason-option:hover,
.fason-option.sel {
  border-color: rgba(211, 106, 77, 0.5);
  background: rgba(211, 106, 77, 0.07);
}

.fason-opt-icon {
  font-size: 1rem;
  width: 22px;
  text-align: center;
  flex-shrink: 0;
}

.fason-opt-text {
  font-family: 'Gotham', sans-serif;
  font-weight: 300;
  font-size: 0.82rem;
  color: rgba(223, 223, 217, 0.75);
  line-height: 1.4;
}

.fason-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.07);
  margin: 1.5rem 0;
}

.fason-note {
  font-family: 'Gotham', sans-serif;
  font-weight: 400;
  font-size: 0.58rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.25);
  text-align: center;
  margin-top: 0.8rem;
}

.includes-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.incl-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: 'Gotham', sans-serif;
  font-weight: 300;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
}

.incl-check {
  color: var(--terra);
  font-size: 0.9rem;
}



/* ══ VISITAS ══ */
.visitas {
  background: var(--azul);
  position: relative;
  overflow: hidden;
}

.visitas::before {
  content: '';
  position: absolute;
  bottom: -100px;
  right: -100px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.03);
  pointer-events: none;
}

.visitas-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: start;
}

.visita-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 2.5rem;
}

.visita-step {
  display: flex;
  gap: 1.5rem;
  padding: 1.8rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.visita-step:last-child {
  border-bottom: none;
}

.v-step-num {
  font-family: 'Gotham', sans-serif;
  font-weight: 700;
  font-size: 0.75rem;
  width: 32px;
  height: 32px;
  border: 1.5px solid var(--terra);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--terra);
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.v-step-title {
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 0.3rem;
}

.v-step-desc {
  font-weight: 300;
  line-height: 1.7;
  color: rgba(223, 223, 217, 0.5);
}

.visita-card {
  position: sticky;
  top: 90px;
}

.visita-video-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 9 / 16;
  overflow: hidden;
  background: #000;
}

.visita-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.visita-audio-btn {
  position: absolute;
  bottom: 1.25rem;
  right: 1.25rem;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.visita-audio-btn:hover {
  background: rgba(0, 0, 0, 0.8);
}

.visita-audio-btn svg {
  width: 1.1rem;
  height: 1.1rem;
}

.visita-audio-btn[data-muted="1"] .icon-unmuted,
.visita-audio-btn[data-muted="0"] .icon-muted {
  display: none;
}

/* ══ EMPRESA B ══ */
.empresa-b {
  background: var(--azul);
  position: relative;
  overflow: hidden;
}

.empresa-b::before {
  content: '';
  position: absolute;
  bottom: -80px;
  left: -80px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  border: 1px solid rgba(211, 106, 77, 0.07);
  pointer-events: none;
}

.eb-logo-badge {
  flex-shrink: 0;
}

.eb-logo-badge--bottom {
  align-self: flex-start;
}

/* Foto sola arriba — ocupa todo el ancho, más alta */
.eb-photo-solo {
  width: 100%;
  overflow: hidden;
  border-radius: 8px;
}

.eb-photo-solo__img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
}

@media (min-width: 992px) {
  .eb-photo-solo__img {
    height: 420px;
  }
}

/* Quote arriba, badge B centrado abajo */
.eb-quote-with-badge {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.eb-logo-badge--centered {
  display: flex;
  justify-content: center;
}

/* Clases legacy — mantener por si quedan referencias */
.eb-logo-photo {
  flex: 1;
  max-width: 220px;
  overflow: hidden;
  border-radius: 8px;
}

.eb-logo-photo__img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.empresa-b-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: start;
}

.b-pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
  margin-top: 2.5rem;
}

.b-pillar {
  padding: 1.8rem;
  border: 1px solid rgba(255, 255, 255, 0.07);
  transition: border-color 0.25s;
}

.b-pillar:hover {
  border-color: rgba(211, 106, 77, 0.4);
}

.b-pillar-icon {
  font-size: 1.6rem;
  margin-bottom: 0.8rem;
}

.b-pillar-title {
  font-family: 'Gotham', sans-serif;
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--terra);
  margin-bottom: 0.4rem;
}

.b-pillar-desc {
  font-family: 'Gotham', sans-serif;
  font-weight: 300;
  font-size: 0.8rem;
  line-height: 1.65;
  color: rgba(223, 223, 217, 0.5);
}

.b-cert-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  padding: 2.5rem;
  text-align: center;
  margin-bottom: 1px;
}

.b-cert-seal {
  width: 130px;
  height: 130px;
  border: 3px solid var(--terra);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  margin: 0 auto 1.5rem;
}

.b-cert-letter {
  font-family: 'Gotham', sans-serif;
  font-weight: 700;
  font-size: 3.5rem;
  color: var(--terra);
  line-height: 1;
}

.b-cert-sub {
  font-family: 'Gotham', sans-serif;
  font-weight: 400;
  font-size: 0.52rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
}

.b-cert-title {
  font-family: 'Gentium', serif;
  font-size: 1.2rem;
  color: #fff;
  margin-bottom: 0.5rem;
}

.b-cert-desc {
  font-family: 'Gotham', sans-serif;
  font-weight: 300;
  font-size: 0.82rem;
  line-height: 1.65;
  color: rgba(223, 223, 217, 0.45);
}

.b-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.07);
  margin-bottom: 1px;
}

.b-metric {
  background: rgba(255, 255, 255, 0.02);
  padding: 1.5rem;
  text-align: center;
}

.b-metric-num {
  font-family: 'Gotham', sans-serif;
  font-weight: 700;
  font-size: 1.8rem;
  color: var(--terra);
  line-height: 1;
  margin-bottom: 0.3rem;
}

.b-metric-label {
  font-family: 'Gotham', sans-serif;
  font-weight: 400;
  font-size: 0.58rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.3);
}

.b-quote {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: 1.8rem;
}

.b-quote-text {
  font-family: 'Gentium', serif;
  font-style: italic;
  font-size: 0.98rem;
  color: rgba(223, 223, 217, 0.5);
  line-height: 1.8;
}

.b-quote-author {
  font-family: 'Gotham', sans-serif;
  font-weight: 500;
  font-size: 0.58rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--terra);
  margin-top: 1rem;
}

/* ══ PROCESO ══ */
.proceso {
  background: var(--gray);
}

.proceso-header {
  text-align: center;
  margin-bottom: 5rem;
}

.proceso-header .section-label {
  justify-content: center;
}

.proceso-header .section-body {
  margin: 0 auto;
  text-align: center;
  max-width: 520px;
}

.proceso-timeline {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  position: relative;
}

.proceso-timeline::before {
  content: '';
  position: absolute;
  top: 24px;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--azul), var(--azul), transparent);
  opacity: 0.15;
}

.proceso-step {
  padding: 0 1.2rem;
  text-align: center;
}

.proceso-step-num {
  width: 48px;
  height: 48px;
  border: 2px solid var(--azul);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Gotham', sans-serif;
  font-weight: 700;
  font-size: 0.78rem;
  color: var(--azul);
  margin: 0 auto 1.5rem;
  background: var(--gray);
  position: relative;
  z-index: 1;
  transition: all 0.3s;
}

.proceso-step:hover .proceso-step-num {
  background: var(--azul);
  color: #fff;
}

.proceso-step-title {
  font-family: 'Gotham', sans-serif;
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--azul);
  margin-bottom: 0.6rem;
}

.proceso-step-desc {
  font-family: 'Gotham', sans-serif;
  font-weight: 300;
  font-size: 0.8rem;
  line-height: 1.65;
  color: var(--text-mid);
}

/* ══ COLABORATIVA ══ */
.colaborativa {
  background: var(--terra);
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

.colaborativa::before {
  content: '';
  position: absolute;
  top: 50%;
  right: -5%;
  transform: translateY(-50%);
  width: 360px;
  height: 360px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  pointer-events: none;
}

.colaborativa-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 3rem;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 6rem;
  align-items: center;
}

.colab-title {
  font-family: 'Gotham', sans-serif;
  font-weight: 700;
  font-size: clamp(1.6rem, 3vw, 2.8rem);
  color: #fff;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.colab-desc {
  font-family: 'Gotham', sans-serif;
  font-weight: 300;
  font-size: 0.92rem;
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.8);
  max-width: 520px;
}

.colab-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.8rem;
}

.colab-tag {
  font-family: 'Gotham', sans-serif;
  font-weight: 500;
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.4rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: #fff;
}

.colab-cta {
  text-align: right;
}

/* ══ CONTACTO ══ */
.contacto {
  background: var(--cream);
  border-top: 1px solid rgba(0, 61, 85, 0.1);
}

.contacto-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
}

.contacto-grid--solo {
  grid-template-columns: 1fr;
  max-width: 640px;
  margin-inline: auto;
}

.form-group {
  margin-bottom: 1.2rem;
}

.form-label {
  display: block;
  font-family: 'Gotham', sans-serif;
  font-weight: 500;
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--azul);
  margin-bottom: 0.4rem;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  background: #fff;
  border: 1px solid rgba(0, 61, 85, 0.12);
  border-bottom: 2px solid rgba(0, 61, 85, 0.2);
  padding: 0.75rem 1rem;
  font-family: 'Gotham', sans-serif;
  font-size: 0.88rem;
  color: var(--text-dark);
  outline: none;
  transition: border-color 0.2s;
  border-radius: 0;
  appearance: none;
}

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

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

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.info-block {
  padding: 1.8rem 0;
  border-bottom: 1px solid rgba(0, 61, 85, 0.08);
}

.info-block:last-child {
  border-bottom: none;
}

.info-label {
  font-weight: 500;
  font-size: var(--fs-sm);
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--terra);
  margin-bottom: 0.4rem;
}

.info-value {
  font-family: 'Gotham', serif;
  font-size: 1rem;
  color: var(--azul);
  line-height: 1.6;
}

.info-value a {
  color: var(--azul);
  text-decoration: none;
}

.info-value a:hover {
  color: var(--terra);
}



/* ─── migrado de kalmar-responsive.css: UNIDADES v5 + Pickalmar card/links ─── */
/* ══ UNIDADES (v5) ══ */
.unidades-header {
  text-align: center;
  margin-bottom: 4.5rem;
}

.unidades-header .section-title {
  text-align: center;
}

.unidades-header .section-label {
  justify-content: center;
}

.unidades-header .section-body {
  margin: 0 auto;
  max-width: 560px;
  text-align: center;
}

.unidad-card {
  background: var(--gray);
  padding: 2.5rem;
  position: relative;
  transition: background 0.3s;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.unidad-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--terra);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s;
}

.unidad-card:hover {
  background: #e8e5df;
}

.unidad-card:hover::after {
  transform: scaleX(1);
}

.unidad-num {
  font-family: 'Gotham', sans-serif;
  font-weight: 700;
  font-size: 0.55rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(0, 61, 85, 0.2);
  margin-bottom: 1.2rem;
}

.unidad-icon {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.unidad-logo img {
  max-width: 100px;
}

.unidad-name {
  font-family: 'Gotham', sans-serif;
  font-weight: 700;
  font-size: var(--fs-md);
  color: var(--azul);
  margin-bottom: 0.25rem;
}

.unidad-sub {
  font-family: 'Gentium', serif;
  font-style: italic;
  font-size: 0.88rem;
  color: var(--terra);
  margin-bottom: 0.9rem;
}

.unidad-desc {
  font-family: 'Gotham', sans-serif;
  font-weight: 300;
  font-size: 0.82rem;
  line-height: 1.75;
  color: var(--text-mid);
}

.unidad-desc h6 {
  margin: 0
}

.unidad-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin-top: 1rem;
}

.unidad-tag {
  font-family: 'Gotham', sans-serif;
  font-weight: 500;
  font-size: 0.55rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.22rem 0.6rem;
  border: 1px solid rgba(0, 61, 85, 0.15);
  color: var(--azul);
}

.unidad-cta {
  display: inline-flex;
  align-items: center;
  margin-top: auto;
  padding-top: 1.2rem;
  font-weight: 700;
  font-size: var(--fs-sm);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--terra);
  border-bottom: 1px solid rgba(211, 106, 77, 0.3);
  padding-bottom: 0.1rem;
  transition: border-color 0.2s;
}

.unidad-cta:hover {
  border-color: var(--terra);
}

.visitas-box {
  background: var(--terra);
  padding: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1.2rem;
  margin-top: 1.5rem;
}

.visitas-box-icon {
  font-size: 1.8rem;
  flex-shrink: 0;
}

.visitas-box-title {
  font-family: 'Gotham', sans-serif;
  font-weight: 700;
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 0.2rem;
}

.visitas-box-desc {
  font-family: 'Gotham', sans-serif;
  font-weight: 300;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.5;
}

.pickalmar-card {
  grid-column: 1/-1;
  background: var(--azul) !important;
  display: block;
  padding: 3rem !important;
}

.pickalmar-card::after {
  background: #fff !important;
}

.pickalmar-card .unidad-num {
  color: rgba(255, 255, 255, 0.15);
}

.pickalmar-card .unidad-name {
  color: #fff;
}

.pickalmar-card .unidad-desc {
  color: rgba(223, 223, 217, 0.65);
}

.pickalmar-card .unidad-tag {
  border-color: rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.55);
}

.pickalmar-card .unidad-cta {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.3);
  margin-top: 1.5rem;
}

/* ── Pickalmar (Unidad 4) ── */
.pickalmar-header {
  margin-bottom: 2rem;
}


/* ── Pickalmar links (Unidad 4) ── */
.pickalmar-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem 3rem;
  margin-top: 2.5rem;
}

.pickalmar-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.85rem;
  text-decoration: none;
  cursor: pointer;
  transition: opacity 0.22s ease;
}

.pickalmar-link:hover {
  text-decoration: none;
  opacity: 1;
}

.pickalmar-link-img {
  display: block;
  height: 140px;
  width: auto;
  max-width: 140px;
  object-fit: contain;
  opacity: 1;
  transition: transform 0.22s ease, filter 0.22s ease;
  filter: brightness(0) invert(1) drop-shadow(0 2px 8px rgba(255, 255, 255, 0.15));
}

.pickalmar-link:hover .pickalmar-link-img {
  transform: translateY(-4px) scale(1.05);
  filter: brightness(0) invert(1) drop-shadow(0 4px 14px rgba(255, 255, 255, 0.3));
}

.pickalmar-link-text {
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  text-align: center;
  line-height: 1.4;
  max-width: 140px;
  transition: color 0.22s ease;
}

.pickalmar-link:hover .pickalmar-link-text {
  color: rgba(255, 255, 255, 0.95);
}

@media (max-width: 767px) {
  .pickalmar-links {
    gap: 2rem 1rem;
  }

  .pickalmar-link-img {
    height: 110px;
    max-width: 120px;
  }

  .pickalmar-link-text {
    font-size: 0.72rem;
    max-width: 120px;
  }
}

@media (max-width: 480px) {
  .pickalmar-links {
    gap: 1.75rem 0.75rem;
  }

  .pickalmar-link-img {
    height: 80px;
    max-width: 90px;
  }

  .pickalmar-link-text {
    font-size: 0.65rem;
    max-width: 90px;
  }
}

/* ── Pickalmar links — variante vertical (lista) ── */
.pickalmar-links--vertical {
  flex-direction: column;
  flex-wrap: nowrap;
  gap: 0;
  align-items: stretch;
  margin-top: 2.5rem;
}

.pickalmar-links--vertical .pickalmar-link {
  flex-direction: row;
  align-items: center;
  gap: 1.75rem;
  padding: 0.75rem 0.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
  opacity: 1;
}

.pickalmar-links--vertical .pickalmar-link:first-child {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.pickalmar-links--vertical .pickalmar-link::after {
  content: '→';
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.2);
  margin-left: auto;
  flex-shrink: 0;
  transition: transform 0.22s ease, color 0.22s ease;
}

.pickalmar-links--vertical .pickalmar-link:hover::after {
  transform: translateX(7px);
  color: rgba(255, 255, 255, 0.75);
}

.pickalmar-links--vertical .pickalmar-link-img {
  height: 72px;
  max-width: 72px;
  flex-shrink: 0;
}

.pickalmar-links--vertical .pickalmar-link:hover .pickalmar-link-img {
  transform: scale(1.08);
  filter: brightness(0) invert(1) drop-shadow(0 4px 14px rgba(255, 255, 255, 0.3));
}

.pickalmar-links--vertical .pickalmar-link-text {
  font-size: 1rem;
  letter-spacing: 0.12em;
  text-align: left;
  max-width: none;
  flex: 1;
}

.pickalmar-links--vertical .pickalmar-link:hover .pickalmar-link-text {
  color: rgba(255, 255, 255, 0.95);
}

@media (max-width: 767px) {
  .pickalmar-links--vertical .pickalmar-link-img {
    height: 56px;
    max-width: 56px;
  }

  .pickalmar-links--vertical .pickalmar-link-text {
    font-size: 0.85rem;
  }
}

@media (max-width: 480px) {
  .pickalmar-links--vertical .pickalmar-link {
    gap: 1.25rem;
    padding: 1.1rem 0.25rem;
  }

  .pickalmar-links--vertical .pickalmar-link-img {
    height: 44px;
    max-width: 44px;
  }

  .pickalmar-links--vertical .pickalmar-link-text {
    font-size: 0.75rem;
    letter-spacing: 0.08em;
  }
}


/* ─── migrado de kalmar-responsive.css: Empresa B pillars ─── */
/* ── Empresa B pillars — lista horizontal ── */
.eb-pillars-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
}

.eb-pillar-item {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: .3rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  transition: padding-left .25s ease;
}

.eb-pillar-item:first-child {
  border-top: 1px solid rgba(255, 255, 255, .08);
}

.eb-pillar-item:hover {
  padding-left: .5rem;
}

.eb-pillar-item:hover .eb-pillar-title {
  color: var(--terra);
}

.eb-pillar-icon {
  flex-shrink: 0;
  width: 2.75rem;
  height: 2.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, .06);
  border-radius: .5rem;
}

.eb-pillar-img {
  width: 1.7rem;
  height: 1.7rem;
  object-fit: contain;
}

.eb-pillar-title {
  font-family: 'Gotham', sans-serif;
  font-weight: 600;
  font-size: .82rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .85);
  margin: 0;
  transition: color .25s ease;
  line-height: 1.4;
}

/* ── Empresa B — Qué Hacemos sub-block ── */
.eb-que {
  margin-top: 5rem;
  padding-top: 4rem;
  border-top: 2px solid var(--color-terra);
}

.eb-que__header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.eb-que__section-title {
  font-family: var(--font-gotham);
  font-weight: 500;
  font-size: clamp(0.7rem, 1.2vw, 0.85rem);
  color: var(--color-white-50);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin: 0 0 1rem;
}

.eb-que__logo-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.eb-que__logo {
  height: 110px;
  width: auto;
  object-fit: contain;
  display: block;
}

.eb-que__cols {
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  gap: 2rem;
  align-items: start;
}

.eb-que__col {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.eb-que__col--center {
  border-left: 1px solid var(--color-white-12);
  border-right: 1px solid var(--color-white-12);
  padding: 0 2rem;
}

.eb-que__num {
  font-family: var(--font-gotham);
  font-weight: 900;
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: var(--color-terra);
  line-height: 1;
  letter-spacing: -0.03em;
}

.eb-que__col-title {
  font-family: var(--font-gotham);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
  line-height: 1.4;
}

.eb-que__col-title--center {
  text-align: center;
  font-size: 1rem;
  margin-bottom: 1.25rem;
  color: var(--color-white);
}

.eb-que__rep {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1.25rem;
}

.eb-que__rep-item {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.eb-que__rep-num {
  font-family: var(--font-gotham);
  font-weight: 900;
  font-size: 1.75rem;
  color: var(--color-terra);
  line-height: 1;
  letter-spacing: -0.02em;
}

.eb-que__rep-desc {
  font-family: var(--font-gotham);
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
  margin: 0;
  line-height: 1.5;
}

@media (max-width: 768px) {
  .eb-que__cols {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .eb-que__col--center {
    border-left: none;
    border-right: none;
    border-top: 1px solid var(--color-white-12);
    border-bottom: 1px solid var(--color-white-12);
    padding: 2rem 0;
  }

  .eb-que__rep {
    grid-template-columns: repeat(3, 1fr);
  }
}


/* ─── migrado de kalmar-responsive.css: KALMAR THEME CLASSES ─── */
/* ══ KALMAR THEME CLASSES (Empresa B de Home) ══ */
.kalmar-section--dark {
  background: var(--azul);
}

.kalmar-label {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.kalmar-label__line {
  width: 28px;
  height: 2px;
  background: var(--terra);
  flex-shrink: 0;
}

.kalmar-label__text {
  font-family: 'Gotham', sans-serif;
  font-weight: 500;
  font-size: 0.62rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--terra);
}

.kalmar-title {
  font-family: 'Gotham', sans-serif;
  font-weight: 700;
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  line-height: 1.1;
  color: var(--azul);
  margin-bottom: 1.5rem;
}

.kalmar-title--white {
  color: #fff;
}

.kalmar-title em {
  font-family: 'Gentium', serif;
  font-style: italic;
  font-weight: 400;
  color: var(--terra);
}

.kalmar-body {
  font-family: 'Gotham', sans-serif;
  font-weight: 300;
  font-size: 0.95rem;
  line-height: 1.85;
  color: var(--text-mid);
}

.kalmar-b-pillar {
  background: rgba(255, 255, 255, 0.03);
}

.kalmar-counter {
  font-family: 'Gotham', sans-serif;
  font-weight: 700;
  font-size: 1.8rem;
  color: var(--terra);
  line-height: 1;
  margin-bottom: 0.3rem;
}

.kalmar-reveal,
.kalmar-reveal--left,
.kalmar-reveal--right,
.kalmar-reveal--scale,
.kalmar-reveal--stagger>* {
  will-change: opacity, transform;
}



/* ─── migrado de kalmar-responsive.css: FUNDADORES ─── */
/* ══ FUNDADORES (Fasón page) ══ */
.fason-fundadores {
  background: var(--gray);
  padding: 8rem 0;
}

.fundadores-header {
  text-align: center;
  margin-bottom: 4rem;
}

.fundadores-header .section-label {
  justify-content: center;
}

.fundadores-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.fundador-card {
  display: flex;
  flex-direction: column;
}

.fundador-foto-wrap {
  overflow: hidden;
  aspect-ratio: 3 / 4;
  margin-bottom: 2rem;
}

.fundador-foto {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.fundador-card:hover .fundador-foto {
  transform: scale(1.03);
}

.fundador-terra-line {
  width: 2.5rem;
  height: 2px;
  background: var(--terra);
  margin-bottom: 1.5rem;
}

.fundador-nombre {
  font-family: 'Gotham', sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--azul);
  line-height: 1.1;
  margin: 0 0 0.5rem 0;
}

.fundador-rol {
  font-size: var(--fs-sm);
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--terra);
  margin-bottom: 1.5rem;
}

.fundador-desc {
  font-weight: 300;
  color: var(--text-mid);
  line-height: 1.8;
  margin: 0;
}

@media (max-width: 900px) {
  .fundadores-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .fundador-foto-wrap {
    aspect-ratio: 4 / 3;
  }
}

@media (max-width: 640px) {
  .fason-fundadores {
    padding: 5rem 0;
  }

  .fundadores-header {
    margin-bottom: 2.5rem;
  }

  .fundador-foto-wrap {
    aspect-ratio: 3 / 4;
  }
}

/* ══════════════════════════════════════
   404 — Página no encontrada
══════════════════════════════════════ */
.kalmar-404-main {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.kalmar-404 {
    flex: 1;
    background-color: var(--azul);
    display: flex;
    align-items: center;
    padding: var(--section-pad) 0;
    padding-top: calc(var(--section-pad) + var(--nav-height));
    min-height: 80vh;
}

.kalmar-404__inner {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.kalmar-404__content {
    position: relative;
}

.kalmar-404__num {
    font-family: var(--font-gotham);
    font-weight: var(--fw-black);
    font-size: clamp(8rem, 20vw, 18rem);
    line-height: 1;
    color: var(--color-white-08);
    position: absolute;
    top: -2rem;
    left: -1rem;
    pointer-events: none;
    user-select: none;
    letter-spacing: -0.04em;
}

.kalmar-404__title {
    font-family: var(--font-gotham);
    font-weight: var(--fw-bold);
    font-size: clamp(2rem, 5vw, 3.5rem);
    color: var(--white);
    line-height: var(--lh-snug);
    letter-spacing: var(--ls-tight);
    margin: 1.5rem 0 1.25rem;
    position: relative;
}

.kalmar-404__desc {
    font-family: var(--font-gotham);
    font-weight: var(--fw-light);
    font-size: var(--fs-md);
    color: var(--color-white-70);
    line-height: var(--lh-normal);
    max-width: 42ch;
    margin-bottom: 2.5rem;
    position: relative;
}

.kalmar-404__cta {
    position: relative;
}

.kalmar-404__media {
    border-radius: 4px;
    overflow: hidden;
    aspect-ratio: 4 / 5;
}

.kalmar-404__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

@media (max-width: 900px) {
    .kalmar-404__inner {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .kalmar-404__media {
        display: none;
    }

    .kalmar-404__num {
        font-size: clamp(6rem, 30vw, 12rem);
    }
}

@media (max-width: 480px) {
    .kalmar-404 {
        padding-top: calc(4rem + var(--nav-height));
        padding-bottom: 4rem;
    }
}

