/* ==========================================================================
   HERO SECTION — TAMAÑO NORMAL, CONTENIDO DESPLAZADO A LA DERECHA / MÁS DESTACADO
   ========================================================================== */

.hero {
  width: 100%;
  min-height: calc(100vh - var(--header-height));
  max-height: 720px;
  margin-top: var(--header-height);
  padding: 3.5rem 0;
  display: flex;
  align-items: center;
  position: relative;
  background-image: url('../../assets/images/hero-bg-clean-real.jpg');
  background-position: center 30%;
  background-repeat: no-repeat;
  background-size: cover;
  border-bottom: 1px solid rgba(226, 184, 87, 0.2);
  overflow: hidden;
}

/* Capa de Superposición Oscura Mejorada para Alta Visibilidad y Destaque */
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    rgba(6, 17, 36, 0.82) 0%,
    rgba(6, 17, 36, 0.65) 45%,
    rgba(6, 17, 36, 0.20) 75%,
    rgba(6, 17, 36, 0.0) 100%
  );
  z-index: 1;
  pointer-events: none;
}

.hero .container {
  position: relative;
  z-index: 2;
  width: 100%;
}

/* Bloque de Información Desplazado a la Derecha para mayor centralidad */
.hero-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  max-width: 720px;
  margin-left: 5rem; /* Empuja el contenido hacia la derecha para centrarlo más en la composición */
}

/* ─── ETIQUETA DE MARCA A.I.P STEEL SOLUCIONES ─────────────────── */
.hero-brand-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.55rem 1.25rem;
  border-radius: 20px;
  background: rgba(9, 26, 54, 0.80);
  border: 1.5px solid rgba(226, 184, 87, 0.6);
  margin-bottom: 1.35rem;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.hero-brand-badge .brand-name-gold {
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 800;
  color: #FADB7F;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-brand-badge .badge-dot {
  color: rgba(226, 184, 87, 0.8);
  font-size: 0.75rem;
}

.hero-brand-badge .badge-sub {
  font-family: var(--font-heading);
  font-size: 0.78125rem;
  font-weight: 700;
  color: #FFFFFF;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ─── TÍTULO PRINCIPAL EDITORIAL MÁS POTENTE ─────────────────── */
.hero-title {
  font-size: clamp(2.5rem, 4vw, 3.8rem);
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 1.35rem;
  line-height: 1.15;
  letter-spacing: -0.02em;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.95), 0 2px 8px rgba(0, 0, 0, 0.9);
  max-width: 680px;
}

.hero-title .highlight-gold {
  color: #FADB7F;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.95), 0 0 25px rgba(226, 184, 87, 0.6);
}

/* ─── DESCRIPCIÓN CON MÁXIMO CONTRASTE ───────────────────────── */
.hero-description {
  font-size: 1.15rem;
  color: #FFFFFF;
  margin-bottom: 2.35rem;
  max-width: 580px;
  font-weight: 500;
  line-height: 1.65;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.95), 0 1px 4px rgba(0, 0, 0, 0.9);
}

.hero-description strong {
  color: #FADB7F;
  font-weight: 700;
}

/* ─── ACCIONES / BOTONES ─────────────────────────────────────── */
.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: 1.25rem;
  margin-bottom: 2.35rem;
}

.btn-quote {
  background-color: var(--accent-gold);
  color: #091A36;
  font-weight: 800;
  font-size: 0.98rem;
  padding: 1rem 2rem;
  border-radius: var(--border-radius-md);
  box-shadow: 0 8px 24px rgba(226, 184, 87, 0.45);
  border: none;
  cursor: pointer;
  transition: var(--transition-normal);
  white-space: nowrap;
}

.btn-quote:hover {
  background-color: #FADB7F;
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(226, 184, 87, 0.6);
  color: #091A36;
}

.btn-secondary-clean {
  background: rgba(9, 26, 54, 0.70);
  color: #FFFFFF;
  border: 1.5px solid rgba(255, 255, 255, 0.40);
  font-weight: 700;
  font-size: 0.98rem;
  padding: 1rem 2rem;
  border-radius: var(--border-radius-md);
  cursor: pointer;
  transition: var(--transition-normal);
  white-space: nowrap;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.btn-secondary-clean:hover {
  background: rgba(255, 255, 255, 0.25);
  border-color: #FFFFFF;
  color: #FFFFFF;
  transform: translateY(-2px);
}

/* ─── FILA DE BENEFICIOS CON FONDO PROTEGIDO ───────────────── */
.hero-trust-line {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem 0.75rem;
}

.trust-point {
  font-size: 0.9rem;
  font-weight: 600;
  color: #FFFFFF;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.95);
  letter-spacing: 0.01em;
}

.trust-sep {
  color: #E2B857;
  font-size: 0.75rem;
  opacity: 0.8;
}

/* ─── RESPONSIVE ─────────────────────────────────────────────── */
@media (max-width: 992px) {
  .hero-content {
    margin-left: 2rem;
  }
}

@media (max-width: 768px) {
  .hero {
    min-height: 80vh;
    max-height: none;
    padding: 2.5rem 0;
  }

  .hero-content {
    margin-left: 0;
  }

  .hero-title {
    font-size: clamp(1.9rem, 6vw, 2.6rem);
  }

  .hero-description {
    font-size: 0.98rem;
  }

  .hero-brand-badge {
    flex-wrap: wrap;
    gap: 0.4rem;
  }
}

@media (max-width: 576px) {
  .hero-actions {
    flex-direction: column;
    width: 100%;
  }

  .hero-actions .btn {
    width: 100%;
    text-align: center;
    justify-content: center;
  }

  .hero-trust-line {
    flex-wrap: wrap;
  }
}
