/*
 * Carlos Marquez Landing V2 Preview
 * Etapa: identidade, cabe?alho e hero sem fotografia
 */

.cm-header {
  min-height: 92px;
  padding: 18px clamp(20px, 4vw, 72px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-bottom: 1px solid rgba(200, 161, 91, 0.18);
  background: rgba(5, 4, 3, 0.88);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.cm-brand {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  color: var(--cm-gold-2);
}

.cm-brand__name {
  font-family: var(--font-title);
  font-size: clamp(0.9rem, 1.7vw, 1.18rem);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.cm-brand__tagline {
  padding-left: 0.12em;
  color: var(--cm-gold);
  font-family: var(--font-title);
  font-size: clamp(0.48rem, 0.8vw, 0.58rem);
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.72;
}

.hero--v2 {
  min-height: min(820px, calc(100vh - 92px));
  padding: clamp(76px, 11vw, 150px) 0 clamp(72px, 10vw, 124px);
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero--v2::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(
      circle at 71% 36%,
      rgba(200, 161, 91, 0.1),
      transparent 29%
    ),
    linear-gradient(
      110deg,
      rgba(5, 4, 3, 0.28),
      rgba(5, 4, 3, 0.74)
    );
}

.hero-v2__inner {
  position: relative;
  z-index: 1;
}

.hero-v2__copy {
  max-width: 900px;
}

.hero-v2__copy .eyebrow {
  margin-bottom: 22px;
  letter-spacing: 0.22em;
}

.hero-v2__copy h1 {
  max-width: 880px;
  margin-bottom: 28px;
  color: var(--cm-text);
  font-family: var(--font-serif);
  font-size: clamp(3.4rem, 7.2vw, 7.3rem);
  font-weight: 500;
  line-height: 0.91;
  letter-spacing: -0.045em;
  text-shadow: 0 18px 55px rgba(0, 0, 0, 0.55);
}

.hero-v2__copy h1 em {
  display: block;
  color: var(--cm-gold);
  font-weight: 500;
}

.hero-v2__lead {
  max-width: 720px;
  margin-bottom: 34px;
  color: rgba(255, 247, 232, 0.7);
  font-size: clamp(1rem, 1.45vw, 1.18rem);
  line-height: 1.75;
}

.hero-v2__actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-v2__secondary {
  min-height: 48px;
  padding: 13px 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid rgba(200, 161, 91, 0.44);
  color: var(--cm-text-soft);
  font-family: var(--font-title);
  font-size: 0.72rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  transition:
    color 0.2s ease,
    border-color 0.2s ease;
}

.hero-v2__secondary:hover,
.hero-v2__secondary:focus-visible {
  color: var(--cm-gold-2);
  border-color: var(--cm-gold-2);
}

.hero-v2__facts {
  max-width: 850px;
  margin-top: clamp(56px, 8vw, 92px);
  padding-top: 25px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid rgba(200, 161, 91, 0.2);
}

.hero-v2__fact {
  min-height: 78px;
  padding: 2px 25px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-left: 1px solid rgba(200, 161, 91, 0.2);
}

.hero-v2__fact:first-child {
  padding-left: 0;
  border-left: 0;
}

.hero-v2__fact strong {
  margin-bottom: 8px;
  color: var(--cm-gold-2);
  font-family: var(--font-serif);
  font-size: clamp(1.45rem, 2.5vw, 2rem);
  font-weight: 500;
  line-height: 1;
}

.hero-v2__fact span {
  color: rgba(255, 247, 232, 0.46);
  font-size: 0.69rem;
  line-height: 1.45;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.about-stack {
  max-width: 900px;
  grid-template-columns: minmax(0, 1fr) !important;
}

.about-copy {
  max-width: 820px;
}

@media (max-width: 760px) {
  .cm-header {
    min-height: 82px;
    padding: 14px 18px;
  }

  .cm-brand__name {
    max-width: 245px;
    font-size: 0.78rem;
    letter-spacing: 0.19em;
  }

  .cm-brand__tagline {
    font-size: 0.43rem;
    letter-spacing: 0.15em;
  }

  .hero--v2 {
    min-height: auto;
    padding: 72px 0 76px;
  }

  .hero-v2__copy h1 {
    font-size: clamp(3.1rem, 15vw, 5rem);
  }

  .hero-v2__actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-v2__actions .btn,
  .hero-v2__secondary {
    width: 100%;
  }

  .hero-v2__facts {
    grid-template-columns: 1fr;
  }

  .hero-v2__fact {
    min-height: auto;
    padding: 19px 0;
    border-top: 1px solid rgba(200, 161, 91, 0.16);
    border-left: 0;
  }

  .hero-v2__fact:first-child {
    border-top: 0;
  }
}
