/* =========================
   HERO PROPUESTAS
========================= */

.hero-propuestas {

  position: relative;

min-height: 100vh;
  width: 100%;
  display: flex;
  align-items: center;

  overflow: hidden;

  background:
    linear-gradient(
      135deg,
      #0d3d29,
      #174f35
    );

  color: white;
}

/* overlay oscuro */

.hero-propuestas::before {

  content: "";

  position: absolute;
  inset: 0;

  background:
    linear-gradient(
      90deg,
      rgba(7,43,29,0.76) 0%,
      rgba(7,43,29,0.68) 35%,
      rgba(7,43,29,0.45) 65%,
      rgba(7,43,29,0.15) 100%
    );


  z-index: 2;
}

/* =========================
   IMAGEN HERO
========================= */

.hero-propuestas-image {

  position: absolute;

  top: 0;
  right: 0;

  width: 90%;
  height: 100%;

  overflow: hidden;

  z-index: 1;

  clip-path: polygon(
    14% 0%,
    100% 0%,
    100% 100%,
    0% 100%
  );
}

.hero-propuestas-image img {

  width: 100%;
  height: 100%;

  object-fit: cover;
}

/* =========================
   CONTENIDO
========================= */
.hero-propuestas-content {

  position: relative;
  z-index: 3;

  max-width: 720px;

 padding: 20px 0;
}
/* badge */

.hero-badge {

  display: inline-block;

  margin-bottom: 28px;

  padding: 10px 22px;

  border-radius: 999px;

  background: rgba(255,255,255,0.12);

  border: 1px solid rgba(255,255,255,0.12);

  backdrop-filter: blur(10px);

  font-size: 13px;

  text-transform: uppercase;

  letter-spacing: 1px;
}

/* titulo */

.hero-propuestas h2 {

font-size: clamp(3.2rem, 8vw, 5rem);
  line-height: 0.95;

  font-weight: 900;

  margin-bottom: 30px;

  letter-spacing: -4px;
}

/* texto */

.hero-propuestas p {

  max-width: 100%;

  line-height: 1.9;

  font-size: 18px;

  color: rgba(255,255,255,0.88);
}

/* =========================
   STATS
========================= */

.hero-stats {

  display: flex;

  gap: 20px;

  margin-top: 30px;

  flex-wrap: wrap;
}

.hero-stat {

  min-width: 160px;

  padding: 24px;

  border-radius: 24px;

  background: rgba(255,255,255,0.10);

  border: 1px solid rgba(255,255,255,0.10);

  backdrop-filter: blur(14px);
}

.hero-stat strong {

  display: block;

  font-size: 2.3rem;

  color: #f0b24a;

  margin-bottom: 8px;
}

.hero-stat span {

  font-size: 14px;

  color: rgba(255,255,255,0.85);
}


/* =====================
   TITLE
===================== */

.section-title {
  text-align: center;

  margin-bottom: 40px;
}

.section-title h2 {
  font-size: clamp(2.4rem, 5vw, 4rem);

  color: var(--color-brand-dark);

  letter-spacing: -1.5px;

  margin-bottom: 18px;
}

.section-title p {
  max-width: 760px;

  margin: auto;

  color: var(--color-text-soft);

  line-height: 1.8;
}

/* =====================
   PROPUESTA
===================== */

.propuesta {

  position: relative;

  display: flex;

  align-items: center;

  gap: 40px;

  margin-bottom: 60px;
}
/* =====================
   SECTION
===================== */

.propuestas {
  padding: 40px 0;
}

.propuesta.reverse {
  flex-direction: row-reverse;
}

/* =====================
   ICON
===================== */

.propuesta-icon {

  width: 90px;
  height: 90px;

  flex-shrink: 0;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 28px;

  background:
    linear-gradient(
      135deg,
      rgba(201, 106, 27, 0.15),
      rgba(224, 161, 38, 0.1)
    );

  border:
    1px solid rgba(201, 106, 27, 0.12);

  font-size: 2rem;

  color: var(--color-accent);

  box-shadow:
    0 10px 25px rgba(20, 61, 42, 0.08);
}

/* =====================
   CONTENT
===================== */

.propuesta-content {

  background:
    rgba(255,255,255,0.65);

  backdrop-filter: blur(10px);

  border:
    1px solid rgba(20, 61, 42, 0.06);

  padding: 36px;

  border-radius: var(--radius-lg);

  box-shadow: var(--shadow-soft);

  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
}

.propuesta-content:hover {

  transform: translateY(-8px);

  box-shadow:
    0 22px 40px rgba(20, 61, 42, 0.12);

  border-color:
    rgba(201, 106, 27, 0.16);
}

.propuesta-content h3 {

  margin-bottom: 16px;

  color: var(--color-brand-dark);

  font-size: 1.6rem;

  letter-spacing: -0.5px;
}

.propuesta-content p {

  font-size: 1rem;

  line-height: 1.9;

  color: var(--color-text-soft);
}

/* =====================
   CTA
===================== */

.cta-propuestas {

  position: relative;

  overflow: hidden;

  background:
    linear-gradient(
      135deg,
      var(--color-brand-dark),
      #1c5137
    );

  color: var(--color-white);

  text-align: center;

  padding: 110px 0;
}

.cta-propuestas::before {

  content: "";

  position: absolute;
  inset: 0;

  background:
    radial-gradient(
      circle at top right,
      rgba(224, 161, 38, 0.14),
      transparent 30%
    );

  pointer-events: none;
}

.cta-propuestas .container {
  position: relative;
  z-index: 2;
}

.cta-propuestas h2 {

  font-size: clamp(2rem, 5vw, 3.5rem);

  margin-bottom: 20px;

  letter-spacing: -1px;
}

.cta-text {

  max-width: 700px;

  margin: auto;

  line-height: 1.9;

  color:
    rgba(255,255,255,0.88);
}

.cta-quote {

  margin: 30px auto;

  max-width: 650px;

  font-style: italic;

  font-size: 1.15rem;

  opacity: 0.9;
}

/* botón */

.cta-propuestas .btn {

  margin-top: 24px;

  background: var(--color-accent);

  color: var(--color-white);

  border-radius: 999px;

  padding: 15px 28px;

  font-weight: 700;

  transition:
    transform 0.3s ease,
    background 0.3s ease,
    box-shadow 0.3s ease;

  box-shadow:
    0 12px 28px rgba(201, 106, 27, 0.28);
}

.cta-propuestas .btn:hover {

  background:
    var(--color-accent-light);

  transform:
    translateY(-4px);

  box-shadow:
    0 18px 36px rgba(201, 106, 27, 0.35);
}

/* =====================
   RESPONSIVE
===================== */

@media (max-width: 992px) {

  .hero-propuestas {

    min-height: auto;

    padding: 120px 0 80px;
  }

  .hero-propuestas-image {

    width: 100%;

    opacity: 0.28;

    clip-path: none;
  }

  .hero-propuestas-content {

    text-align: center;

    margin: auto;
  }

  .hero-propuestas p {

    margin: auto;
  }

  .hero-stats {

    justify-content: center;
  }

}

@media (max-width: 768px) {

  .hero-propuestas h2 {

    font-size: 3.5rem;

    letter-spacing: -2px;
  }

  .hero-propuestas p {

    font-size: 15px;
  }

  .hero-stat {

    width: 100%;
  }

  .propuestas {
    padding: 90px 0;
  }

  .propuesta,
  .propuesta.reverse {

    flex-direction: column;

    text-align: center;
  }

  .propuesta-content {
    padding: 28px;
  }

  .propuesta-icon {
    margin-bottom: 10px;
  }

}