/* Hero compacto para página interna */
.hero-internal {
  position: relative;
  height: 100vh;
  height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  overflow: hidden;
}
.hero-internal .hero-video-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  height: 100dvh;
}
.hero-internal .hero-video-wrapper video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-internal .hero-overlay {
  display: none;
}
.hero-internal .hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: var(--space-lg);
  padding-top: 60vh;
  width: 100%;
}
.hero-internal .hero-title-main {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 700;
  text-wrap: balance;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  line-height: 1.2;
  text-shadow:
    0 1px 2px rgba(0, 0, 0, 0.8),
    0 2px 2px rgba(0, 0, 0, 0.8),
    0 3px 2px rgba(0, 0, 0, 0.8),
    0 4px 10px rgba(0, 0, 0, 1.0);
}

/* Breadcrumb */
.breadcrumb {
  padding: var(--space-md) 0;
  background: var(--green-50);
}
.breadcrumb-list {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  list-style: none;
  padding: 0;
  margin: 0;
  font-family: var(--font-body);
  font-size: 0.875rem;
}
.breadcrumb-list li {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}
.breadcrumb-list li:not(:last-child)::after {
  content: "›";
  color: var(--gray-400);
}
.breadcrumb-list a {
  color: var(--green-600);
  text-decoration: none;
  transition: color var(--transition-fast);
}
.breadcrumb-list a:hover {
  color: var(--green-800);
}
.breadcrumb-list li:last-child {
  color: var(--gray-600);
}
