/* ═══════════════════════════════════════════
   RA INNOVAVISION — main.css
   ═══════════════════════════════════════════ */

/* ─── VARIABLES ─── */
:root {
  --orange:      #F26522;
  --orange-light:#FF8C42;
  --orange-pale: #FFF0E8;
  --black:       #111111;
  --white:       #FFFFFF;
  --gray-light:  #F5F5F5;
  --gray-mid:    #888888;
  --gray-dark:   #333333;

  --font-display: 'Bebas Neue', sans-serif;
  --font-condensed: 'Barlow Condensed', sans-serif;
  --font-body:   'Barlow', sans-serif;

  --max-width: 1160px;
  --nav-height: 68px;
}

/* ─── RESET ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
img { display: block; max-width: 100%; height: auto; }
a { text-decoration: none; }
ul { list-style: none; }

body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--black);
  overflow-x: hidden;
}

/* ─── UTILITIES ─── */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 60px;
}

.section-label {
  font-family: var(--font-condensed);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 16px;
  display: block;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(38px, 5vw, 68px);
  line-height: 1;
  color: var(--black);
  letter-spacing: 0.5px;
}
.section-title-white { color: var(--white); }

.btn-primary {
  display: inline-block;
  background: var(--orange);
  color: var(--white);
  padding: 16px 36px;
  font-family: var(--font-condensed);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 3px;
  transition: background .2s, transform .2s;
}
.btn-primary:hover { background: var(--orange-light); transform: translateY(-2px); }

.btn-secondary {
  display: inline-block;
  background: transparent;
  color: var(--white);
  padding: 16px 36px;
  font-family: var(--font-condensed);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 1px;
  text-transform: uppercase;
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 3px;
  transition: border-color .2s, color .2s;
}
.btn-secondary:hover { border-color: var(--orange); color: var(--orange); }

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.visible { opacity: 1; transform: none; }


/* ═══════════════════════════════════════════
   NAV
   ═══════════════════════════════════════════ */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(17,17,17,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(242,101,34,0.2);
  transition: border-color .3s;
}
#navbar.scrolled { border-bottom-color: rgba(242,101,34,0.35); }

.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 60px;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-family: var(--font-display);
  font-size: 26px;
  letter-spacing: 2px;
  color: var(--white);
}
.logo span { color: var(--orange); }

.nav-links {
  display: flex;
  gap: 36px;
  align-items: center;
}
.nav-links a {
  font-family: var(--font-condensed);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  transition: color .2s;
}
.nav-links a:hover { color: var(--orange); }

.nav-cta {
  background: var(--orange) !important;
  color: var(--white) !important;
  padding: 10px 22px;
  border-radius: 4px;
  font-weight: 700 !important;
  transition: background .2s !important;
}
.nav-cta:hover { background: var(--orange-light) !important; }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform .3s, opacity .3s;
}


/* ═══════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════ */
#hero {
  min-height: 100vh;
  background: var(--black);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: var(--nav-height) 60px 80px;
}

.hero-grid-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(242,101,34,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(242,101,34,0.06) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.hero-glow {
  position: absolute;
  width: 700px; height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(242,101,34,0.20) 0%, transparent 70%);
  top: -150px; right: -100px;
  pointer-events: none;
}

.hero-glow2 {
  position: absolute;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(242,101,34,0.10) 0%, transparent 70%);
  bottom: 0; left: 100px;
  pointer-events: none;
}

/* Two-column layout */
.hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

/* Text column */
.hero-text { display: flex; flex-direction: column; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(242,101,34,0.15);
  border: 1px solid rgba(242,101,34,0.4);
  color: var(--orange);
  font-family: var(--font-condensed);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: 2px;
  margin-bottom: 32px;
  width: fit-content;
  animation: fadeUp .8s ease both;
}

.badge-dot {
  width: 8px; height: 8px;
  background: var(--orange);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(48px, 6.5vw, 100px);
  line-height: 0.94;
  color: var(--white);
  letter-spacing: 1px;
  animation: fadeUp .8s .1s ease both;
}
.hero-title .accent { color: var(--orange); }

.hero-subtitle {
  font-weight: 300;
  font-size: clamp(15px, 1.6vw, 18px);
  color: rgba(255,255,255,0.6);
  max-width: 480px;
  line-height: 1.7;
  margin-top: 28px;
  animation: fadeUp .8s .2s ease both;
}

.hero-btns {
  display: flex;
  gap: 16px;
  margin-top: 40px;
  flex-wrap: wrap;
  animation: fadeUp .8s .3s ease both;
}

.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 56px;
  padding-top: 36px;
  border-top: 1px solid rgba(255,255,255,0.1);
  flex-wrap: wrap;
  animation: fadeUp .8s .4s ease both;
}

