:root{
  --vino:#6c0b12;
  --vino2:#4e070c;
  --oro:#d8a10b;
  --oro2:#a97906;

  --cream:#f7f1e6;
  --ink:#1b232a;
  --muted:#5a6772;

  --max: 1180px;

  --glass: rgba(255,255,255,.86);
  --glass2: rgba(255,255,255,.66);

  --shadow: 0 18px 60px rgba(0,0,0,.25);
  --shadow2: 0 18px 50px rgba(0,0,0,.22);

  --pageBg:#0b0f14;
  --overlayTop: rgba(0,0,0,.06);
  --overlayBottom: rgba(0,0,0,.46);
}

*{ box-sizing:border-box; }
html,body{ height:100%; }
body{
  margin:0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--ink);
  background: var(--pageBg);
  overflow-x:hidden;
}

/* =========================
   HEADER (ACOMODADO)
========================= */
.topbar{
  position: sticky;
  top:0;
  z-index: 80;
  background: linear-gradient(180deg, #7a0f18 0%, #5b0b11 55%, #4a070c 100%);
  border-bottom: 3px solid rgba(216,161,11,.55);
  box-shadow: 0 18px 34px rgba(0,0,0,.28);
}

.topbar__texture{
  position:absolute; inset:0;
  pointer-events:none;
  opacity:.55;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='220' height='220'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='220' height='220' filter='url(%23n)' opacity='.16'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
}

.topbar__shine{
  position:absolute; top:0; left:-35%;
  width: 40%; height:100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.18), transparent);
  transform: skewX(-18deg);
  animation: topbarShine 7s linear infinite;
  pointer-events:none;
  opacity:.9;
}
@keyframes topbarShine{
  0%{ transform: translateX(-70%) skewX(-18deg); }
  100%{ transform: translateX(280%) skewX(-18deg); }
}

/* 🔥 Aquí está el acomodo bueno */
.topbar__inner{
  position:relative;
  max-width: min(var(--max), calc(100% - 18px));
  margin: 0 auto;
  padding: 12px 0;
  display:grid;
  grid-template-columns: auto 1fr; /* marca | menú */
  align-items:center;
  gap: 14px;
}

/* marca */
.brand{
  text-decoration:none;
  display:flex;
  flex-direction: column;
  line-height: 1.05;
  padding: 6px 10px;
  border-radius: 14px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: inset 0 -10px 16px rgba(0,0,0,.10);
  max-width: 420px;
}
.brand__title{
  color:#fff;
  font-weight: 900;
  font-size: clamp(18px, 2.2vw, 30px);
  letter-spacing:.2px;
  text-shadow: 0 10px 18px rgba(0,0,0,.25);
  white-space: nowrap;
}
.brand__name{
  color: var(--oro);
  font-weight: 900;
  font-size: clamp(18px, 2.2vw, 30px);
  text-shadow: 0 10px 18px rgba(0,0,0,.25);
  white-space: nowrap;
}

/* menú desktop */
.menu{
  display:flex;
  align-items:center;
  justify-content:flex-end;
  gap: 10px;
  padding-left: 10px;
  flex-wrap: nowrap;
}
.menu__link{
  color:#fff;
  text-decoration:none;
  font-weight: 800;
  font-size: 14px;
  display:flex;
  align-items:center;
  gap: 8px;
  padding: 10px 10px;
  border-radius: 12px;
  position:relative;
  transition: transform .15s ease, background .15s ease;
  white-space: nowrap;
}
.menu__link::after{
  content:"";
  position:absolute;
  left: 10px; right: 10px;
  bottom: 6px;
  height: 2px;
  background: rgba(216,161,11,.96);
  transform: scaleX(0);
  transform-origin:left;
  transition: transform .2s ease;
  border-radius: 999px;
}
.menu__link:hover{ transform: translateY(-1px); background: rgba(255,255,255,.08); }
.menu__link:hover::after{ transform: scaleX(1); }
.menu__link.is-active{ background: rgba(216,161,11,.12); }
.menu__link.is-active::after{ transform: scaleX(1); }

/* Hamburguesa */
.hamburger{
  width: 46px;
  height: 44px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.10);
  cursor:pointer;
  display:none;
  place-items:center;
  gap: 6px;
  padding: 10px;
}
.hamburger span{
  display:block;
  height: 2px;
  background: rgba(255,255,255,.92);
  border-radius: 999px;
  width: 100%;
  transition: transform .2s ease, opacity .2s ease;
}
.hamburger.is-open span:nth-child(1){ transform: translateY(8px) rotate(45deg); }
.hamburger.is-open span:nth-child(2){ opacity:0; }
.hamburger.is-open span:nth-child(3){ transform: translateY(-8px) rotate(-45deg); }

/* =========================
   HERO
========================= */
.hero{
  position:relative;
  min-height: calc(100vh - 82px);
  display:flex;
  justify-content:center;
  align-items:flex-start;
  padding: 24px 14px 128px;
}
.hero__bg{
  position:absolute;
  inset:0;
  background-image: url("fondos/camarafondo2.png");
  background-size: cover;
  background-position: center;
  transform: scale(1.02);
  filter: saturate(1.08) contrast(1.03);
}
.hero__overlay{
  position:absolute;
  inset:0;
  background:
    radial-gradient(circle at 50% 18%, var(--overlayTop), transparent 58%),
    linear-gradient(180deg, rgba(0,0,0,.05) 0%, var(--overlayBottom) 95%);
}

.hero__content{
  position:relative;
  width: min(var(--max), calc(100% - 20px));
  margin: 0 auto;
  display:flex;
  flex-direction:column;
  align-items:center;
  gap: 18px;
  z-index: 3;
}

/* Letras flotantes */
.floaties{
  position:absolute;
  inset:0;
  z-index:2;
  pointer-events:none;
  overflow:hidden;
}
.floaty{
  position:absolute;
  bottom: -40px;
  color: rgba(255,255,255,.90);
  font-weight: 900;
  animation: floatUp linear infinite;
  text-shadow: 0 18px 28px rgba(0,0,0,.25);
}
@keyframes floatUp{
  0%{ transform: translateY(0) rotate(0deg); opacity:0; }
  15%{ opacity:1; }
  100%{ transform: translateY(-760px) rotate(18deg); opacity:0; }
}

