/**
 * stacciolla/nfc-teaser — style.css
 * Fondo negro, dos columnas 50/50, símbolo SVG dorado, acentos gold.
 * Solo var(--fe-*). Cero valores hardcodeados salvo los definidos en spec.
 */

/* ============================================================
   WRAPPER
   ============================================================ */

.fe-nfc-teaser {
  background: var(--fe-cream-dark);
  width: 100%;
  padding-bottom: 0;
}

.fe-nfc-teaser__inner {
  max-width: var(--fe-container-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 600px;
}

/* ============================================================
   COLUMNA IZQUIERDA — SÍMBOLO
   ============================================================ */

.fe-nfc-teaser__symbol-col {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 140px var(--fe-space-10);
  position: relative;
}

.fe-nfc-teaser__symbol-col::after {
  content: '';
  position: absolute;
  right: 0;
  top: 10%;
  bottom: 10%;
  width: 1px;
  background: var(--fe-gold);
  opacity: 0.3;
}

.fe-nfc-teaser__symbol {
  width: 200px;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Colorear el SVG inline de dorado */
.fe-nfc-teaser__symbol svg {
  width: 100%;
  height: 100%;
  fill: var(--fe-gold);
}

/* ============================================================
   COLUMNA DERECHA — TEXTO
   ============================================================ */

.fe-nfc-teaser__text-col {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 140px 80px 140px 80px;
}

/* Eyebrow */

.fe-nfc-teaser__eyebrow {
  font-family: var(--fe-font-body);
  font-size: 0.65rem;
  font-weight: var(--fe-weight-regular);
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--fe-warm-gray);
  margin: 0 0 24px;
}

/* Titular */

.fe-nfc-teaser__headline {
  font-family: var(--fe-font-display);
  font-size: 3rem;
  font-weight: var(--fe-weight-light);
  line-height: 1.1;
  color: var(--fe-black);
  margin: 0 0 32px;
}

/* Cuerpo */

.fe-nfc-teaser__body {
  font-family: var(--fe-font-body);
  font-size: 0.95rem;
  font-weight: var(--fe-weight-regular);
  line-height: 1.8;
  color: var(--fe-warm-gray);
  margin: 0 0 40px;
  max-width: 480px;
}

/* Badge outline dorado */

.fe-nfc-teaser__badge {
  display: inline-block;
  font-family: var(--fe-font-body);
  font-size: 0.6rem;
  font-weight: var(--fe-weight-regular);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--fe-black);
  border: 1px solid var(--fe-black);
  padding: 8px 20px;
  align-self: flex-start;
  text-decoration: none;
  transition: background var(--fe-transition), color var(--fe-transition);
}

.fe-nfc-teaser__badge:hover {
  background: var(--fe-black);
  color: var(--fe-white);
}

/* ============================================================
   RESPONSIVE — TABLET
   ============================================================ */

@media (max-width: 1024px) {
  .fe-nfc-teaser__inner {
    grid-template-columns: 1fr 1fr;
    min-height: 500px;
  }

  .fe-nfc-teaser__symbol-col {
    padding: 80px var(--fe-space-8);
  }

  .fe-nfc-teaser__symbol {
    width: 160px;
    height: 160px;
  }

  .fe-nfc-teaser__text-col {
    padding: 80px 48px;
  }

  .fe-nfc-teaser__headline {
    font-size: 2.2rem;
  }
}

/* ============================================================
   RESPONSIVE — MOBILE
   ============================================================ */

@media (max-width: 768px) {
  .fe-nfc-teaser__inner {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .fe-nfc-teaser__symbol-col {
    padding: 60px var(--fe-space-4) 40px;
    position: relative;
  }

  .fe-nfc-teaser__symbol-col::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 15%;
    right: 15%;
    height: 1px;
    background: rgba(0, 0, 0, 0.12);
  }

  .fe-nfc-teaser__symbol-col::after {
    display: none;
  }

  .fe-nfc-teaser__symbol {
    width: 120px;
    height: 120px;
  }

  .fe-nfc-teaser__text-col {
    padding: 48px var(--fe-space-4) 60px;
  }

  .fe-nfc-teaser__headline {
    font-size: 2rem;
  }

  .fe-nfc-teaser__body {
    max-width: 100%;
  }
}
