/* ===================================
   HERO — ARRMARE GROUP
   =================================== */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 0 var(--section-pad-h);
  overflow: hidden;
  color: var(--color-white);
}

/* Background images con crossfade */
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  transition: opacity 1.2s var(--ease-out);
}

.hero-img.active {
  opacity: 1;
}

/* Overlay doble: base + gradiente lateral */
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(to right, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.35) 60%, rgba(0,0,0,0.1) 100%),
    linear-gradient(to top, rgba(0,0,0,0.5) 0%, transparent 50%);
}

/* Contenido */
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  animation: heroFadeIn 1.2s var(--ease-out) 0.3s both;
}

@keyframes heroFadeIn {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-tagline {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 24px;
}

.hero-content h1 {
  margin-bottom: 28px;
  color: var(--color-white);
  line-height: 1.05;
}

.hero-content h1 em {
  color: var(--color-accent-lt);
  font-style: italic;
}

.hero-desc {
  font-size: 1rem;
  font-weight: 300;
  color: rgba(255,255,255,0.78);
  max-width: 520px;
  margin-bottom: 44px;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* Scroll hint */
.hero-scroll-hint {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.5);
}

.hero-scroll-hint span {
  display: block;
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.5));
  animation: scrollPulse 2s var(--ease-in) infinite;
}

@keyframes scrollPulse {
  0%   { transform: scaleY(0); transform-origin: top; opacity: 0; }
  50%  { transform: scaleY(1); opacity: 1; }
  100% { transform: scaleY(1); transform-origin: bottom; opacity: 0; }
}

.hero-scroll-hint p {
  font-size: 0.6rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
}

/* Slide dots */
.hero-dots {
  position: absolute;
  right: var(--section-pad-h);
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.35);
  transition: background 0.4s, transform 0.3s;
  cursor: pointer;
}

.dot.active {
  background: var(--color-accent);
  transform: scale(1.4);
}