/* =====================
   HERO ABOUT
===================== */

.hero-about {
  min-height: 54vh;

  display: flex;
  align-items: center;

  position: relative;
  overflow: hidden;

  background:
    linear-gradient(
      120deg,
      rgba(7, 43, 29, 0.96) 0%,
      rgba(13, 61, 41, 0.95) 48%,
      rgba(57, 83, 36, 0.88) 100%
    );

  color: var(--color-white);
}



/* =====================
   HERO GRID
===================== */

.hero-about-grid {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;

  min-height: 54vh;
}
/* =====================
   HERO CONTENT
===================== */

.hero-about-content {
  position: relative;

  padding-right: 80px;
  text-align: left;
  z-index: 3;
}
.hero-tag {
  display: inline-block;

  margin-bottom: 20px;

  padding: 8px 16px;

  border-radius: 50px;

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

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

  backdrop-filter: blur(10px);

  font-size: 13px;

  letter-spacing: 1px;

  text-transform: uppercase;
}

.hero-about h2 {
  font-size: clamp(42px, 8vw, 68px);

  line-height: 1.1;

  margin-bottom: 20px;

  font-weight: 800;
}

.hero-about p {
  max-width: 620px;

  font-size: 17px;

  line-height: 1.9;

  opacity: 0.92;
}

/* =====================
   HERO IMAGE
===================== */

.hero-about-image {
  position: absolute;
  top: 0;
  right: -60px;

  width: 46%;
  height: 100%;

  z-index: 1;
}
.hero-about-image::before {
  content: "";

  position: absolute;

  inset: -20px;

  background:
    linear-gradient(
      135deg,
      rgba(224,161,38,0.20),
      transparent
    );

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

  z-index: 1;

  filter: blur(10px);
}

.hero-about-image img {
  width: 100%;

  height: 540px;

  object-fit: cover;
  margin-left: 30px;
  box-shadow:
    0 35px 60px rgba(0,0,0,0.30);

  

  position: relative;
  z-index: 2;

  /* diagonal */

  clip-path: polygon(
    12% 0%,
    100% 0%,
    88% 100%,
    0% 100%
  );

  border-radius: 12px;
}

/* =====================
   ABOUT SECTION
===================== */

.about-section {
  padding: 90px 0;
}

.about-section.alt {
  background:
    linear-gradient(
      to bottom,
      rgba(255,255,255,0.55),
      rgba(255,255,255,0.90)
    );
}

/* =====================
   ABOUT GRID
===================== */

.about-grid {
  display: grid;

  grid-template-columns: 320px 1fr;

  gap: 70px;

  align-items: start;
}
.about-section .container {
  max-width: 900px;
}
/* sticky info */

.about-info {
  position: sticky;

  top: 120px;

  align-self: start;
}

/* =====================
   BIO BOX
===================== */

.bio-box {
  margin-bottom: 30px;
  padding: 26px;

  background:
    linear-gradient(
      145deg,
      rgba(255,255,255,0.88),
      rgba(255,255,255,0.68)
    );

  backdrop-filter: blur(14px);

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

  border-radius: var(--radius-lg);
 margin-top: -40px;
  box-shadow: var(--shadow-card);
}

.bio-box p {
  margin-bottom: 12px;

  padding-bottom: 12px;

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

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

  line-height: 1.7;

  font-size: 14px;
}

.bio-box p:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

/* =====================
   ABOUT TEXT
===================== */

.about-text {
  max-width: 760px;
}