.stat-num {
  font-family: var(--font-display);
  font-size: 40px;
  color: var(--orange);
  line-height: 1;
}
.stat-label {
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  font-weight: 300;
  margin-top: 4px;
  letter-spacing: 0.5px;
}

/* Image column */
.hero-image-wrap {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  animation: fadeUp .8s .35s ease both;
  margin-top: -48px;
}

.hero-illustration {
  width: 100%;
  max-width: 900px;
  height: auto;
  filter: drop-shadow(0 0 60px rgba(242,101,34,0.30));
  animation: floatImg 5s ease-in-out infinite;
  transform: translateY(-24px);
}

@keyframes floatImg {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-16px); }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: none; }
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(0.8); }
}


/* ═══════════════════════════════════════════
   MARQUEE
   ═══════════════════════════════════════════ */
.marquee-strip {
  background: var(--orange);
  overflow: hidden;
  padding: 14px 0;
  white-space: nowrap;
}
.marquee-inner {
  display: inline-flex;
  animation: marquee 22s linear infinite;
}
.marquee-item {
  font-family: var(--font-display);
  font-size: 18px;
  letter-spacing: 3px;
  color: var(--white);
  padding: 0 28px;
}
.marquee-dot {
  color: rgba(255,255,255,0.5);
  padding: 0 4px;
}
@keyframes marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}


/* ═══════════════════════════════════════════
   EXPERIENCIA
   ═══════════════════════════════════════════ */
#experiencia {
  background: var(--gray-light);
  padding: 100px 0;
}

.exp-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.exp-lead {
  font-weight: 300;
  font-size: 20px;
  line-height: 1.6;
  color: var(--gray-dark);
  margin: 28px 0 16px;
}
.exp-text p {
  font-size: 15px;
  color: var(--gray-mid);
  line-height: 1.8;
}

.exp-visual {
  background: var(--black);
  border-radius: 8px;
  padding: 48px;
  position: relative;
  overflow: hidden;
}
.exp-visual::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(242,101,34,0.25) 0%, transparent 70%);
  pointer-events: none;
}

.exp-icon-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }

.exp-icon-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(242,101,34,0.2);
  border-radius: 6px;
  padding: 24px;
  transition: border-color .3s;
}
.exp-icon-card:hover { border-color: var(--orange); }
.exp-icon { font-size: 28px; margin-bottom: 10px; }
.exp-icon-card h4 {
  font-family: var(--font-condensed);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 1px;
  color: var(--white);
  text-transform: uppercase;
}


/* ═══════════════════════════════════════════
   PROCESO
   ═══════════════════════════════════════════ */
#proceso {
  background: var(--black);
  padding: 120px 0;
}

.proceso-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 72px;
  gap: 40px;
}
.proceso-header p {
  font-size: 15px;
  color: rgba(255,255,255,0.4);
  max-width: 340px;
  line-height: 1.7;
  font-weight: 300;
  flex-shrink: 0;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}

.step {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  padding: 44px 32px;
  transition: background .3s, border-color .3s;
  cursor: default;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.step:hover { background: rgba(242,101,34,0.08); border-color: rgba(242,101,34,0.3); }

.step-num {
  font-family: var(--font-display);
  font-size: 72px;
  color: rgba(242,101,34,0.15);
  line-height: 1;
  margin-bottom: 20px;
  transition: color .3s;
}
.step:hover .step-num { color: rgba(242,101,34,0.35); }

.step-icon { font-size: 24px; margin-bottom: 16px; }

.step h3 {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--white);
  letter-spacing: 1px;
  margin-bottom: 10px;
  min-height: 2.4em;
}
.step p { font-size: 13px; color: rgba(255,255,255,0.4); line-height: 1.7; font-weight: 300; flex-grow: 1; }

.step-tag {
  display: inline-block;
  margin-top: 20px;
  padding: 4px 12px;
  background: rgba(242,101,34,0.12);
  border: 1px solid rgba(242,101,34,0.25);
  color: var(--orange);
  font-family: var(--font-condensed);
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}


/* ═══════════════════════════════════════════
   SOLUCIONES
   ═══════════════════════════════════════════ */
#soluciones { padding: 120px 0; }

.sol-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 64px;
}
.sol-header p { font-size: 18px; color: var(--gray-mid); line-height: 1.8; font-weight: 300; }

.sol-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }

.sol-card {
  border: 2px solid #E8E8E8;
  border-radius: 8px;
  padding: 44px;
  position: relative;
  overflow: hidden;
  transition: transform .3s, box-shadow .3s, border-color .3s;
}
.sol-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(242,101,34,0.10);
  border-color: rgba(242,101,34,0.3);
}
.sol-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s;
}
.sol-card:hover::after { transform: scaleX(1); }

.sol-icon {
  width: 52px; height: 52px;
  background: var(--orange-pale);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 24px;
}

