$content-width: calc(40vw - 84px);
$margin: 20px;
$spacing: 20px;
$bdrs: 12px; // ← redondeo visible
$circle-size: 40px;
$icon-size: 32px;
$bdrs-icon: 100%;

$color1: #9251ac;
$color2: #f6a4ec;

$color3: #87bbfe;
$color4: #555ac0;

$color5: #24b47e;
$color6: #aff1b6;

* {
  box-sizing: border-box;
}

html {
  font-size: 14px;
}

body {
  background: #f6f9fc;
  font-family: "Open Sans", sans-serif;
  color: #525f7f;
}

.timeline {
  display: flex;
  flex-direction: column;
  margin: $margin auto;
  position: relative;

  &__event {
    position: relative;
    display: flex;
    margin: $spacing 0;
    width: 50vw;
    align-self: center;

    /* 🔴 REDONDEO REAL DEL CARD */
    border-radius: $bdrs;
    overflow: hidden; // ← CLAVE para que se vea

    &:nth-child(2n + 1) {
      flex-direction: row-reverse;
    }

    &__date {
      background: $color1;
      color: $color2;
      font-size: 1.5rem;
      font-weight: 600;
      padding: 0 $spacing;
      display: flex;
      align-items: center;
      justify-content: center;
      white-space: nowrap;
    }

    &__content {
      background: #fff;
      padding: $spacing;
      width: $content-width;
      box-shadow: 0 30px 60px -12px rgba(50, 50, 93, 0.25),
        0 18px 36px -18px rgba(0, 0, 0, 0.3),
        0 -12px 36px -8px rgba(0, 0, 0, 0.025);
    }

    &__title {
      font-size: 1.2rem;
      text-transform: uppercase;
      font-weight: 600;
      letter-spacing: 1.5px;
      color: $color1;
    }

    &__icon {
      margin: 0 $spacing;
      width: $circle-size;
      height: $circle-size;
      padding: 40px;
      background: $color2;
      color: $color1;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
      box-shadow: 0 30px 60px -12px rgba(50, 50, 93, 0.25),
        0 18px 36px -18px rgba(0, 0, 0, 0.3),
        0 -12px 36px -8px rgba(0, 0, 0, 0.025);

      i {
        font-size: $icon-size;
      }

      &:before {
        content: "";
        position: absolute;
        top: 0;
        left: 50%;
        width: 2px;
        height: 100%;
        background: $color2;
        transform: translateX(-50%);
        z-index: -1;
      }
    }
  }
}

/* 📱 MOBILE */
@media (max-width: 786px) {
  .timeline__event {
    flex-direction: column;
    width: 100%;

    &__icon {
      width: 100%;
      margin: 0;
      border-radius: $bdrs $bdrs 0 0;
      box-shadow: none;

      &:before {
        display: none;
      }
    }

    &__date {
      width: 100%;
      padding: $spacing;
      text-align: center;
    }

    &__content {
      width: 100%;
    }
  }
}

@keyframes fillLeft {
  100% {
    right: 100%;
  }
}

@keyframes fillTop {
  100% {
    top: 100%;
  }
}

@keyframes fillLeftOdd {
  100% {
    left: 100%;
  }
}

.HomeHeader {
  font-weight: bold;
}
/* ===== SECCIÓN CURVA TIPO CAPSULA (ZOHOSITES) ===== */
.rounded-section {
  background-color: #ffffff !important;
  border-top-left-radius: 60px;
  border-top-right-radius: 60px;
  overflow: hidden;
  padding: 80px 60px;
}

/* Ajuste mobile */
@media (max-width: 768px) {
  .rounded-section {
    padding: 60px 20px;
    border-top-left-radius: 40px;
    border-top-right-radius: 40px;
  }
}

