/* ==========================================================================
   FOMEX - PÁGINA DE INICIO
   ========================================================================== */


/* --------------------------------------------------------------------------
   1. HERO
   -------------------------------------------------------------------------- */
.hero-home {
  background-image: url('https://eliasf58.sg-host.com/wp-content/uploads/2026/05/FINAL-VEGALUZ-SLIDER-2.jpg');
  background-size: cover;
  background-position: center;
  min-height: 85vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
  position: relative;
  text-align: center;
}

.hero-home::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 1;
}

.hero-home > * {
  position: relative;
  z-index: 2;
}

.hero-title {
  color: #fff;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0.5px;
  margin-bottom: 20px;
}

.hero-lead {
  color: #fff;
  font-size: 1.15rem;
  line-height: 1.6;
  margin-bottom: 35px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}


/* --------------------------------------------------------------------------
   2. SECCIÓN COMERCIALIZACIÓN
   -------------------------------------------------------------------------- */
.section-comercializacion {
  padding: 80px 20px;
}

.section-eyebrow {
  color: var(--fomex-accent);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.section-title {
  font-size: 2.25rem;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 15px;
  color: #1a1a1a;
}

.section-lead-short {
  font-size: 1.05rem;
  color: #666;
  margin-bottom: 50px;
}

.section-cta {
  margin-top: 50px;
}


/* --------------------------------------------------------------------------
   TARJETAS DE PROMOCIONES
   -------------------------------------------------------------------------- */
.promo-grid {
  gap: 30px;
}

.promo-card {
  background: #fff;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}

.promo-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.promo-card-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.promo-card-image {
  position: relative;
  height: 280px;
  background-size: cover;
  background-position: center;
}

.promo-card-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--fomex-accent);
  color: #fff;
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 3px;
}

.promo-card-body {
  padding: 28px;
}

.promo-card-body h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin: 0 0 10px;
  color: #1a1a1a;
}

.promo-card-location {
  color: #888;
  font-size: 0.95rem;
  margin: 0 0 15px;
}

.promo-card-desc {
  color: #555;
  font-size: 1rem;
  line-height: 1.6;
  margin: 0 0 20px;
}

.promo-card-cta {
  color: var(--fomex-accent);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
}


/* --------------------------------------------------------------------------
   3. SECCIÓN QUIÉNES SOMOS
   -------------------------------------------------------------------------- */
.section-nosotros {
  background-color: #f7f7f7;
  padding: 80px 20px;
  text-align: center;
}

.section-lead {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #555;
  margin-bottom: 35px;
}


/* --------------------------------------------------------------------------
   4. FRASE CORPORATIVA
   -------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------
   SECTION CLAIM - frase corporativa con imagen de fondo
   -------------------------------------------------------------------------- */
.section-claim {
  position: relative;
  padding: 140px 20px !important;
  text-align: center;
  background-color: transparent !important;
  background-image: url('https://eliasf58.sg-host.com/wp-content/uploads/2026/05/DJI_20260322101339_0049_D_resultado-scaled.webp') !important;
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
  overflow: hidden;
  isolation: isolate;
}

.section-claim::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 0;
  pointer-events: none;
}

.section-claim > * {
  position: relative;
  z-index: 1;
}

.section-claim .claim-text,
.section-claim h2 {
  color: #fff !important;
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 400;
  font-style: italic;
  line-height: 1.5;
  max-width: 900px;
  margin: 0 auto;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

@media (max-width: 600px) {
  .section-claim {
    padding: 90px 20px !important;
  }
}


/* --------------------------------------------------------------------------
   5. CTA CONTACTO FINAL
   -------------------------------------------------------------------------- */
.section-cta-final {
  padding: 80px 20px;
  text-align: center;
}


/* --------------------------------------------------------------------------
   RESPONSIVE
   -------------------------------------------------------------------------- */
@media (max-width: 900px) {
  .promo-grid {
    flex-direction: column;
  }
}

@media (max-width: 600px) {
  .hero-home {
    min-height: 70vh;
  }
  .section-comercializacion,
  .section-nosotros,
  .section-cta-final {
    padding: 60px 20px;
  }
  .section-title {
    font-size: 1.6rem;
  }
  .section-lead,
  .section-lead-short {
    font-size: 1rem;
  }
  .promo-card-image {
    height: 220px;
  }
  .claim-text {
    font-size: 1.3rem;
  }
}