.sol-card h3 {
  font-family: var(--font-display);
  font-size: 24px;
  letter-spacing: 1px;
  color: var(--black);
  margin-bottom: 10px;
}
.sol-card p { font-size: 20px; color: var(--gray-mid); line-height: 1.7; font-weight: 300; }

.sol-arrow {
  position: absolute;
  top: 44px; right: 44px;
  font-size: 28px;
  color: rgba(0, 0, 0, 0.644);
  transition: color .3s, transform .3s;
}
.sol-card:hover .sol-arrow { color: var(--orange); transform: translate(3px,-3px); }


/* ═══════════════════════════════════════════
   CASOS
   ═══════════════════════════════════════════ */
#casos { background: var(--gray-light); padding: 120px 0; }

.casos-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 64px;
}

.caso-card {
  background: var(--black);
  border-radius: 6px;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 28px;
  transition: transform .3s;
}
.caso-card:hover { transform: scale(1.02); }

.caso-number {
  display: block;
  margin-bottom: 18px;
}

.caso-bg {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 90px;
  opacity: 0.12;
  pointer-events: none;
}

.caso-top {
  flex-shrink: 0;
  margin-bottom: 12px;
}

.caso-num {
  font-family: var(--font-display);
  font-size: 44px;
  color: rgba(242,101,34,0.3);
  line-height: 1;
}

.caso-tag {
  display: inline-block;
  background: var(--orange);
  color: var(--white);
  font-family: var(--font-condensed);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 2px;
  margin-bottom: 10px;
  width: fit-content;
  max-width: 100%;
}

.caso-card h3 {
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--white);
  letter-spacing: 0.5px;
  line-height: 1.2;
  margin: 0 0 10px 0;
}

.caso-card p {
  font-size: 14px;
  color: rgba(255,255,255,0.4);
  font-weight: 300;
  margin: 0;
  flex: 1;
}


/* ═══════════════════════════════════════════
   DIFERENCIACIÓN
   ═══════════════════════════════════════════ */
#diferenciacion {
  background: var(--black);
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}

.diff-bg-text {
  position: absolute;
  font-family: var(--font-display);
  font-size: 220px;
  color: rgba(255,255,255,0.02);
  white-space: nowrap;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  letter-spacing: 10px;
  user-select: none;
}

.diff-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.diff-left .section-label { color: var(--orange); }
.diff-left p {
  font-size: 16px;
  color: rgba(255,255,255,0.5);
  line-height: 1.8;
  font-weight: 300;
  margin-top: 24px;
}

.diff-right { display: flex; flex-direction: column; gap: 16px; }

.diff-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 24px;
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 6px;
  transition: border-color .3s;
}
.diff-item:hover { border-color: rgba(242,101,34,0.35); }

.diff-check {
  width: 36px; height: 36px;
  background: rgba(242,101,34,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--orange);
  font-size: 16px;
}

.diff-item h4 {
  font-family: var(--font-condensed);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 1px;
  color: var(--white);
  text-transform: uppercase;
  margin-bottom: 6px;
}
.diff-item p { font-size: 13px; color: rgba(255,255,255,0.38); line-height: 1.6; font-weight: 300; }


/* ═══════════════════════════════════════════
   NUESTRO EQUIPO
   ═══════════════════════════════════════════ */
#modelo.team-section {
  position: relative;
  background: #efefef;
  padding: 120px 0;
  overflow: hidden;
}

.team-header {
  text-align: center;
  margin-bottom: 56px;
  position: relative;
  z-index: 2;
}

.team-header .section-title {
  font-size: clamp(56px, 8vw, 120px);
  line-height: 0.92;
  text-transform: uppercase;
}

.team-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(2, minmax(280px, 360px));
  justify-content: center;
  gap: 68px;
}

.team-card {
  position: relative;
  background: #050505;
  border-radius: 28px 28px 0 0;
  padding: 34px 28px 64px;
  min-height: 640px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0,0,0,0.16);
  transition: transform .25s ease, box-shadow .25s ease;
}

.team-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 32px 70px rgba(0,0,0,0.22);
}

.team-card-accent {
  position: absolute;
  top: 44px;
  left: 0;
  width: 14px;
  height: 78px;
  background: var(--orange);
}

.team-card-actions {
  position: absolute;
  top: 22px;
  right: 22px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  z-index: 3;
}

.team-action-btn {
  width: 50px;
  height: 50px;
  border-radius: 16px;
  background: #111111;
  border: 2px solid #f3a14b;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}

.team-action-btn:hover {
  transform: scale(1.06);
  background: #1b1b1b;
  border-color: var(--orange);
}

.team-action-btn svg {
  width: 28px;
  height: 28px;
  fill: #ffffff;
}

.team-avatar-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  margin-top: 4px;
  margin-bottom: 18px;
}

