/* ── RESET / BASE ── */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* ── CSS VARIABLES ── */
:root {
  --clr-bg: #111210;
  --clr-red: #c0392b;
  --clr-red-dark: #a93226;
  --clr-white: #ffffff;
  --clr-offwhite: #e8e6df;
  --clr-muted: rgba(200, 198, 190, 0.45);
  --clr-border: rgba(44, 44, 40, 0.8);
  --clr-border-hi: rgba(44, 44, 40, 0.9);

  --font-mono: "IBM Plex Mono", monospace;
  --font-cond: "Barlow Condensed", sans-serif;
}

/* ── GRAIN TEXTURE ── */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='4' height='4'%3E%3Crect width='1' height='1' x='0' y='0' fill='rgba(255,255,255,0.018)'/%3E%3Crect width='1' height='1' x='2' y='2' fill='rgba(255,255,255,0.012)'/%3E%3C/svg%3E");
}

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 70vh; /* ← reducido de 80vh */
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background-color: var(--clr-bg);
}

/* ── BACKGROUND VIDEO ── */
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: grayscale(30%);
}

@media (max-width: 576px) {
  .hero-bg video {
    width: 100%;
    height: 100%;
    margin-top: 90px;
    object-fit: contain;
    object-position: top;
    filter: grayscale(30%);
  }
}

/* Gradient overlay: strong left → transparent right + fade top/bottom */
.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      to right,
      rgba(17, 18, 16, 0.82) 38%,
      rgba(17, 18, 16, 0.65) 60%,
      rgba(17, 18, 16, 0.25) 100%
    ),
    linear-gradient(
      to bottom,
      rgba(17, 18, 16, 0.5) 0%,
      transparent 30%,
      transparent 70%,
      var(--clr-bg) 100%
    );
}

/* ── MAIN CONTENT GRID ── */
.hero-body {
  position: relative;
  z-index: 10;
  display: grid;
  grid-template-columns: 1fr 380px;
  align-items: center;
  min-height: 68vh; /* ← reducido de calc(100svh - 88px) */
  padding-top: 120px; /* espacio para navbar */
}

/* ── LEFT: TITLE COLUMN ── */
.col-title {
  padding: 0 0 48px 56px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 0;
}

.eyebrow {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--clr-white);
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 25px;
  margin-bottom: 1px;
}

.eyebrow::before {
  content: "";
  display: block;
  width: 24px;
  height: 1px;
  background: var(--clr-red);
  flex-shrink: 0;
}

/* ── LOGO BLOCK ── */
.hero-logo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.6rem;
  margin: 0.875rem 0;
}

.logo-img {
  height: 100px;
  width: auto;
}

/* ── SUBTITLE ── */
.subtitle {
  margin-top: 2px;
  font-size: 15px;
  font-weight: 300;
  color: var(--clr-white);
  letter-spacing: 0.01em;
  max-width: 380px;
  line-height: 1.55;
}

.subtitle strong {
  font-weight: 700;
  color: var(--clr-white);
}

/* ── RIGHT: INFO COLUMN ── */
.col-info {
  border-left: 1px solid var(--clr-border-hi);
  padding: 0 40px 48px 44px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 24px;
  background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.85) 40%);
}

.info-label {
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(192, 57, 43, 0.9);
  margin-bottom: 8px;
}

.info-text {
  font-size: 15px;
  line-height: 1.65;
  color: var(--clr-white);
  margin: 0;
}

.info-text strong {
  color: var(--clr-white);
  font-weight: 600;
}

/* Strategic highlight block */
.strategic {
  border-left: 2px solid var(--clr-red);
  padding-left: 14px;
}

.strategic .info-text {
  font-size: 13px;
  color: rgba(210, 208, 200, 0.75);
}

/* Divider */
.col-divider {
  height: 1px;
  background: var(--clr-border);
}

/* ── BUTTONS ── */
.btn-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.btn-red {
  display: block;
  background: var(--clr-red);
  color: var(--clr-white);
  font-family: var(--font-cond);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 13px 28px;
  clip-path: polygon(10px 0%, 100% 0%, calc(100% - 10px) 100%, 0% 100%);
  transition: background 0.2s ease;
  text-decoration: none;
  text-align: center;
}

.btn-red:hover {
  background: var(--clr-red-dark);
}

.btn-outline {
  display: block;
  border: 1.5px solid rgba(232, 230, 223, 0.25);
  color: rgba(232, 230, 223, 0.75);
  font-family: var(--font-cond);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 12px 28px;
  transition:
    border-color 0.2s ease,
    color 0.2s ease;
  text-decoration: none;
  text-align: center;
}

.btn-outline:hover {
  border-color: var(--clr-red);
  color: var(--clr-red);
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .hero-body {
    grid-template-columns: 1fr;
    padding-top: 94px;
    min-height: unset;
  }

  .col-title {
    padding: 0 24px 28px;
  }

  .col-info {
    border-left: none;
    border-top: 1px solid var(--clr-border-hi);
    padding: 28px 24px 36px;
    background: rgba(17, 18, 16, 0.92);
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .logo-img {
    height: 75px;
  }
}

@media (max-width: 476px) {
  /* .logo-img {
    height: 34px;
  } */

  .subtitle {
    font-size: 14px;
  }

  .hero-industry {
    font-size: 12px;
    margin-left: 125px;
  }
}
