@keyframes brickell-home-fade-up {
  0% {
    opacity: 0;
    transform: translateY(50px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.wp-block-bl-hero-image {
  --brickell-color-bg-dark: #2c2e30;
  --brickell-color-text-light: #f5f4f0;
  --brickell-font-serif: var(--font-serif, 'Playfair Display', serif);
  --brickell-font-sans: var(--font-sans, 'Inter', sans-serif);
}

.wp-block-bl-hero-image.hero {
  position: relative;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 var(--spacing-container, 5%);
  color: var(--color-text-light, var(--brickell-color-text-light));
  background-color: var(--color-bg-dark, var(--brickell-color-bg-dark));
  overflow: hidden;
  font-family: var(--brickell-font-sans);
}

.wp-block-bl-hero-image .hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 0.7;
}

.wp-block-bl-hero-image .brickell-home-bg-placeholder {
  background: rgba(0, 0, 0, 0.35);
}

.wp-block-bl-hero-image .hero-content {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
}

.wp-block-bl-hero-image .hero-title {
  font-family: var(--brickell-font-serif);
  font-size: clamp(3rem, 7vw, 4.5rem);
  margin-bottom: 2rem;
  line-height: 1.05;
  font-weight: 400;
  color: var(--color-text-light, var(--brickell-color-text-light));
}

.wp-block-bl-hero-image .hero-title span {
  display: block;
}

.wp-block-bl-hero-image .hero-title .brickell-home-heading-lead {
  /* En el theme original el lead es texto directo (no span). */
  display: inline;
  color: var(--color-text-light, var(--brickell-color-text-light));
}

.wp-block-bl-hero-image .hero-title .indent {
  margin-left: 15%;
}

.wp-block-bl-hero-image .hero-title .brickell-home-heading-emphasis,
.wp-block-bl-hero-image .hero-title .brickell-home-heading-end {
  color: var(--color-text-light, var(--brickell-color-text-light));
}

.wp-block-bl-hero-image .hero-info {
  display: flex;
  justify-content: flex-end;
  margin-top: 2rem;
}

.wp-block-bl-hero-image .hero-info-text {
  max-width: 450px;
  font-size: 1.15rem;
  font-weight: 500;
}

.wp-block-bl-hero-image .hero-info-text p {
  margin: 0;
}

.wp-block-bl-hero-image .text-italic {
  font-style: italic;
}

.wp-block-bl-hero-image .text-light {
  color: var(--color-text-light, var(--brickell-color-text-light));
}

.wp-block-bl-hero-image .cta-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-bottom: 1px solid currentColor;
  padding-bottom: 5px;
  margin-top: 2rem;
  transition: gap 0.3s ease;
  text-decoration: none;
  color: inherit;
}

.wp-block-bl-hero-image .cta-link:hover {
  gap: 15px;
}

.wp-block-bl-hero-image .hero-anim-load {
  animation: brickell-home-fade-up 1s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
  opacity: 0;
}

.wp-block-bl-hero-image .hero-delay-1 {
  animation-delay: 0.2s;
}

.wp-block-bl-hero-image .hero-delay-2 {
  animation-delay: 0.4s;
}

.wp-block-bl-hero-image .hero-delay-3 {
  animation-delay: 0.6s;
}

.wp-block-bl-hero-image .brickell-home-media-buttons {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.5rem;
}

.wp-block-bl-hero-image .brickell-home-inspector-label {
  margin: 0 0 0.5rem;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
}

@media (max-width: 900px) {
  .wp-block-bl-hero-image .hero-title {
    font-size: 2rem;
  }
  .wp-block-bl-hero-image .hero-info-text {
    font-size: 0.95rem;
  }
  .wp-block-bl-hero-image .hero-title .indent {
    margin-left: 0;
  }
}