.team-avatar-bg {
  position: absolute;
  top: 10px;
  width: 98px;
  height: 98px;
  border-radius: 50%;
  background: linear-gradient(180deg, #f3a14b 0%, #d87f30 100%);
}

.team-avatar {
  position: relative;
  z-index: 2;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center;
  border: 4px solid transparent;
}

.team-role {
  font-family: var(--font-display);
  font-size: 24px;
  color: var(--orange);
  letter-spacing: 1px;
  text-align: center;
  margin-top: 4px;
  line-height: 1;
  text-transform: uppercase;
}

.team-name {
  font-family: var(--font-display);
  font-size: 44px;
  line-height: 0.95;
  letter-spacing: 0.5px;
  color: var(--white);
  text-align: center;
  text-transform: uppercase;
  margin-top: 4px;
}

.team-bio {
  max-width: 270px;
  margin: 12px auto 0;
  font-size: 13px;
  line-height: 1.45;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--white);
  text-align: left;
}

.team-list-title {
  margin-top: 20px;
  font-family: var(--font-condensed);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: var(--white);
}

.team-list {
  margin-top: 6px;
  padding-left: 18px;
  list-style: disc;
}

.team-list li {
  color: var(--white);
  font-size: 13px;
  line-height: 1.45;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.team-wave {
  position: absolute;
  left: -4%;
  right: -4%;
  bottom: -6px;
  height: 76px;
  background: var(--orange);
  border-top-left-radius: 55% 28px;
  border-top-right-radius: 45% 22px;
}

.team-bg-cross {
  position: absolute;
  width: 50px;
  height: 50px;
  opacity: 0.22;
  z-index: 1;
}

.team-bg-cross::before,
.team-bg-cross::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 44px;
  height: 3px;
  background: #d9d9d9;
  transform-origin: center;
}

.team-bg-cross::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.team-bg-cross::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.team-bg-cross-1 { top: 60px; left: 18px; }
.team-bg-cross-2 { top: 160px; right: 18px; }
.team-bg-cross-3 { top: 260px; left: 210px; }
.team-bg-cross-4 { bottom: 170px; left: 20px; }
.team-bg-cross-5 { bottom: 70px; left: 48%; }
.team-bg-cross-6 { bottom: 130px; right: 64px; }


/* ═══════════════════════════════════════════
   CTA
   ═══════════════════════════════════════════ */
#cta {
  background: var(--orange);
  padding: 120px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-pattern {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.06) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}

.cta-inner { position: relative; z-index: 1; }

#cta h2 {
  font-family: var(--font-display);
  font-size: clamp(38px, 5.5vw, 78px);
  color: var(--white);
  line-height: 1;
  max-width: 820px;
  margin: 0 auto;
  letter-spacing: 1px;
}
#cta p {
  font-size: 17px;
  color: rgba(255,255,255,0.75);
  margin: 22px auto 0;
  max-width: 460px;
  font-weight: 300;
  line-height: 1.7;
}

.cta-btn {
  display: inline-block;
  margin-top: 44px;
  background: var(--black);
  color: var(--white);
  padding: 20px 52px;
  font-family: var(--font-display);
  font-size: 20px;
  letter-spacing: 2px;
  border-radius: 4px;
  transition: background .2s, transform .2s;
}
.cta-btn:hover { background: #222; transform: translateY(-3px); }


/* ═══════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════ */
footer {
  background: var(--black);
  border-top: 1px solid rgba(242,101,34,0.2);
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 48px 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: 2px;
  color: var(--white);
}
.footer-logo span { color: var(--orange); }

.footer-links { display: flex; gap: 28px; flex-wrap: wrap; }
.footer-links a {
  font-family: var(--font-condensed);
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.38);
  transition: color .2s;
}
.footer-links a:hover { color: var(--orange); }

.footer-copy { font-size: 11px; color: rgba(255,255,255,0.22); letter-spacing: 0.5px; }


/* ═══════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════ */
@media (max-width: 1024px) {
  .hero-title { font-size: clamp(44px, 6vw, 80px); }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .casos-grid { grid-template-columns: repeat(2, 1fr); }

  .team-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
}

@media (max-width: 768px) {
  .container { padding: 0 24px; }
  #hero { padding: 100px 24px 60px; }
  #cta { padding: 80px 24px; }

  .nav-inner { padding: 0 24px; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }

  /* Hero stacks vertically on mobile */
  .hero-inner { grid-template-columns: 1fr; }
  .hero-image-wrap { display: none; }

  .exp-grid,
  .diff-inner,
  .sol-header { grid-template-columns: 1fr; gap: 40px; }

  .sol-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .team-bg-cross-3,
  .team-bg-cross-5,
  .team-bg-cross-6 {
    display: none;
  }

  .proceso-header { flex-direction: column; align-items: flex-start; }

  .footer-inner { flex-direction: column; text-align: center; }
  .footer-links { justify-content: center; }

  .hero-stats { gap: 24px; }
}

