.admira-hero{
  --admira-accent:#9bbd2a;
  --admira-hero-height:100svh;
  --admira-title-size:48px;
  --admira-title-size-mobile:34px;
  --admira-title-weight:400;
  --admira-title-font:'Baskervville',Georgia,'Times New Roman',serif;
  --admira-overlay-alpha:.28;
  --admira-desc-size:17px;
  --admira-desc-weight:400;
  --admira-desc-font:inherit;
  --admira-content-width:50%;
  --admira-pad-top:20px;
  --admira-pad-right:72px;
  --admira-pad-bottom:34px;
  --admira-pad-left:56px;
  --admira-pad-mobile-top:18px;
  --admira-pad-mobile-right:24px;
  --admira-pad-mobile-bottom:44px;
  --admira-pad-mobile-left:24px;
  position:relative;
  width:100%;
  height:var(--admira-hero-height);
  min-height:520px;
  overflow:hidden;
  background:#111;
  isolation:isolate;
}
.admira-hero *{box-sizing:border-box}
.admira-hero__track,.admira-hero__slide{position:absolute;inset:0}
.admira-hero__slide{
  opacity:0;
  visibility:hidden;
  background-size:cover;
  background-position:center center;
  transform:scale(1.015);
  transition:opacity .75s ease,visibility .75s ease,transform 6s ease;
}
.admira-hero__slide.is-active{
  opacity:1;
  visibility:visible;
  transform:scale(1);
  z-index:2;
}
.admira-hero__shade{
  position:absolute;
  inset:0;
  background:linear-gradient(90deg,rgba(0,0,0,.04) 0%,rgba(0,0,0,.06) 48%,rgba(0,0,0,.26) 100%);
  pointer-events:none;
}

/* Bloque inferior: pegado al pie y extendido hasta el borde derecho */
.admira-hero__content-wrap{
  position:absolute;
  left:0;
  right:0;
  bottom:0;
  display:flex;
  justify-content:flex-end;
  align-items:stretch;
  padding:0;
}
.admira-hero__content{
  width:var(--admira-content-width);
  min-height:215px;
  display:flex;
  flex-direction:column;
  justify-content:flex-start;
  margin:0;
  padding:var(--admira-pad-top) var(--admira-pad-right) var(--admira-pad-bottom) var(--admira-pad-left);
  color:#fff;
  background:rgba(0,0,0,var(--admira-overlay-alpha));
  border-left:1px solid rgba(255,255,255,.72);
  backdrop-filter:blur(2px);
  -webkit-backdrop-filter:blur(2px);
  box-shadow:none;
}
.admira-hero__title{
  margin:0;
  color:#fff;
  font-family:var(--admira-title-font);
  font-size:var(--admira-title-size);
  line-height:1.05;
  font-weight:var(--admira-title-weight);
  letter-spacing:-.018em;
  text-wrap:balance;
}
.admira-hero__description{
  margin:14px 0 0;
  max-width:60ch;
  color:rgba(255,255,255,.9);
  font-family:var(--admira-desc-font);
  font-size:var(--admira-desc-size);
  line-height:1.5;
  font-weight:var(--admira-desc-weight);
}
.admira-hero__arrow{
  position:absolute;
  top:50%;
  z-index:8;
  width:56px;
  height:56px;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:0;
  border:1px solid rgba(255,255,255,.16);
  border-radius:8px;
  color:#fff;
  background:rgba(0,0,0,.56);
  cursor:pointer;
  transform:translateY(-50%);
  transition:background .2s ease,transform .2s ease,border-color .2s ease;
}
.admira-hero__arrow:hover{background:var(--admira-accent);border-color:var(--admira-accent);transform:translateY(-50%) scale(1.04)}
.admira-hero__arrow svg{display:block;width:28px;height:28px;overflow:visible}
.admira-hero__arrow svg path{fill:none;stroke:currentColor;stroke-width:2.1;stroke-linecap:round;stroke-linejoin:round;vector-effect:non-scaling-stroke}
.admira-hero__arrow--prev{left:24px}
.admira-hero__arrow--next{right:24px}
.admira-hero__dots{
  position:absolute;
  z-index:8;
  right:28px;
  bottom:18px;
  display:flex;
  gap:8px;
}
.admira-hero__dot{
  width:8px;
  height:8px;
  padding:0;
  border:0;
  border-radius:99px;
  background:rgba(255,255,255,.48);
  cursor:pointer;
  transition:width .25s ease,background .25s ease;
}
.admira-hero__dot.is-active{width:28px;background:#fff}
.admira-hero-empty{padding:20px;border:1px dashed #bbb;background:#fafafa;color:#444}

@media (max-width: 900px){
  .admira-hero{min-height:620px}
  .admira-hero__shade{background:linear-gradient(180deg,rgba(0,0,0,.02) 0%,rgba(0,0,0,.12) 48%,rgba(0,0,0,.44) 100%)}
  .admira-hero__content{width:100%;min-height:180px;padding:var(--admira-pad-mobile-top) var(--admira-pad-mobile-right) var(--admira-pad-mobile-bottom) var(--admira-pad-mobile-left);border-left:0;border-top:1px solid rgba(255,255,255,.35)}
  .admira-hero__title{font-size:var(--admira-title-size-mobile);line-height:1.08}
  .admira-hero__arrow{width:46px;height:46px;border-radius:7px}
  .admira-hero__arrow--prev{left:12px}
  .admira-hero__arrow--next{right:12px}
  .admira-hero__arrow svg{width:24px;height:24px}
  .admira-hero__dots{right:20px;bottom:17px}
}

@media (prefers-reduced-motion: reduce){
  .admira-hero__slide,.admira-hero__arrow,.admira-hero__dot{transition:none!important}
}
