/* ===== IMMOTEP — HERO CINÉMATIQUE ===== */

.imm-hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 620px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.imm-hero__bg {
  position: absolute;
  inset: 0;
  background-image: url('http://groupeimmotep.com/wp-content/uploads/2026/02/Tefen-03-2.jpeg');
  background-size: cover;
  background-position: center 48%;
  animation: heroBgZoom 14s ease-out forwards;
}

@keyframes heroBgZoom {
  from { transform: scale(1.07); }
  to   { transform: scale(1); }
}

.imm-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    170deg,
    rgba(15, 23, 42, 0.18) 0%,
    rgba(15, 23, 42, 0.58) 100%
  );
}

.imm-hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 24px;
  max-width: 820px;
  width: 100%;
}

.imm-hero__line {
  width: 48px;
  height: 2px;
  background: #ffffff;
  margin-bottom: 28px;
  transform: scaleX(0);
  transform-origin: center;
  animation: heroLineIn 0.8s 0.4s cubic-bezier(.4,0,.2,1) forwards;
}

@keyframes heroLineIn {
  to { transform: scaleX(1); }
}

.imm-hero__eyebrow {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 22px;
  opacity: 0;
  transform: translateY(10px);
  animation: heroFadeUp 0.7s 0.75s ease forwards;
}

.imm-hero__title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(20px, 2.8vw, 38px);
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.80);
  margin: 0 0 26px 0;
  opacity: 0;
  transform: translateY(18px);
  animation: heroFadeUp 0.85s 1.0s ease forwards;
}

.imm-hero__sub {
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  font-weight: 300;
  line-height: 1.8;
  color: rgba(255,255,255,0.68);
  margin: 0;
  max-width: 460px;
  opacity: 0;
  transform: translateY(12px);
  animation: heroFadeUp 0.7s 1.25s ease forwards;
}

.imm-hero__scroll {
  position: absolute;
  bottom: 38px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0;
  animation: heroFadeUp 0.6s 1.9s ease forwards;
}

.imm-hero__scroll-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.40);
}

.imm-hero__scroll-line {
  display: block;
  width: 1px;
  height: 46px;
  background: rgba(255,255,255,0.20);
  position: relative;
  overflow: hidden;
}

.imm-hero__scroll-line::after {
  content: '';
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255,255,255,0.80);
  animation: scrollLine 2s 2.2s ease-in-out infinite;
}

@keyframes scrollLine {
  0%   { top: -100%; }
  100% { top: 100%; }
}

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

/* Responsive */
@media (max-width: 768px) {
  .imm-hero__eyebrow { font-size: 14px; }
  .imm-hero__title   { font-size: 22px; letter-spacing: 0.04em; }
  .imm-hero__sub     { font-size: 14px; }
}

@media (max-width: 480px) {
  .imm-hero          { min-height: 100svh; }
  .imm-hero__eyebrow { font-size: 12px; }
  .imm-hero__title   { font-size: 18px; }
  .imm-hero__sub     { font-size: 13px; }
}
/* ===== HOME — Cards IMMOTEP / BATTER / OSIRIS ===== */

/* Logo containers — quitar el radius asimétrico */
.uagb-block-3e0c7e68,
.uagb-block-69b30233,
.uagb-block-cba1b9df {
  border-radius: 0 !important;
}

/* Info boxes — efecto cristal */
.uagb-block-0ced8ddf,
.uagb-block-086932c7,
.uagb-block-6be5ec57 {
  border-radius: 0 !important;
  background-color: rgba(15, 49, 109, 0.20) !important;
  border: 1px solid rgba(255, 255, 255, 0.10) !important;
}