/* Mobile nav open state (toggled by JS) */
@media (max-width: 768px) {
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: var(--nav-height);
    left: 0; right: 0;
    background: rgba(17,17,17,0.98);
    padding: 24px 24px 32px;
    gap: 20px;
    border-bottom: 1px solid rgba(242,101,34,0.2);
  }
  .nav-links.open a { font-size: 16px; letter-spacing: 1.5px; }
  .nav-links.open .nav-cta { text-align: center; padding: 14px; }
}

/* ═══════════════════════════════════════════
   SOL-CARD AS LINK (portfolio trigger)
   ═══════════════════════════════════════════ */
.sol-card--link {
  display: block;
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}
.sol-card--link:hover { color: inherit; }

.sol-card-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-condensed);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 18px;
  opacity: 0;
  transform: translateX(-6px);
  transition: opacity .25s, transform .25s;
}
.sol-card--link:hover .sol-card-tag {
  opacity: 1;
  transform: translateX(0);
}


/* ═══════════════════════════════════════════
   PORTFOLIO PAGES — shared layout
   ═══════════════════════════════════════════ */

/* Hero strip at top of each portfolio page */
.pf-hero {
  background: var(--black);
  padding: calc(var(--nav-height) + 60px) 0 80px;
  position: relative;
  overflow: hidden;
}

.pf-hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(242,101,34,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(242,101,34,0.05) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.pf-hero-glow {
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(242,101,34,0.18) 0%, transparent 70%);
  top: -200px; right: -100px;
  pointer-events: none;
}

.pf-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-condensed);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  margin-bottom: 36px;
  transition: color .2s;
}
.pf-back:hover { color: var(--orange); }
.pf-back svg { width: 16px; height: 16px; fill: currentColor; }

.pf-area-tag {
  display: inline-block;
  background: rgba(242,101,34,0.15);
  border: 1px solid rgba(242,101,34,0.4);
  color: var(--orange);
  font-family: var(--font-condensed);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 7px 16px;
  border-radius: 2px;
  margin-bottom: 24px;
}

.pf-hero-title {
  font-family: var(--font-display);
  font-size: clamp(48px, 7vw, 110px);
  line-height: 0.93;
  color: var(--white);
  letter-spacing: 1px;
  max-width: 900px;
  margin-bottom: 24px;
}
.pf-hero-title span { color: var(--orange); }

.pf-hero-desc {
  font-size: 17px;
  font-weight: 300;
  color: rgba(255,255,255,0.55);
  max-width: 560px;
  line-height: 1.75;
  margin-bottom: 40px;
}

/* Stat bar */
.pf-stats {
  display: flex;
  gap: 48px;
  padding-top: 36px;
  border-top: 1px solid rgba(255,255,255,0.1);
  flex-wrap: wrap;
}
.pf-stat-num {
  font-family: var(--font-display);
  font-size: 38px;
  color: var(--orange);
  line-height: 1;
}
.pf-stat-label {
  font-size: 12px;
  color: rgba(255,255,255,0.38);
  font-weight: 300;
  margin-top: 4px;
  letter-spacing: 0.5px;
}

/* Portfolio body */
.pf-body { padding: 100px 0; }

/* Section intro */
.pf-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  margin-bottom: 80px;
}

.pf-intro-text h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 54px);
  line-height: 1;
  color: var(--black);
  margin-bottom: 20px;
}
.pf-intro-text p {
  font-size: 15px;
  color: var(--gray-mid);
  line-height: 1.8;
  font-weight: 300;
  margin-bottom: 12px;
}

.pf-what-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.pf-what-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 16px;
  color: var(--gray-dark);
  line-height: 1.5;
}
.pf-what-list li::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--orange);
  flex-shrink: 0;
  margin-top: 6px;
}

/* Divider */
.pf-divider {
  border: none;
  border-top: 1px solid #E8E8E8;
  margin: 72px 0;
}

/* Work grid */
.pf-section-label {
  font-family: var(--font-condensed);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 12px;
}
.pf-section-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 48px);
  color: var(--black);
  line-height: 1;
  margin-bottom: 40px;
}

/* Card grid for portfolio items */
.pf-work-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 24px;
}

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

.pf-work-grid--featured {
  grid-template-columns: repeat(3, 1fr);
}

.pf-card--featured-main {
  grid-column: span 2;
}

/* Work card */
.pf-card {
  border-radius: 8px;
  overflow: hidden;
  background: var(--gray-light);
  position: relative;
  display: flex;
  flex-direction: column;
  transition: transform .3s, box-shadow .3s;
  border: 1px solid transparent;
}
.pf-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.1);
  border-color: rgba(242,101,34,0.2);
}

/* Image placeholder (replace with real <img> when you have assets) */
.pf-card-img {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--black);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pf-card-img--tall {
  aspect-ratio: 4/5;
}