.about-text h2 {
  margin-bottom: 18px;

  font-size: 40px;

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

.about-text h3 {
  margin-top: 30px;
  margin-bottom: 12px;

  font-size: 18px;

  color: var(--color-accent);
}

.about-text p {
  margin-bottom: 18px;

  line-height: 2;

  font-size: 15px;

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

  text-align: justify;
}

/* =====================
   IMAGE SECONDARY
===================== */

.about-img img {
  width: 100%;
  height: 100%;
  border-radius: var(--radius-lg);

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

  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
}

.about-img img:hover {
  transform: scale(1.015);
}

.img-caption {
  display: block;

  margin-top: 12px;

  text-align: center;

  font-size: 13px;

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

  opacity: 0.85;
}

/* =====================
   TRAJECTORY
===================== */

.about-trajectory {
  padding: 100px 0;

  background:
    linear-gradient(
      to bottom,
      rgba(255,255,255,0.45),
      rgba(255,255,255,0.72)
    );
}

.about-trajectory h2 {
  text-align: center;

  margin-bottom: 55px;

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

  font-size: 34px;
}

/* =====================
   TIMELINE
===================== */

.timeline {
  position: relative;

  max-width: 950px;

  margin: auto;

  padding: 40px 0;
}

.timeline::before {
  content: "";

  position: absolute;

  left: 50%;
  top: 0;

  width: 4px;
  height: 100%;

  background:
    linear-gradient(
      to bottom,
      var(--color-brand),
      var(--color-accent)
    );

  border-radius: 20px;

  transform: translateX(-50%);
}

.timeline-item {
  width: 50%;

  position: relative;

  margin-bottom: 45px;
}

.timeline-item.left {
  left: 0;

  text-align: right;

  padding-right: 40px;
}

.timeline-item.right {
  left: 50%;

  padding-left: 40px;
}

.timeline-item::before {
  content: "";

  position: absolute;

  top: 18px;

  width: 16px;
  height: 16px;

  border-radius: 50%;

  background: var(--color-accent);

  border: 4px solid var(--color-background);

  box-shadow:
    0 0 0 6px rgba(201,106,27,0.18);

  z-index: 3;
}

.timeline-item.left::before {
  right: -8px;
}

.timeline-item.right::before {
  left: -8px;
}

.timeline-content {
  background: rgba(255,255,255,0.86);

  backdrop-filter: blur(10px);

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

  padding: 22px;

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

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

  display: inline-block;

  max-width: 340px;

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

.timeline-content:hover {
  transform: translateY(-4px);

  box-shadow:
    0 18px 30px rgba(0,0,0,0.08);
}

.year {
  display: inline-block;

  margin-bottom: 10px;

  font-weight: 700;

  font-size: 14px;

  letter-spacing: 1px;

  text-transform: uppercase;

  color: var(--color-accent);
}

.timeline-content p {
  font-size: 14px;

  line-height: 1.7;

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

/* =====================
   CTA
===================== */
.cta{

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




    color:var(--color-white);

    text-align:center;

    position:relative;

    overflow:hidden;

}

.cta::before{

content:"";

position:absolute;

inset:0;

background:

linear-gradient(
90deg,
transparent,
rgba(255,255,255,.05),
transparent
);

}

.cta h2 {
  position: relative;
  z-index: 2;

  margin-bottom: 15px;
}

.cta-text {
  position: relative;
  z-index: 2;

  max-width: 720px;

  margin: 10px auto;

  line-height: 1.9;

  font-size: 15px;

  opacity: 0.92;
}

.cta-quote {
  position: relative;
  z-index: 2;

  margin: 30px auto 0;

  max-width: 650px;

  padding-left: 18px;

  border-left: 4px solid rgba(255,255,255,0.5);

  font-style: italic;

  font-size: 17px;

  line-height: 1.8;

  opacity: 0.95;
}

.cta blockquote{

max-width:800px;

margin:45px auto 0;

padding:30px;

background:

rgba(255,255,255,.08);

backdrop-filter:blur(10px);

border-left:5px solid var(--color-accent-light);

border-radius:20px;

font-size:1.35rem;

font-style:italic;

line-height:1.7;

}
/* =====================
   REVEAL
===================== */

.reveal {
  opacity: 0;

  transform: translateY(30px);

  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}

.reveal.active {
  opacity: 1;

  transform: translateY(0);
}

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

@media (max-width: 992px) {

  .hero-about {
    min-height: auto;

    padding: 100px 0 0px;
  }

  .hero-about-grid {
    display: flex;

    flex-direction: column;

    align-items: center;

    gap: 50px;
  }

  .hero-about-content {
    width: 100%;

    padding-right: 0;

    text-align: center;

    z-index: 3;
  }

  .hero-about p {
    margin: auto;
  }

  /* imagen */

  .hero-about-image {
    position: relative;

    width: 100%;

    max-width: 380px;

    right: auto;
    top: auto;

    transform: none;
  }

  .hero-about-image img {
    width: 100%;

    height: 420px;

    min-height: auto;

    transform: none;

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

  /* ABOUT */

  .about-grid {
    grid-template-columns: 1fr;

    gap: 40px;
  }

  .about-info {
    position: relative;

    top: 0;
  }

  .timeline-content {
    max-width: 300px;
  }

}

/* =====================
   MOBILE
===================== */

@media (max-width: 768px) {

  .hero-about {
    padding: 90px 0 60px;
  }

  .hero-about h2 {
    font-size: 42px;

    line-height: 1.05;
  }

  .hero-about p {
    font-size: 15px;

    line-height: 1.8;
  }

  .hero-tag {
    font-size: 12px;
  }

  .hero-about-image {
    max-width: 300px;
  }

  .hero-about-image img {
    height: 340px;
  }

  .about-text p {
    text-align: left;
  }

  /* timeline mobile */

  .timeline::before {
    left: 20px;
  }

  .timeline-item {
    width: 100%;

    padding-left: 55px;

    text-align: left;
  }

  .timeline-item.left,
  .timeline-item.right {
    left: 0;

    padding-right: 0;
  }

  .timeline-item::before {
    left: 12px;
  }

  .timeline-content {
    max-width: 100%;
  }

  .cta-quote {
    padding-left: 14px;

    font-size: 15px;
  }

}