/* ============================================
   HERO — Propuesta 4: FIRMEZA variante
   Portada: photo (like p3) + quote card (like p1)
   Sin stats debajo de botones
   ============================================ */

.hero {
  position: relative;
  min-height: 100vh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* Background image */
.hero__bg {
  position: absolute;
  inset: 0;
  display: flex;
}

.hero__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(10, 22, 40, 0.93) 0%,
    rgba(10, 22, 40, 0.76) 60%,
    rgba(10, 22, 40, 0.88) 100%
  );
}

/* Main container */
.hero__container {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 120px 28px 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 56px;
}

/* ===== LEFT: copy ===== */
.hero__content {
  flex: 1 1 520px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.hero__eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--color-secondary);
  margin-bottom: 20px;
}

.hero__title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(36px, 5.5vw, 64px);
  font-weight: 700;
  line-height: 1.1;
  color: var(--color-white);
  margin-bottom: 24px;
}

.hero__title-accent {
  color: var(--color-secondary);
  display: block;
}

.hero__subtitle {
  font-size: clamp(15px, 1.5vw, 17px);
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.75;
  max-width: 480px;
  margin-bottom: 36px;
}

/* CTA Buttons — no text below them */
.hero__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  padding: 14px 32px;
  border-radius: 4px;
  transition: all 0.25s;
  letter-spacing: 0.3px;
  white-space: nowrap;
}

.hero__btn--primary {
  background: var(--color-secondary);
  color: var(--color-primary);
}

.hero__btn--primary:hover {
  background: #E0BA55;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201, 168, 76, 0.35);
}

.hero__btn--secondary {
  background: transparent;
  color: var(--color-white);
  border: 2px solid rgba(255, 255, 255, 0.45);
}

.hero__btn--secondary:hover {
  border-color: var(--color-secondary);
  color: var(--color-secondary);
}

/* ===== RIGHT: quote card + badge (propuesta-1 style) ===== */
.hero__card-wrap {
  flex: 0 0 340px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 16px;
}

.hero__quote-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(201, 168, 76, 0.3);
  border-radius: 8px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  width: 100%;
}

.hero__quote-icon {
  font-size: 24px;
  color: var(--color-secondary);
}

.hero__quote-text {
  font-family: 'Playfair Display', serif;
  font-size: 14px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.88);
  font-style: italic;
}

.hero__quote-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 14px;
  border-top: 1px solid rgba(201, 168, 76, 0.2);
}

.hero__author-img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--color-secondary);
  flex-shrink: 0;
}

.hero__author-info {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.hero__author-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--color-white);
}

.hero__author-role {
  font-size: 11px;
  color: var(--color-secondary);
  letter-spacing: 0.4px;
}

/* Floating badge */
.hero__badge {
  background: var(--color-secondary);
  color: var(--color-primary);
  border-radius: 8px;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  align-self: flex-end;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.3;
}

.hero__badge i { font-size: 22px; }

/* Scroll indicator */
.hero__scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  color: rgba(255, 255, 255, 0.45);
  text-decoration: none;
  font-size: 18px;
  animation: bounce 2s infinite;
  transition: color 0.2s;
}

.hero__scroll:hover { color: var(--color-secondary); }

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(8px); }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 960px) {
  .hero__container {
    flex-direction: column;
    align-items: flex-start;
    gap: 48px;
    padding: 100px 24px 60px;
  }

  .hero__card-wrap {
    flex: 0 0 auto;
    width: 100%;
    align-items: stretch;
  }

  .hero__badge { align-self: flex-start; }
}

@media (max-width: 480px) {
  .hero__actions { flex-direction: column; }
  .hero__btn { justify-content: center; }
}