.pf-card-img-placeholder {
  font-size: 52px;
  opacity: 0.15;
}

.pf-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Video embed wrapper */
.pf-card-video {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--black);
  position: relative;
  overflow: hidden;
}
.pf-card-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.pf-card-video iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* Card overlay gradient on image */
.pf-card-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(17,17,17,0.5) 0%, transparent 60%);
  pointer-events: none;
}

.pf-card-type {
  position: absolute;
  top: 16px; left: 16px;
  z-index: 2;
  background: var(--orange);
  color: var(--white);
  font-family: var(--font-condensed);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 2px;
}

.pf-card-body {
  padding: 24px;
  flex: 1;
}
.pf-card-body h3 {
  font-family: var(--font-display);
  font-size: 20px;
  letter-spacing: 0.5px;
  color: var(--black);
  line-height: 1.1;
  margin-bottom: 8px;
}
.pf-card-body p {
  font-size: 16px;
  color: var(--gray-mid);
  line-height: 1.65;
  font-weight: 300;
}

/* Coming soon card */
.pf-card--soon {
  border: 1px dashed #D0D0D0;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 200px;
  text-align: center;
  padding: 40px 28px;
}
.pf-card--soon p {
  font-family: var(--font-condensed);
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #BBBBBB;
}

/* Dark stripe section inside portfolio */
.pf-stripe {
  background: var(--black);
  padding: 80px 0;
  margin: 80px 0 0;
}
.pf-stripe .pf-section-title { color: var(--white); }
.pf-stripe .pf-section-label { color: var(--orange); }
.pf-stripe .pf-card {
  background: rgba(255,255,255,0.04);
  border-color: rgba(255,255,255,0.07);
}
.pf-stripe .pf-card:hover { border-color: rgba(242,101,34,0.3); }
.pf-stripe .pf-card-body h3 { color: var(--white); }
.pf-stripe .pf-card-body p { color: rgba(255,255,255,0.4); }
.pf-stripe .pf-card--soon { border-color: rgba(255,255,255,0.1); }
.pf-stripe .pf-card--soon p { color: rgba(255,255,255,0.2); }

/* CTA strip at bottom of portfolio */
.pf-cta {
  background: var(--orange);
  padding: 80px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.pf-cta-pattern {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.06) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}
.pf-cta-inner { position: relative; z-index: 1; }
.pf-cta h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 64px);
  color: var(--white);
  line-height: 1;
  max-width: 700px;
  margin: 0 auto 16px;
}
.pf-cta p {
  font-size: 16px;
  color: rgba(255,255,255,0.75);
  max-width: 460px;
  margin: 0 auto;
  font-weight: 300;
  line-height: 1.7;
}
.pf-cta .cta-btn {
  margin-top: 36px;
}

/* Portfolio responsive */
@media (max-width: 900px) {
  .pf-intro { grid-template-columns: 1fr; gap: 40px; }
  .pf-work-grid { grid-template-columns: 1fr 1fr; }
  .pf-work-grid--featured { grid-template-columns: 1fr 1fr; }
  .pf-card--featured-main { grid-column: span 2; }
  .pf-cta { padding: 60px 24px; }
}
@media (max-width: 600px) {
  .pf-work-grid,
  .pf-work-grid--2col { grid-template-columns: 1fr; }
  .pf-stats { gap: 28px; }
}


/* ═══════════════════════════════════════════
   CONEXIÓN ENTRE ÁREAS — process steps
   ═══════════════════════════════════════════ */
.pf-connect-steps {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  gap: 0;
  align-items: start;
  margin-bottom: 16px;
}

.pf-connect-step {
  background: var(--gray-light);
  border: 1px solid #E8E8E8;
  border-radius: 8px;
  padding: 32px 28px;
  transition: border-color .3s, box-shadow .3s;
}
.pf-connect-step:hover {
  border-color: rgba(242,101,34,0.35);
  box-shadow: 0 8px 32px rgba(242,101,34,0.08);
}

.pf-connect-num {
  font-family: var(--font-display);
  font-size: 52px;
  color: var(--orange);
  opacity: 0.2;
  line-height: 1;
  margin-bottom: 12px;
}

.pf-connect-step h3 {
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--black);
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}
.pf-connect-step p {
  font-size: 13px;
  color: var(--gray-mid);
  line-height: 1.6;
  font-weight: 300;
}

.pf-connect-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  font-size: 22px;
  color: var(--orange);
  opacity: 0.5;
  padding-top: 32px;
}

@media (max-width: 900px) {
  .pf-connect-steps {
    grid-template-columns: 1fr;
  }
  .pf-connect-arrow {
    padding: 8px 0;
    transform: rotate(90deg);
    padding-top: 0;
  }
}


/* WhatsApp button in CTA */
.cta-actions {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  margin-top: 44px;
  flex-wrap: wrap;
}