/* BIENVENIDA */
.welcomeCard{
  width: min(980px, 100%);
  background: linear-gradient(180deg, var(--glass), var(--glass2));
  border: 1px solid rgba(255,255,255,.50);
  border-radius: 28px;
  box-shadow: var(--shadow);
  padding: 22px 22px 18px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  position:relative;
  overflow:hidden;
}
.welcomeCard::before{
  content:"";
  position:absolute;
  inset:-2px;
  background: radial-gradient(circle at 30% 10%, rgba(255,255,255,.62), transparent 60%);
  opacity:.52;
  pointer-events:none;
}
.welcomeCard__title{
  margin:0 0 10px;
  text-align:center;
  font-size: clamp(40px, 4.8vw, 74px);
  font-weight: 950;
  color: var(--vino);
  text-shadow: 0 12px 24px rgba(0,0,0,.14);
  letter-spacing:.2px;
  min-height: 1.1em;
}
.welcomeCard__text{
  color:#27323a;
  font-size: 16.2px;
  line-height:1.55;
}
.welcomeCard__text p{ margin: 10px 0; }
.accent{ color: var(--vino); font-weight: 950; }
.sign{ margin-top: 12px; color:#2b333b; font-weight: 700; }
.welcomeCard__cursor{
  position:absolute;
  right: 20px;
  bottom: 16px;
  opacity:.65;
  color: rgba(39,50,58,.9);
  font-weight:900;
}
.welcomeCard--float{ animation: welcomeFloat 4.6s ease-in-out infinite; }
@keyframes welcomeFloat{
  0%,100%{ transform: translateY(0); }
  50%{ transform: translateY(-10px); }
}

/* TARJETAS */
.cards{
  width: min(1060px, 100%);
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.tile{
  text-decoration:none;
  color:#fff;
  border-radius: 26px;
  padding: 18px 18px 16px;
  box-shadow: var(--shadow2);
  position:relative;
  overflow:hidden;
  min-height: 170px;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  text-align:center;
  gap: 10px;
  border: 1px solid rgba(255,255,255,.16);
  background:
    radial-gradient(circle at 20% 20%, rgba(216,161,11,.18), transparent 55%),
    radial-gradient(circle at 80% 70%, rgba(255,255,255,.10), transparent 55%),
    linear-gradient(180deg, rgba(123,15,22,.93), rgba(74,7,12,.93));
  transition: transform .18s ease, box-shadow .18s ease, filter .18s ease;
}
.tile::after{
  content:"";
  position:absolute; inset:0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.16), transparent);
  transform: translateX(-130%);
  transition: transform .55s ease;
}
.tile:hover::after{ transform: translateX(130%); }
.tile:hover{
  transform: translateY(-8px);
  box-shadow: 0 30px 76px rgba(0,0,0,.32);
  filter: brightness(1.05);
}
.tile__icon{
  width: 58px;
  height: 58px;
  display:grid;
  place-items:center;
  border-radius: 18px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.18);
  font-size: 26px;
  box-shadow: inset 0 -12px 16px rgba(0,0,0,.18), 0 14px 24px rgba(0,0,0,.18);
  transition: transform .18s ease;
}
.tile:hover .tile__icon{ transform: translateY(-2px) rotate(2deg); }
.tile__title{ margin:0; font-size: 22px; font-weight: 950; }
.tile__desc{ margin:0; font-size: 13.5px; opacity:.92; font-weight: 650; }
.tile__cta{
  margin-top: 6px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(216,161,11,.22);
  border: 1px solid rgba(216,161,11,.34);
  font-weight: 900;
  font-size: 13px;
}

