/* ===== IMMOTEP DARK PREMIUM SWITCHER ===== */

.immotep-dark-switcher{
  width:95%;
  margin:60px auto;
}

/* Barra superior azul oscuro */
.immotep-dark-tabs{
  display:flex;
  gap:10px;
  padding:14px;
  background:#0A73A8;
  border-radius:14px;
  overflow-x:auto;
}

/* Botones */
.immotep-dark-tab{
  background:transparent;
  border:1px solid rgba(255,255,255,.4);
  color:#fff;
  padding:8px 14px;
  border-radius:10px;
  font-size:16px;
  letter-spacing:.08em;
  text-transform:uppercase;
  cursor:pointer;
  white-space:nowrap;
}

.immotep-dark-tab.active{
  background:#fff;
  color:#0A73A8;
  border-color:#fff;
}

/* Panel inferior */
.immotep-dark-panel{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:20px;
  margin-top:18px;
  background:#0A73A8;
  border-radius:18px;
  overflow:hidden;
}

/* Imagen */
.immotep-dark-image{
  height: 520px;       /* tamaño banner uniforme */
  width: 100%;
  overflow: hidden;
}

.immotep-dark-image img{
  width: 100%;
  height: 100%;
  object-fit: cover;        /* vuelve a cover */
  object-position: center bottom;  /* muestra más parte superior del edificio */
  display: block;
}

/* Contenido */
.immotep-dark-content{
  padding:30px;
  background: linear-gradient(135deg, #0A73A8, #084E73);
  color:#fff;
}

.immotep-dark-title{
  margin:0 0 12px 0;
	color: #ffffff;
  font-size:32px;
  letter-spacing:.05em;
}

.immotep-dark-text{
  font-size: 18px;   
  line-height: 1.7;
  color: rgba(255,255,255,0.95);
}

.immotep-dark-btn{
  display: inline-block;
  margin: 20px auto 0 auto;
  padding: 12px 24px;
  background: transparent;
  color: #ffffff;
  border: 2px solid #ffffff;
  border-radius: 7px;
  text-decoration: none !important;
  font-weight: 600;
  transition: all 0.3s ease;
}

.immotep-dark-btn:hover{
  background: #084E73;
	color: #ffffff; 
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.35);
}
/* Mobile */
@media(max-width:900px){
  .immotep-dark-panel{
    grid-template-columns:1fr;
  }
  .immotep-dark-image{
    min-height:160px;
  }
}
/* Preview */
.immotep-preview p{
  margin-bottom:12px;
}

/* Parte oculta */
.immotep-more{
  max-height:0;
  overflow:hidden;
  transition:max-height .4s ease;
}

.immotep-more.open{
  max-height:500px;
}

/* Botón leer más */
.immotep-readmore{
  margin-top:10px;
  background:none;
  border:none;
  color:#fff;
  font-weight:600;
  cursor:pointer;
  padding:0;
}

.immotep-readmore:hover{
  text-decoration: underline;
}
/* ===== Animación suave del panel ===== */

.immotep-dark-panel{
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.immotep-dark-panel.fade-out{
  opacity: 0;
  transform: translateY(10px);
}

.immotep-dark-panel.fade-in{
  opacity: 1;
  transform: translateY(0);
}
@keyframes heroOverlayIn{
  to { opacity: 1; }
}

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

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

@keyframes heroCinematicZoom{
  0% { transform: scale(1.05); }
  100% { transform: scale(1.12); }
}

@media (prefers-reduced-motion: reduce){
  .hero-luxe-minimal::before,
  .hero-luxe-minimal::after,
  .hero-luxe-minimal h1,
  .hero-luxe-minimal p,
  .hero-luxe-minimal h1::after{
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}
/* Ocultar título automático solo en la página Nos Promotions */
.page-id-3093 .entry-title,
.page-id-3093 .ast-page-title,
.page-id-3093 .ast-page-header {
  display: none !important;
}