.cta-actions .cta-btn {
  margin-top: 0;
}

.cta-btn-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #25D366;
  color: var(--white);
  padding: 20px 34px;
  font-family: var(--font-display);
  font-size: 20px;
  letter-spacing: 2px;
  border-radius: 4px;
  transition: background .2s, transform .2s;
}
.cta-btn-whatsapp:hover { background: #1ebe5d; transform: translateY(-3px); }
.cta-btn-whatsapp svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

@media (max-width: 768px) {
  .cta-actions {
    gap: 12px;
  }
  .cta-actions .cta-btn,
  .cta-btn-whatsapp {
    width: 100%;
    text-align: center;
  }
}


/* ═══════════════════════════════════════════
   RESPONSIVE REFINEMENTS — mobile/tablet
   ═══════════════════════════════════════════ */
@media (max-width: 1200px) {
  .container,
  .nav-inner { padding-left: 32px; padding-right: 32px; }

  #hero { padding-left: 32px; padding-right: 32px; }

  .hero-inner,
  .exp-grid,
  .diff-inner,
  .sol-header,
  .pf-intro { gap: 48px; }

  .steps-grid { gap: 16px; }
  .step { padding: 36px 26px; }

  .casos-grid { gap: 20px; }

  .sol-card,
  .pf-card-body { padding: 28px; }
}

@media (max-width: 900px) {
  .section-title { font-size: clamp(34px, 7vw, 56px); }
  .hero-title { font-size: clamp(42px, 10vw, 72px); }
  .hero-subtitle { max-width: 100%; }

  .proceso-header,
  .sol-header,
  .pf-intro,
  .diff-inner,
  .exp-grid { grid-template-columns: 1fr; }

  .proceso-header { align-items: flex-start; margin-bottom: 40px; }
  .sol-header { margin-bottom: 40px; }

  .steps-grid,
  .sol-grid,
  .pf-work-grid,
  .pf-work-grid--2col,
  .pf-work-grid--featured,
  .casos-grid { grid-template-columns: 1fr 1fr; }

  .team-grid { grid-template-columns: 1fr; }
  .team-card { min-height: auto; }

  .pf-hero { padding: calc(var(--nav-height) + 44px) 0 64px; }
  .pf-hero-title { font-size: clamp(42px, 10vw, 72px); }
  .pf-hero-desc { max-width: 100%; font-size: 16px; }
}

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

  .container,
  .nav-inner { padding-left: 20px; padding-right: 20px; }

  #hero { min-height: auto; padding: calc(var(--nav-height) + 32px) 20px 48px; }
  .hero-grid-lines { background-size: 44px 44px; }
  .hero-inner { gap: 24px; }
  .hero-badge { margin-bottom: 20px; }
  .hero-title { font-size: clamp(38px, 13vw, 56px); line-height: 0.96; }
  .hero-subtitle { margin-top: 18px; font-size: 16px; line-height: 1.6; }
  .hero-btns { margin-top: 28px; }
  .hero-btns .btn-primary,
  .hero-btns .btn-secondary { width: 100%; text-align: center; }
  .hero-stats { margin-top: 34px; padding-top: 24px; gap: 20px; }
  .hero-stats .stat { min-width: calc(50% - 10px); }
  .stat-num { font-size: 34px; }

  #experiencia,
  #proceso,
  #soluciones,
  #casos,
  #diferenciacion,
  #modelo.team-section,
  #cta,
  .pf-body,
  .pf-stripe { padding-top: 72px; padding-bottom: 72px; }

  .section-label { margin-bottom: 12px; }
  .section-title { font-size: clamp(30px, 12vw, 46px); }
  .exp-lead,
  .sol-header p,
  .proceso-header p,
  .diff-left p,
  #cta p,
  .pf-cta p,
  .pf-intro-text p,
  .pf-card-body p { font-size: 15px; line-height: 1.65; }

  .steps-grid,
  .sol-grid,
  .casos-grid,
  .pf-work-grid,
  .pf-work-grid--2col,
  .pf-work-grid--featured { grid-template-columns: 1fr; }

  .pf-card--featured-main { grid-column: span 1; }

  .step,
  .sol-card,
  .caso-card,
  .pf-card-body,
  .pf-connect-step { padding-left: 22px; padding-right: 22px; }

  .step { padding-top: 30px; padding-bottom: 30px; }
  .step-num { font-size: 58px; margin-bottom: 14px; }
  .step h3 { min-height: 0; font-size: 20px; }
  .step p { font-size: 14px; }
  .step-tag { margin-top: 16px; }

  .sol-card { padding-top: 30px; padding-bottom: 30px; }
  .sol-card h3 { font-size: 22px; }
  .sol-card p { font-size: 16px; }
  .sol-arrow { top: 28px; right: 22px; }
  .sol-card-tag { opacity: 1; transform: none; }

  .casos-grid { margin-top: 36px; gap: 16px; }
  .caso-card { aspect-ratio: auto; min-height: 280px; padding: 24px; }
  .caso-bg { font-size: 72px; }
  .caso-card h3 { font-size: 18px; }
  .caso-card p { font-size: 15px; }

  .diff-bg-text { display: none; }
  .diff-item { padding: 18px; gap: 16px; }

  .team-header { margin-bottom: 28px; }
  .team-header .section-title { font-size: clamp(34px, 12vw, 54px); }
  .team-card { border-radius: 22px 22px 0 0; padding: 26px 18px 56px; }
  .team-card-accent { top: 26px; height: 60px; }
  .team-avatar { width: 108px; height: 108px; }
  .team-avatar-bg { width: 90px; height: 90px; }
  .team-role { font-size: 20px; }
  .team-name { font-size: 30px; }
  .team-bio,
  .team-list li { font-size: 12px; line-height: 1.5; }
  .team-list-title { font-size: 15px; }
  .team-wave { height: 62px; }

  #cta h2,
  .pf-cta h2 { font-size: clamp(30px, 11vw, 48px); }
  .cta-btn,
  .cta-btn-whatsapp,
  .pf-cta .cta-btn { width: 100%; justify-content: center; padding: 18px 24px; font-size: 18px; }

  .footer-inner { padding: 36px 20px; }
  .footer-links { gap: 16px 20px; }

  .pf-back { margin-bottom: 24px; }
  .pf-area-tag { margin-bottom: 18px; }
  .pf-stats { gap: 20px; padding-top: 24px; }
  .pf-stat-num { font-size: 32px; }
  .pf-card-body { padding-top: 20px; padding-bottom: 20px; }
  .pf-card-body h3 { font-size: 18px; }
  .pf-card-body p { font-size: 15px; }
  .pf-section-title { margin-bottom: 24px; }

  .pf-connect-step { padding-top: 24px; padding-bottom: 24px; }
  .pf-connect-num { font-size: 42px; }
  .pf-connect-step h3 { font-size: 18px; }
  .pf-connect-step p { font-size: 14px; }

  .nav-links.open {
    padding: 20px;
    gap: 16px;
  }
}