/* AUDIO */
.audioDock{
  position: fixed;
  left: 14px;
  bottom: 14px;
  z-index: 90;
  width: min(340px, calc(100% - 28px));
  display:flex;
  flex-direction:column;
  gap: 8px;
}
.audioBtn{
  width: fit-content;
  max-width: 100%;
  border: 1px solid rgba(255,255,255,.18);
  background: linear-gradient(180deg, rgba(216,161,11,.94), rgba(169,121,6,.94));
  color: #1b1b1b;
  padding: 8px 12px;
  border-radius: 999px;
  cursor:pointer;
  display:flex;
  align-items:center;
  gap: 8px;
  box-shadow: 0 18px 40px rgba(0,0,0,.25);
  transition: transform .18s ease, box-shadow .18s ease;
  position:relative;
  overflow:hidden;
  font-weight: 950;
}
.audioBtn:hover{ transform: translateY(-2px); box-shadow: 0 22px 50px rgba(0,0,0,.30); }
.audioBtn__icon{
  width: 22px; height: 22px;
  display:grid; place-items:center;
  border-radius: 10px;
  background: rgba(255,255,255,.60);
  border: 1px solid rgba(0,0,0,.10);
  font-weight: 950;
}
.audioBtn__label{ font-size: 13px; }
.audioBtn__pulse{
  position:absolute; inset:-6px;
  background: radial-gradient(circle at 20% 30%, rgba(255,255,255,.30), transparent 55%);
  opacity:.7;
  pointer-events:none;
  animation: pulseGlow 2.1s ease-in-out infinite;
}
@keyframes pulseGlow{
  0%,100%{ transform: scale(1); opacity:.55; }
  50%{ transform: scale(1.03); opacity:.9; }
}
.audioMini{
  width: 100%;
  background: rgba(246,241,231,.92);
  border: 1px solid rgba(0,0,0,.12);
  border-radius: 16px;
  box-shadow: 0 22px 52px rgba(0,0,0,.24);
  padding: 10px 12px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.audioMini__top{
  display:flex; align-items:baseline; justify-content:space-between;
  gap: 10px;
  margin-bottom: 8px;
}
.audioMini__title{ color: var(--vino); font-weight: 950; font-size: 13px; }
.audioMini__hint{ font-size: 11px; color: var(--muted); font-weight: 800; text-transform: lowercase; }
.audioMini__row{ display:flex; align-items:center; gap: 10px; }
.audioMini__seek{ flex:1; accent-color: var(--oro2); }
.audioMini__time{ font-variant-numeric: tabular-nums; font-size: 11px; color:#2a333b; white-space:nowrap; }

/* AVATAR */
.avatarDock{
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 88;
  pointer-events:none;
  transform-origin: bottom center;
  animation: avatarFloat 3.9s ease-in-out infinite;
}
@keyframes avatarFloat{
  0%,100%{ transform: translateY(0); }
  50%{ transform: translateY(-8px); }
}
.avatarDock__img{
  width: clamp(120px, 16vw, 240px);
  height:auto;
  filter: drop-shadow(0 18px 30px rgba(0,0,0,.32));
  pointer-events:auto;
  user-select:none;
  animation: avatarSway 5.1s ease-in-out infinite;
}
@keyframes avatarSway{
  0%,100%{ transform: rotate(.4deg); }
  50%{ transform: rotate(-.6deg); }
}

/* FOOTER */
.footerCream{
  background: var(--cream);
  border-top: 2px solid rgba(0,0,0,.08);
}
.footerCream__wrap{
  max-width: min(var(--max), calc(100% - 26px));
  margin:0 auto;
  padding: 18px 0 20px;
  display:grid;
  grid-template-columns: minmax(180px, 260px) 1fr minmax(180px, 260px);
  gap: 18px;
  align-items:center;
}
.footerCream__side{ display:flex; align-items:center; }
.footerCream__side--left{ justify-content:flex-start; }
.footerCream__side--right{ justify-content:flex-end; }
.footerCream__logo{
  max-height: 82px;
  max-width: 220px;
  object-fit:contain;
}
.footerCream__center{
  text-align:center;
  color:#1f1f1f;
  padding: 0 10px;
}
.footerCream__copy{
  margin:0;
  font-size: 14px;
  font-weight: 900;
}
.footerCream__tagline{
  margin: 6px 0 10px;
  font-size: 12px;
  opacity:.85;
  font-weight: 600;
}
.footerCream__inspired{
  margin:0;
  font-size: 12px;
  opacity:.85;
  font-weight: 600;
}
.footerCream__social{
  display:flex;
  justify-content:center;
  gap: 10px;
  margin: 10px 0 12px;
}
.socialCircle{
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 2px solid rgba(216,161,11,.85);
  background: transparent;
  display:grid;
  place-items:center;
  text-decoration:none;
  position:relative;
  overflow:hidden;
  transition: transform .15s ease;
}
.socialCircle::before{
  content:"";
  position:absolute; inset:0;
  background: rgba(216,161,11,.95);
  transform: scale(0);
  transition: transform .22s ease;
  border-radius: 999px;
}
.socialCircle:hover{ transform: translateY(-2px); }
.socialCircle:hover::before{ transform: scale(1); }
.socialCircle svg{
  width: 18px; height: 18px;
  fill: #1f1f1f;
  position:relative; z-index:1;
  transition: fill .18s ease;
}
.socialCircle:hover svg{ fill:#fff; }

/* RESPONSIVE */
@media (max-width: 1100px){
  .menu__link{ font-size: 13px; padding: 10px 8px; }
}

@media (max-width: 980px){
  .cards{ grid-template-columns: repeat(2, 1fr); }
  .footerCream__wrap{ grid-template-columns: 1fr; text-align:center; }
  .footerCream__side--left, .footerCream__side--right{ justify-content:center; }
}

@media (max-width: 860px){
  .topbar__inner{
    grid-template-columns: 1fr auto; /* marca | hamburguesa */
  }
  .hamburger{ display:grid; }

  .menu{
    position:absolute;
    left: 0;
    right: 0;
    top: calc(100% + 8px);
    background: linear-gradient(180deg, rgba(123,15,22,.98), rgba(74,7,12,.98));
    border: 1px solid rgba(255,255,255,.14);
    border-radius: 18px;
    padding: 10px;
    display:none;
    flex-wrap: wrap;
    justify-content:center;
    gap: 8px;
    box-shadow: 0 26px 60px rgba(0,0,0,.28);
  }
  .menu.is-open{ display:flex; }
}

@media (max-width: 520px){
  .cards{ grid-template-columns: 1fr; }
  .welcomeCard{ padding: 18px 16px 14px; }
  .avatarDock{ right: 10px; bottom: 100px; }
  .audioDock{ left: 10px; bottom: 10px; width: min(340px, calc(100% - 20px)); }
}

/* ===== FIX: mostrar menú en escritorio ===== */
@media (min-width: 901px){
  .menu{
    display: flex !important;
    opacity: 1 !important;
    pointer-events: auto !important;
    transform: none !important;
    position: static !important;
    background: transparent !important;
  }
  .hamburger{
    display: none !important;
  }
}

/* ===== FIX: en móvil sí se oculta y se abre con hamburguesa ===== */
@media (max-width: 900px){
  .menu{
    display: none;
  }
  .menu.is-open{
    display: flex;
    flex-direction: column;
  }
}


/* ===== Ajuste agregado para incluir Diagnóstico B.C. en el header ===== */
@media (min-width: 901px){
  .menu{ flex-wrap: wrap; gap: 8px 8px; }
  .menu__link{ padding: 9px 9px; }
}
@media (max-width: 1250px) and (min-width: 901px){
  .brand{ max-width: 360px; }
  .menu__link{ font-size: 13px; padding: 8px 7px; }
}


/* =========================================================
   ACTUALIZACIÓN: HEADER Y FOOTER TIPO PÁGINA PERSONAL
   Conserva la información y fondos animados del sitio original.
========================================================= */
.campaignHeader{
  background: linear-gradient(180deg, #7c1531 0%, #640b23 55%, #470515 100%);
  border-bottom: 0;
  box-shadow: 0 18px 40px rgba(0,0,0,.28);
}
.campaignHeader__main{
  position:relative;
  max-width:min(1180px, calc(100% - 32px));
  margin:0 auto;
  min-height:150px;
  display:grid;
  grid-template-columns:190px 1fr 230px;
  align-items:center;
  gap:24px;
  padding:18px 0 16px;
}
.campaignHeader__main::after{
  content:"";
  position:absolute;
  left:50%; top:15px;
  width:min(620px, 52vw); height:120px;
  transform:translateX(-50%);
  border-radius:999px;
  background:radial-gradient(circle, rgba(255,255,255,.12), transparent 70%);
  pointer-events:none;
}
.campaignHeader__logo{ position:relative; z-index:2; display:flex; align-items:center; text-decoration:none; }
.campaignHeader__logo img{ display:block; object-fit:contain; filter: drop-shadow(0 14px 22px rgba(0,0,0,.28)); }
.campaignHeader__logo--personal{ justify-content:flex-start; }
.campaignHeader__logo--personal img{ max-width:170px; max-height:88px; }
.campaignHeader__logo--morena{ justify-content:flex-end; }
.campaignHeader__logo--morena img{ max-width:220px; max-height:94px; }
.campaignHeader__identity{ position:relative; z-index:2; text-align:center; color:#fff; }
.campaignHeader__identity h1{
  margin:0;
  font-size:clamp(44px, 6.6vw, 86px);
  line-height:.92;
  letter-spacing:.2px;
  font-weight:950;
  text-shadow:0 16px 28px rgba(0,0,0,.30);
}
.campaignHeader__eyebrow,
.campaignHeader__subtitle{
  margin:0;
  color:#f3d38a;
  font-weight:900;
  letter-spacing:.5px;
  text-transform:uppercase;
  font-size:clamp(11px, 1.3vw, 15px);
}
.campaignHeader__subtitle{ margin-top:10px; color:#fff5db; text-transform:none; letter-spacing:.2px; }
.campaignHeader__nav{
  position:relative;
  max-width:min(1180px, calc(100% - 32px));
  margin:0 auto;
  min-height:58px;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:8px 0 10px;
}
.campaignHeader__nav::before{
  content:"";
  position:absolute;
  left:50%; right:auto; top:0; bottom:0;
  width:100vw;
  transform:translateX(-50%);
  background:#3a0411;
  border-top:1px solid rgba(255,255,255,.08);
  z-index:-1;
}
.campaignHeader .menu{ padding-left:0; justify-content:center; flex-wrap:wrap; gap:8px 14px; }
.campaignHeader .menu__link{ border-radius:999px; padding:11px 16px; font-size:15px; }
.campaignHeader .menu__link.is-active{ background:rgba(255,255,255,.16); color:#fff6de; }
.campaignHeader .hamburger{ position:relative; z-index:3; }
.footerCream.campaignFooter{ background:#f8f2e7; }
.campaignFooter .footerCream__logo--personal{ max-width:190px; max-height:86px; }
.campaignFooter .footerCream__logo--morena{ max-width:220px; max-height:90px; }
.footerCream__legal{ margin:8px auto 0; max-width:760px; font-size:11.5px; line-height:1.45; opacity:.78; font-weight:650; }

/* INICIO */
.homeCampaign{ background:#f8f2e7; overflow:hidden; }
.homeHero{ position:relative; min-height:calc(100vh - 208px); display:grid; place-items:center; padding:54px 18px 70px; overflow:hidden; }
.homeHero__grid{ position:relative; z-index:3; width:min(1180px,100%); display:grid; grid-template-columns:1.05fr .95fr; gap:34px; align-items:center; }
.homeHero__copy{ background:rgba(255,255,255,.90); border:1px solid rgba(255,255,255,.55); border-radius:34px; padding:34px; box-shadow:0 28px 80px rgba(0,0,0,.26); backdrop-filter:blur(12px); }
.homeKicker{ display:inline-flex; color:#f3d38a; font-weight:950; text-transform:uppercase; letter-spacing:.7px; font-size:13px; margin-bottom:12px; }
.homeKicker.dark{ color:#6c0b12; }
.homeHero__copy h2{ margin:0 0 16px; color:#5b0b11; font-size:clamp(38px, 5vw, 72px); line-height:.96; font-weight:950; }
.homeHero__copy p{ margin:0; color:#2b333b; font-size:18px; line-height:1.55; font-weight:650; }
.homeHero__actions{ display:flex; flex-wrap:wrap; gap:12px; margin-top:24px; }
.btnSoft{ display:inline-flex; align-items:center; justify-content:center; padding:12px 18px; border-radius:999px; background:#fff; color:#6c0b12; border:1px solid rgba(108,11,18,.18); text-decoration:none; font-weight:950; box-shadow:0 12px 28px rgba(0,0,0,.12); }
.homeHero__photo{ margin:0; border-radius:36px; overflow:hidden; min-height:520px; box-shadow:0 32px 80px rgba(0,0,0,.30); border:1px solid rgba(255,255,255,.25); }
.homeHero__photo img{ width:100%; height:100%; min-height:520px; object-fit:cover; object-position:center; display:block; }
.homeSection{ padding:70px 18px; }
.homeSection--cream{ background:#f8f2e7; color:#1b232a; }
.homeSection--vino{ background:linear-gradient(135deg,#680c25,#39040f); color:#fff; }
.homeSection__head{ width:min(920px,100%); margin:0 auto 28px; text-align:center; }
.homeSection__head h2,.homeVideoGrid h2{ margin:0 0 10px; font-size:clamp(34px,4.5vw,64px); line-height:.98; font-weight:950; }
.homeSection__head p,.homeVideoGrid p{ margin:0 auto; max-width:780px; font-size:17px; line-height:1.55; font-weight:650; opacity:.86; }
.homePhotoMosaic{ width:min(1180px,100%); margin:0 auto; display:grid; grid-template-columns:1.2fr .8fr .8fr; grid-auto-rows:230px; gap:16px; }
.homePhotoMosaic img{ width:100%; height:100%; object-fit:cover; border-radius:26px; box-shadow:0 24px 58px rgba(0,0,0,.20); }
.homePhotoMosaic img:first-child{ grid-row:span 2; }
.homeVideoGrid{ width:min(980px,100%); margin:0 auto; display:grid; grid-template-columns:1fr 330px; gap:30px; align-items:center; }
.fbVideoCard{ justify-self:center; background:rgba(255,255,255,.10); border:1px solid rgba(255,255,255,.18); padding:16px; border-radius:32px; box-shadow:0 32px 80px rgba(0,0,0,.30); }
.fbVideoCard iframe{ display:block; border-radius:22px; max-width:100%; }
.homeCards{ width:min(1180px,100%); margin:0 auto; display:grid; grid-template-columns:repeat(4,1fr); gap:16px; }

.simplePage{ position:relative; min-height:calc(100vh - 208px); padding:44px 18px 80px; background:#f8f2e7; overflow:hidden; }
.simpleBg{ position:absolute; inset:0; background-image:url("fondos/camarafondo2.png"); background-size:cover; background-position:center; opacity:.13; filter:saturate(1.05); }
.simpleHeroCard,.simpleGrid,.docGrid{ position:relative; z-index:2; width:min(1120px,100%); margin:0 auto; }
.simpleHeroCard{ background:rgba(255,255,255,.92); border:1px solid rgba(255,255,255,.6); border-radius:32px; padding:30px; box-shadow:0 26px 70px rgba(0,0,0,.18); }
.simpleHeroCard h1{ margin:0 0 12px; color:#5b0b11; font-size:clamp(38px,5vw,68px); line-height:.98; font-weight:950; }
.simpleHeroCard p{ margin:0; color:#2b333b; font-size:17px; line-height:1.55; font-weight:650; }
.simpleHeroGrid{ display:grid; grid-template-columns:1fr 320px; gap:24px; align-items:center; }
.simplePortrait{ width:100%; height:360px; object-fit:cover; border-radius:26px; box-shadow:0 18px 48px rgba(0,0,0,.22); }
.simpleGrid{ display:grid; grid-template-columns:repeat(3,1fr); gap:16px; margin-top:18px; }
.docGrid{ display:grid; grid-template-columns:repeat(3,1fr); gap:16px; margin-top:18px; }
.docTile{ background:rgba(255,255,255,.92); border:1px solid rgba(0,0,0,.08); border-radius:26px; padding:16px; text-decoration:none; color:#1b232a; box-shadow:0 18px 50px rgba(0,0,0,.12); display:flex; flex-direction:column; gap:10px; transition:transform .18s ease; }
.docTile:hover{ transform:translateY(-5px); }
.docTile img{ width:100%; height:170px; object-fit:cover; border-radius:18px; background:#eee; }
.docTile strong{ color:#5b0b11; font-size:20px; font-weight:950; }
.docTile span{ color:#6c0b12; font-weight:850; }

/* Más fotos visibles dentro de páginas existentes */
.galSection::before,.workDocs::before,.planSection::before,.supportCards::before{ content:""; display:block; height:0; }

@media (max-width:1000px){
  .campaignHeader__main{ grid-template-columns:135px 1fr 160px; min-height:132px; gap:14px; }
  .campaignHeader__logo--personal img{ max-width:126px; }
  .campaignHeader__logo--morena img{ max-width:150px; }
  .homeHero__grid,.homeVideoGrid{ grid-template-columns:1fr; }
  .homeHero__photo,.homeHero__photo img{ min-height:420px; }
  .homeCards{ grid-template-columns:repeat(2,1fr); }
  .homePhotoMosaic{ grid-template-columns:1fr 1fr; grid-auto-rows:210px; }
  .homePhotoMosaic img:first-child{ grid-row:auto; }
  .simpleHeroGrid,.simpleGrid,.docGrid{ grid-template-columns:1fr; }
}
@media (max-width:900px){
  .campaignHeader__nav{ justify-content:flex-end; min-height:62px; }
  .campaignHeader .menu{ position:absolute; top:calc(100% + 8px); left:0; right:0; background:linear-gradient(180deg, rgba(98,10,34,.98), rgba(58,4,17,.98)); border:1px solid rgba(255,255,255,.14); border-radius:18px; padding:12px; flex-direction:column; align-items:stretch; }
  .campaignHeader .menu__link{ justify-content:center; }
}
@media (max-width:680px){
  .campaignHeader__main{ grid-template-columns:1fr; text-align:center; padding:16px 0 14px; gap:8px; }
  .campaignHeader__logo--personal,.campaignHeader__logo--morena{ justify-content:center; }
  .campaignHeader__logo--personal img{ max-height:62px; }
  .campaignHeader__logo--morena img{ max-height:54px; }
  .campaignHeader__identity h1{ font-size:clamp(34px,12vw,56px); }
  .campaignHeader__eyebrow{ font-size:10px; }
  .homeHero{ padding-top:34px; }
  .homeHero__copy{ padding:24px; }
  .homeHero__copy h2{ font-size:40px; }
  .homeHero__photo,.homeHero__photo img{ min-height:360px; }
  .homePhotoMosaic,.homeCards{ grid-template-columns:1fr; }
  .homeSection{ padding:50px 16px; }
}

/* Tiras de fotos de cercanía agregadas sin eliminar contenido existente */
.sectionPhotoStrip{
  position:relative; z-index:3; width:min(1050px,100%); margin:18px auto 26px;
  display:grid; grid-template-columns:repeat(3,1fr); gap:14px;
}
.sectionPhotoStrip img{
  width:100%; height:210px; object-fit:cover; border-radius:24px;
  box-shadow:0 20px 52px rgba(0,0,0,.22); border:1px solid rgba(255,255,255,.28);
}
@media(max-width:780px){ .sectionPhotoStrip{ grid-template-columns:1fr; } .sectionPhotoStrip img{ height:240px; } }


/* =========================================================
   AJUSTES V2: header fijo/desplazamiento, tamaños, inicio y footer dorado
   ========================================================= */
/* El header ya no queda pegado al hacer scroll */
.topbar.campaignHeader{
  position: relative !important;
  top: auto !important;
}

/* Logos del header con el mismo espacio visual */
.campaignHeader__main{
  grid-template-columns: 180px 1fr 180px !important;
  min-height: 132px !important;
  gap: 22px !important;
}
.campaignHeader__logo{
  min-height: 84px;
}
.campaignHeader__logo--personal,
.campaignHeader__logo--morena{
  justify-content: center !important;
}
.campaignHeader__logo img,
.campaignHeader__logo--personal img,
.campaignHeader__logo--morena img{
  width: 158px !important;
  height: 78px !important;
  max-width: 158px !important;
  max-height: 78px !important;
  object-fit: contain !important;
}
.campaignHeader__identity h1{
  font-size: clamp(36px, 5.3vw, 68px) !important;
  line-height: .94 !important;
}
.campaignHeader__eyebrow,
.campaignHeader__subtitle{
  font-size: clamp(10px, 1.1vw, 13px) !important;
}
.campaignHeader__nav{
  min-height: 54px !important;
  padding: 7px 0 9px !important;
}
.campaignHeader .menu__link{
  padding: 10px 14px !important;
  font-size: 14px !important;
}

/* Botón principal más formal y visible */
.btnGoldX{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:13px 22px;
  border-radius:999px;
  text-decoration:none;
  font-weight:950;
  letter-spacing:.2px;
  color:#4a0710;
  background: linear-gradient(135deg, #fff6dc 0%, #e8c46b 42%, #c8972f 100%);
  border:1px solid rgba(91,11,17,.20);
  box-shadow:0 16px 36px rgba(108,11,18,.18), inset 0 1px 0 rgba(255,255,255,.55);
  transition:transform .18s ease, box-shadow .18s ease, filter .18s ease;
}
.btnGoldX::after{ content:"→"; font-weight:950; }
.btnGoldX:hover{
  transform:translateY(-3px);
  box-shadow:0 22px 48px rgba(108,11,18,.24), inset 0 1px 0 rgba(255,255,255,.65);
  filter:brightness(1.03);
}
.btnGoldX--hero{ font-size:15px; }

/* Orden y cercanía visual de inicio */
.homeHero{ min-height:auto !important; padding:46px 18px 52px !important; }
.homeSection--videoCompact{ padding:46px 18px 42px !important; }
.homeSection--cardsCompact{ padding:42px 18px 34px !important; }
.homeSection--mosaicFinal{ padding:38px 18px 70px !important; }
.homeVideoGrid--centered{
  width:min(1000px,100%);
  grid-template-columns: minmax(280px,1fr) 310px !important;
  gap:24px !important;
}
.homeVideoText h2{ font-size: clamp(34px, 4.2vw, 58px) !important; }
.fbVideoCard{ padding:13px !important; border-radius:28px !important; }
.fbVideoCard iframe{ border-radius:20px !important; }
.homeSection__head--compact{ margin-bottom:18px !important; }
.homeCards--small{
  width:min(980px,100%) !important;
  gap:12px !important;
}
.homeCards--small .tile{
  min-height:138px !important;
  padding:14px 14px 13px !important;
  border-radius:22px !important;
  gap:8px !important;
}
.homeCards--small .tile__icon{
  width:46px !important;
  height:46px !important;
  border-radius:15px !important;
  font-size:22px !important;
}
.homeCards--small .tile__title{ font-size:19px !important; }
.homeCards--small .tile__desc{ font-size:12.5px !important; line-height:1.35; }
.homeCards--small .tile__cta{ font-size:12px !important; padding:7px 12px !important; }

.homePhotoMosaic--labeled{
  grid-template-columns:1.15fr .85fr .85fr;
  grid-auto-rows:220px;
}
.homePhotoMosaic--labeled figure{
  margin:0;
  position:relative;
  overflow:hidden;
  border-radius:26px;
  box-shadow:0 24px 58px rgba(0,0,0,.20);
  background:#21020a;
}
.homePhotoMosaic--labeled figure:first-child{ grid-row:span 2; }
.homePhotoMosaic--labeled img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
  border-radius:0;
  box-shadow:none;
}
.homePhotoMosaic--labeled figcaption{
  position:absolute;
  left:12px;
  right:12px;
  bottom:12px;
  padding:9px 12px;
  border-radius:999px;
  color:#fff;
  font-size:13px;
  font-weight:950;
  text-align:center;
  background:rgba(58,4,17,.82);
  border:1px solid rgba(232,196,107,.35);
  backdrop-filter:blur(6px);
}

/* Footer con tono dorado más presente */
.footerCream.campaignFooter,
.footerCream{
  background: linear-gradient(180deg, #fff9eb 0%, #f4dfad 54%, #ecd08d 100%) !important;
  border-top: 3px solid rgba(196,145,39,.85) !important;
  box-shadow: inset 0 18px 36px rgba(255,255,255,.35);
}
.campaignFooter .footerCream__logo--personal,
.campaignFooter .footerCream__logo--morena,
.footerCream__logo{
  width:158px !important;
  height:78px !important;
  max-width:158px !important;
  max-height:78px !important;
  object-fit:contain !important;
}
.footerCream__copy strong{ color:#4a0710; }
.footerCream__tagline,
.footerCream__legal{ color:#3d2a10; }
.socialCircle{
  border-color: rgba(173,121,20,.95) !important;
  background: rgba(255,255,255,.38) !important;
}
.socialCircle::before{ background: rgba(173,121,20,.95) !important; }

@media (max-width:1000px){
  .campaignHeader__main{ grid-template-columns:130px 1fr 130px !important; min-height:118px !important; }
  .campaignHeader__logo img,
  .campaignHeader__logo--personal img,
  .campaignHeader__logo--morena img{ width:120px !important; height:64px !important; max-width:120px !important; max-height:64px !important; }
  .campaignHeader__identity h1{ font-size:clamp(34px,6vw,54px) !important; }
  .homeVideoGrid--centered{ grid-template-columns:1fr !important; text-align:center; }
  .homeCards--small{ grid-template-columns:repeat(2,1fr) !important; }
  .homePhotoMosaic--labeled{ grid-template-columns:1fr 1fr; grid-auto-rows:210px; }
  .homePhotoMosaic--labeled figure:first-child{ grid-row:auto; }
}
@media (max-width:680px){
  .campaignHeader__main{ grid-template-columns:1fr !important; min-height:auto !important; gap:6px !important; }
  .campaignHeader__logo{ min-height:auto; }
  .campaignHeader__logo img,
  .campaignHeader__logo--personal img,
  .campaignHeader__logo--morena img{ width:126px !important; height:58px !important; max-width:126px !important; max-height:58px !important; }
  .campaignHeader__identity h1{ font-size:clamp(32px,10vw,46px) !important; }
  .campaignHeader__subtitle{ margin-top:6px !important; }
  .campaignHeader .menu__link{ font-size:14px !important; }
  .homeCards--small{ grid-template-columns:1fr !important; }
  .homePhotoMosaic--labeled{ grid-template-columns:1fr; grid-auto-rows:230px; }
}


/* AJUSTES V3: video con más información y footer beige con destellos dorados */
.homeVideoText--rich{
  max-width: 620px;
}
.homeVideoText--rich p{
  max-width: 560px;
  margin-top: 12px !important;
  font-size: clamp(15px, 1.4vw, 18px) !important;
  line-height: 1.65 !important;
  color: rgba(255,255,255,.88) !important;
}
.videoInfoCards{
  margin-top: 22px;
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 680px;
}
.videoInfoCard{
  min-height: 122px;
  padding: 15px 14px;
  border-radius: 20px;
  background: rgba(255,255,255,.075);
  border: 1px solid rgba(226,190,98,.24);
  box-shadow: 0 18px 42px rgba(0,0,0,.13);
  backdrop-filter: blur(8px);
}
.videoInfoCard strong{
  display:block;
  color:#ffe7a1;
  font-size:14px;
  font-weight:950;
  letter-spacing:.2px;
  margin-bottom:7px;
}
.videoInfoCard span{
  display:block;
  color:rgba(255,255,255,.82);
  font-size:12.5px;
  line-height:1.42;
  font-weight:650;
}
.homeVideoGrid--centered{
  align-items:center !important;
  gap: 34px !important;
}

.footerCream.campaignFooter,
.footerCream{
  background:
    radial-gradient(circle at 8% 22%, rgba(202,157,66,.32) 0 2px, transparent 3px),
    radial-gradient(circle at 18% 72%, rgba(202,157,66,.22) 0 1.5px, transparent 3px),
    radial-gradient(circle at 72% 18%, rgba(202,157,66,.24) 0 2px, transparent 3px),
    radial-gradient(circle at 88% 64%, rgba(202,157,66,.20) 0 1.5px, transparent 3px),
    linear-gradient(180deg, #fbf5e8 0%, #f4ead8 52%, #efe0c5 100%) !important;
  border-top: 1px solid rgba(196,145,39,.36) !important;
  box-shadow: inset 0 18px 34px rgba(255,255,255,.36), 0 -10px 30px rgba(74,7,16,.05) !important;
}
.footerCream__wrap{
  position:relative;
}
.footerCream__wrap::before,
.footerCream__wrap::after{
  content:"";
  position:absolute;
  width:70px;
  height:70px;
  border-radius:999px;
  pointer-events:none;
  opacity:.32;
  background: radial-gradient(circle, rgba(218,173,74,.45) 0 2px, transparent 3px), radial-gradient(circle, rgba(255,255,255,.55), transparent 56%);
  filter: blur(.1px);
}
.footerCream__wrap::before{ left: 5%; top: 14px; }
.footerCream__wrap::after{ right: 7%; bottom: 14px; }
.socialCircle{
  border-color: rgba(187,137,38,.70) !important;
  background: rgba(255,255,255,.44) !important;
}
.socialCircle::before{ background: rgba(187,137,38,.80) !important; }

@media (max-width:1000px){
  .videoInfoCards{ grid-template-columns:1fr; max-width:620px; margin-left:auto; margin-right:auto; }
  .videoInfoCard{ min-height:auto; text-align:left; }
}


/* =========================
   V4 — MI TRAYECTORIA + AJUSTES SECCIONES
========================= */
.trajectoryPage{
  position:relative;
  min-height:100vh;
  padding: 34px 14px 90px;
  overflow:hidden;
  background:#0b0f14;
}
.trajectoryBg{
  position:absolute; inset:0;
  background:
    radial-gradient(circle at 48% 6%, rgba(255,255,255,.20), transparent 48%),
    linear-gradient(180deg, rgba(108,11,18,.04) 0%, rgba(0,0,0,.52) 100%),
    url("fondos/camarafondo2.png");
  background-size:cover;
  background-position:center;
  transform:scale(1.02);
  filter:saturate(1.06) contrast(1.03);
}
.trajectoryFloat{ position:absolute; inset:0; pointer-events:none; overflow:hidden; z-index:1; }
.trajectoryFloat span{
  position:absolute; bottom:-60px;
  color:rgba(255,255,255,.55);
  font-weight:950;
  text-transform:uppercase;
  letter-spacing:.04em;
  animation: floatUp linear infinite;
  text-shadow:0 18px 34px rgba(0,0,0,.30);
}
.trajectoryHero,
.trajectorySummary,
.trajectoryTimeline,
.trajectoryDocs,
.trajectoryGallery{
  position:relative; z-index:3;
  width:min(1180px, calc(100% - 18px));
  margin-left:auto; margin-right:auto;
}
.trajectoryHero{
  display:grid;
  grid-template-columns:1.05fr .95fr;
  gap:24px;
  align-items:center;
  padding: 26px;
  border-radius:34px;
  background: linear-gradient(180deg, rgba(255,255,255,.92), rgba(247,241,230,.82));
  border:1px solid rgba(255,255,255,.52);
  box-shadow:0 24px 70px rgba(0,0,0,.28);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.trajectoryHero__copy h1{
  margin:10px 0 12px;
  color:var(--vino);
  font-weight:950;
  font-size:clamp(46px, 6vw, 92px);
  line-height:.92;
  letter-spacing:-.05em;
}
.trajectoryHero__copy p{
  margin:0;
  color:#33414c;
  font-weight:750;
  font-size:clamp(17px, 1.7vw, 21px);
  line-height:1.55;
  max-width:760px;
}
.trajectoryActions{ display:flex; flex-wrap:wrap; gap:12px; margin-top:18px; }
.trajectoryHero__visual{ position:relative; min-height:470px; display:flex; align-items:center; justify-content:center; }
.trajectoryPhoto{
  width:min(100%, 560px);
  height:430px;
  object-fit:cover;
  border-radius:30px;
  box-shadow:0 24px 70px rgba(0,0,0,.28);
  border:1px solid rgba(0,0,0,.08);
}
.trajectoryAvatarCard{
  position:absolute;
  left:-18px;
  bottom:12px;
  width:min(360px, 90%);
  display:grid;
  grid-template-columns:118px 1fr;
  gap:12px;
  align-items:end;
}
.trajectoryAvatarCard img{
  width:118px; height:auto;
  filter:drop-shadow(0 18px 28px rgba(0,0,0,.26));
  animation: workAvatarFloat 3s ease-in-out infinite;
}
.trajectoryBubble{
  background:rgba(255,255,255,.96);
  border:1px solid rgba(0,0,0,.08);
  border-radius:22px;
  padding:13px 14px;
  box-shadow:0 18px 40px rgba(0,0,0,.20);
  margin-bottom:12px;
  position:relative;
}
.trajectoryBubble:after{
  content:""; position:absolute; left:-8px; bottom:20px;
  width:16px; height:16px; transform:rotate(45deg);
  background:rgba(255,255,255,.96);
  border-left:1px solid rgba(0,0,0,.08); border-bottom:1px solid rgba(0,0,0,.08);
}
.trajectoryBubble strong{ display:block; color:var(--vino); font-size:14px; font-weight:950; }
.trajectoryBubble span{ display:block; margin-top:4px; color:#33414c; font-size:13px; font-weight:750; line-height:1.35; }
.trajectorySummary{
  margin-top:18px;
  display:grid;
  grid-template-columns:repeat(4, minmax(0,1fr));
  gap:14px;
}
.trajectorySummary article,
.timelineGrid article{
  background:rgba(255,255,255,.94);
  border:1px solid rgba(0,0,0,.07);
  border-radius:24px;
  padding:18px;
  box-shadow:0 18px 45px rgba(0,0,0,.18);
}
.trajectorySummary span{
  display:inline-flex;
  width:46px; height:46px;
  align-items:center; justify-content:center;
  border-radius:16px;
  background:linear-gradient(180deg, rgba(216,161,11,.96), rgba(169,121,6,.96));
  color:#170d07; font-weight:950;
}
.trajectorySummary h2{ margin:12px 0 6px; color:var(--vino); font-size:22px; font-weight:950; }
.trajectorySummary p{ margin:0; color:#46545f; font-weight:730; line-height:1.45; }
.trajectoryTimeline,
.trajectoryDocs,
.trajectoryGallery{
  margin-top:18px;
  background:rgba(247,241,230,.94);
  border:1px solid rgba(255,255,255,.56);
  border-radius:28px;
  padding:22px;
  box-shadow:0 22px 58px rgba(0,0,0,.22);
}
.trajectorySectionHead{ text-align:center; max-width:900px; margin:0 auto 18px; }
.trajectorySectionHead h2{ margin:8px 0 8px; color:var(--vino); font-weight:950; font-size:clamp(30px, 3.8vw, 56px); line-height:1.02; }
.trajectorySectionHead p{ margin:0; color:#42505b; font-weight:750; line-height:1.5; font-size:17px; }
.timelineGrid{ display:grid; grid-template-columns:repeat(2, minmax(0,1fr)); gap:14px; }
.timelineGrid article{ position:relative; padding-left:54px; }
.timelineDot{
  position:absolute; left:18px; top:21px;
  width:22px; height:22px;
  border-radius:999px;
  background:var(--oro);
  box-shadow:0 0 0 7px rgba(216,161,11,.16);
}
.timelineGrid h3{ margin:0 0 8px; color:var(--vino); font-weight:950; font-size:22px; }
.timelineGrid p{ margin:0; color:#44525d; font-weight:730; line-height:1.5; }
.docGrid--trajectory{ margin-top:0; }
.trajectoryPhotoGrid{ display:grid; grid-template-columns:repeat(4, minmax(0,1fr)); gap:12px; }
.trajectoryPhotoGrid img{ width:100%; height:180px; object-fit:cover; border-radius:20px; box-shadow:0 14px 30px rgba(0,0,0,.18); }
.supportDesignUpgrade,
.programDesignUpgrade{
  margin:18px auto 18px;
  display:grid;
  grid-template-columns:1fr 360px;
  gap:16px;
  align-items:center;
  background:linear-gradient(180deg, rgba(255,255,255,.94), rgba(247,241,230,.88));
  border:1px solid rgba(255,255,255,.56);
  border-radius:28px;
  box-shadow:0 20px 55px rgba(0,0,0,.20);
  padding:20px;
  position:relative;
  overflow:hidden;
}
.supportDesignUpgrade:before,
.programDesignUpgrade:before{
  content:""; position:absolute; inset:auto -60px -90px auto;
  width:260px; height:260px; border-radius:999px;
  background:radial-gradient(circle, rgba(216,161,11,.28), transparent 66%);
  pointer-events:none;
}
.supportDesignText h2,
.programDesignText h2{ margin:8px 0 8px; color:var(--vino); font-size:clamp(28px, 3.1vw, 46px); line-height:1.02; font-weight:950; }
.supportDesignText p,
.programDesignText p{ margin:0; color:#3e4b55; font-weight:750; line-height:1.5; font-size:17px; }
.supportMiniPills,
.programPills{ margin-top:14px; display:flex; flex-wrap:wrap; gap:8px; }
.supportMiniPills span,
.programPills span{ padding:9px 11px; border-radius:999px; background:rgba(108,11,18,.08); color:var(--vino); font-weight:900; border:1px solid rgba(108,11,18,.12); }
.supportDesignAvatar,
.programDesignAvatar{ display:grid; grid-template-columns:96px 1fr; gap:12px; align-items:center; position:relative; z-index:2; }
.supportDesignAvatar img,
.programDesignAvatar img{ width:96px; filter:drop-shadow(0 16px 28px rgba(0,0,0,.24)); animation:workAvatarFloat 3s ease-in-out infinite; }
.supportDesignAvatar div,
.programDesignAvatar div{ background:#fff; border-radius:20px; padding:14px; box-shadow:0 14px 35px rgba(0,0,0,.14); }
.supportDesignAvatar strong,
.programDesignAvatar strong{ display:block; color:var(--vino); font-weight:950; margin-bottom:4px; }
.supportDesignAvatar span,
.programDesignAvatar span{ display:block; color:#41505a; font-weight:740; line-height:1.35; font-size:13px; }
@media (max-width: 980px){
  .trajectoryHero{ grid-template-columns:1fr; }
  .trajectoryHero__visual{ min-height:380px; }
  .trajectorySummary{ grid-template-columns:repeat(2, minmax(0,1fr)); }
  .supportDesignUpgrade,.programDesignUpgrade{ grid-template-columns:1fr; }
}
@media (max-width: 680px){
  .trajectoryPage{ padding:18px 10px 70px; }
  .trajectoryHero{ padding:18px; border-radius:26px; }
  .trajectoryPhoto{ height:300px; border-radius:22px; }
  .trajectoryAvatarCard{ position:relative; left:auto; bottom:auto; margin-top:-70px; grid-template-columns:92px 1fr; width:100%; }
  .trajectoryAvatarCard img{ width:92px; }
  .trajectorySummary{ grid-template-columns:1fr; }
  .timelineGrid{ grid-template-columns:1fr; }
  .trajectoryPhotoGrid{ grid-template-columns:1fr 1fr; }
  .trajectoryPhotoGrid img{ height:145px; }
}


/* V5 — Ajustes Mi trayectoria: tarjetas con imagen de fondo y mejor lectura */
.trajectorySummary article{
  position:relative;
  overflow:hidden;
  min-height:230px;
  display:flex;
  flex-direction:column;
  justify-content:flex-end;
  isolation:isolate;
  background:#4e070c !important;
  border:1px solid rgba(255,255,255,.16) !important;
}
.trajectorySummary article::before{
  content:"";
  position:absolute;
  inset:0;
  background-image:var(--card-img);
  background-size:cover;
  background-position:center;
  transform:scale(1.06);
  opacity:.46;
  z-index:-2;
}
.trajectorySummary article::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(180deg, rgba(0,0,0,.12) 0%, rgba(74,7,16,.56) 42%, rgba(48,4,10,.92) 100%);
  z-index:-1;
}
.trajectorySummary article span{
  background:linear-gradient(180deg, rgba(245,220,150,.98), rgba(198,148,42,.96)) !important;
  color:#3c0710 !important;
  box-shadow:0 14px 32px rgba(0,0,0,.28);
}
.trajectorySummary article h2{
  color:#fff8ea !important;
  text-shadow:0 10px 22px rgba(0,0,0,.28);
}
.trajectorySummary article p{
  color:rgba(255,248,234,.92) !important;
  font-weight:760 !important;
  text-shadow:0 8px 18px rgba(0,0,0,.24);
}
@media (max-width:680px){
  .trajectorySummary article{ min-height:210px; }
  .trajectoryAvatarCard{ display:grid !important; }
}