@media (max-width: 560px) {
  .hero-stats .stat { min-width: 100%; }
  .marquee-strip { padding: 12px 0; }
  .marquee-item { font-size: 16px; padding: 0 20px; }

  .section-title,
  .team-header .section-title,
  #cta h2,
  .pf-cta h2 { word-break: break-word; }

  .pf-card-video,
  .pf-card-img { aspect-ratio: 16 / 10; }

  .team-card-actions {
    position: static;
    flex-direction: row;
    justify-content: center;
    margin-bottom: 18px;
  }

  .team-avatar-wrap { margin-top: 0; }

  .footer-links a { font-size: 11px; }
}

@media (max-width: 420px) {
  .container,
  .nav-inner { padding-left: 16px; padding-right: 16px; }

  #hero { padding-left: 16px; padding-right: 16px; }

  .hero-title { font-size: clamp(34px, 14vw, 46px); }
  .section-title { font-size: clamp(28px, 11vw, 40px); }
  .team-header .section-title { font-size: clamp(30px, 11vw, 42px); }

  .btn-primary,
  .btn-secondary,
  .cta-btn,
  .cta-btn-whatsapp,
  .pf-cta .cta-btn { padding: 16px 20px; font-size: 16px; }

  .step,
  .sol-card,
  .caso-card,
  .pf-card-body,
  .pf-connect-step,
  .diff-item,
  .team-card { padding-left: 18px; padding-right: 18px; }

  .caso-card { min-height: 250px; }
  .caso-tag,
  .pf-card-type { font-size: 9px; letter-spacing: 1.2px; }
}


/* ─── CASO CARD AS LINK ─── */
.caso-card--link {
  text-decoration: none;
  color: inherit;
}
.caso-card--link:hover { color: inherit; }

/* Subtle overlay on hover */
.caso-card--link::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(242,101,34,0.06);
  opacity: 0;
  transition: opacity .3s;
  z-index: 1;
  pointer-events: none;
}
.caso-card--link:hover::before { opacity: 1; }

/* "Leer caso →" label */
.caso-card-cta {
  display: inline-block;
  margin-top: 12px;
  font-family: var(--font-condensed);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--orange);
  opacity: 0;
  transform: translateY(4px);
  transition: opacity .25s, transform .25s, color .25s;
}
.caso-card--link:hover .caso-card-cta {
  opacity: 1;
  transform: none;
  color: var(--orange);
}

/* ─── CASO CARD BOTTOM ZONE ─── */
.caso-card-bottom {
  display: flex;
  flex-direction: column;
  flex: 1;
  position: relative;
  z-index: 2;
}
