/* Cronograma Section */
.cronograma-section {
  background: #0A1128;
  padding: 80px 0;
  position: relative;
}

.cronograma-section__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
.cronograma-section__header {
  text-align: center;
  margin-bottom: 64px;
}

.cronograma-section__title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  font-family: 'Open Sans', sans-serif;
  font-weight: 700;
  font-style: Bold;
  font-size: 48px;
  line-height: 48px;
  letter-spacing: 0%;
  text-align: center;
  vertical-align: middle;
  margin: 0 0 24px 0;
}

.cronograma-section__title .cronograma-section__icon {
  color: #1FA5FF;
  width: 48px;
  height: 48px;
}

.cronograma-section__title-first {
  color: #1FA5FF;
}

.cronograma-section__title-second {
  color: #FFFFFF;
}

.cronograma-section__subtitle {
  font-family: 'Open Sans', sans-serif;
  font-weight: 400;
  font-style: Regular;
  font-size: 20px;
  line-height: 30px;
  letter-spacing: 0%;
  text-align: center;
  vertical-align: middle;
  color: #94A3B8;
  margin: 0;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Timeline Grid */
.cronograma-section__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(4, auto);
  gap: 24px 40px;
  max-width: 1200px;
  margin: 0 auto;
  grid-auto-flow: column;
}

h3.cronograma-section__activity-title {
  color: white;
}
/* Timeline Item */
.cronograma-section__item {
  background: linear-gradient(143.29deg, #0C1322 0%, #0F1729 100%);
  border: 1px solid rgba(92, 228, 255, 0.2);
  border-radius: 16px;
  padding: 24px;
  transition: all 0.3s ease;
  position: relative;
}

.cronograma-section__item:hover {
  transform: translateY(-2px);
  border-color: rgba(92, 228, 255, 0.4);
  box-shadow: 0 8px 32px rgba(92, 228, 255, 0.1);
}

/* Break Items */
.cronograma-section__item--break {
  background: linear-gradient(143.29deg, #1A2332 0%, #1D2739 100%);
  border-color: rgba(156, 163, 175, 0.3);
  position: relative;
}

.cronograma-section__item--break:hover {
  border-color: rgba(156, 163, 175, 0.5);
  box-shadow: 0 8px 32px rgba(156, 163, 175, 0.1);
}

.cronograma-section__item--break .cronograma-section__time {
  color: #5CE4FF;
}

.cronograma-section__item--break .cronograma-section__activity-title {
  font-family: 'Open Sans', sans-serif;
  font-weight: 700;
  font-style: Bold;
  font-size: 18px;
  line-height: 22.5px;
  letter-spacing: 0%;
  vertical-align: middle;
  color: #FFFFFF;
  position: relative;
}

.cronograma-section__item--break .cronograma-section__activity-title::after {
  content: "DESCANSO";
  display: inline-flex;
  align-items: center;
  background: #16A2491A;
  border: 1px solid #16A24933;
  color: #16A249;
  font-family: 'Open Sans', sans-serif;
  font-weight: 400;
  font-style: Regular;
  font-size: 12px;
  line-height: 16px;
  letter-spacing: 0%;
  vertical-align: middle;
  padding: 6px 12px;
  padding-left: 30px;
  border-radius: 20px;
  margin-left: 12px;
  text-transform: uppercase;
  position: relative;
}

.cronograma-section__item--break .cronograma-section__activity-title::before {
  content: "";
  position: absolute;
  left: 25%;
  top: 50%;
  transform: translateY(-50%);
  width: 14px;
  height: 14px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%2316A249' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M10 2v2'/%3E%3Cpath d='M14 2v2'/%3E%3Cpath d='M16 8a1 1 0 0 1 1 1v8a4 4 0 0 1-4 4H7a4 4 0 0 1-4-4V9a1 1 0 0 1 1-1h14a4 4 0 1 1 0 8h-1'/%3E%3Cpath d='M6 2v2'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.cronograma-section__item--break .cronograma-section__time svg {
  color: #5CE4FF;
}

/* Time */
.cronograma-section__time {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Open Sans', sans-serif;
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  color: #5CE4FF;
  margin-bottom: 16px;
}

.cronograma-section__time svg {
  width: 16px;
  height: 16px;
  color: #5CE4FF;
}

/* Activity Title */
.cronograma-section__activity-title {
  font-family: 'Open Sans', sans-serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 26px;
  color: #F8FAFC;
  margin: 0 0 12px 0;
}

/* Activity Description */
.cronograma-section__activity-description {
  font-family: 'Open Sans', sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 22px;
  color: #94A3B8;
  margin: 0 0 16px 0;
}

/* Speaker */
.cronograma-section__speaker {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.cronograma-section__speaker-name {
  font-family: 'Open Sans', sans-serif;
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  color: #5CE4FF;
}

.cronograma-section__speaker-title {
  font-family: 'Open Sans', sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  color: #94A3B8;
}

/* Footer Note */
.cronograma-section__note {
  margin-top: 64px;
  padding: 24px;
  background: linear-gradient(143.29deg, #1A2332 0%, #1D2739 100%);
  border: 1px solid rgba(251, 191, 36, 0.3);
  border-radius: 12px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.cronograma-section__note-content {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.cronograma-section__note-icon {
  color: #FFDB70;
  flex-shrink: 0;
  margin-top: 2px;
}

.cronograma-section__note-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.cronograma-section__note-title {
  font-family: 'Open Sans', sans-serif;
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  color: #FBF1A7;
}

.cronograma-section__note-description {
  font-family: 'Open Sans', sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 22px;
  color: #E2E8F0;
}

/* Responsive Design */
@media (max-width: 768px) {
  .cronograma-section {
    padding: 60px 0;
  }

  .cronograma-section__container {
    padding: 0 16px;
  }

  .cronograma-section__header {
    margin-bottom: 48px;
  }

  .cronograma-section__title {
    font-size: 36px;
    line-height: 44px;
    gap: 12px;
  }

  .cronograma-section__title .cronograma-section__icon {
    width: 36px;
    height: 36px;
  }

  .cronograma-section__subtitle {
    font-size: 16px;
    line-height: 24px;
  }

  .cronograma-section__grid {
    grid-template-columns: 1fr;
    gap: 20px;
    max-width: 100%;
  }

  .cronograma-section__item {
    padding: 20px;
  }

  .cronograma-section__activity-title {
    font-size: 16px;
    line-height: 24px;
  }

  .cronograma-section__note {
    margin-top: 48px;
    padding: 20px;
  }

  .cronograma-section__note-content {
    gap: 10px;
  }
}

@media (max-width: 780px) {
  .cronograma-section {
    padding: 40px 0;
  }

  .cronograma-section__title {
    font-size: 28px;
    line-height: 36px;
    flex-direction: column;
    gap: 8px;
  }

  .cronograma-section__title .cronograma-section__icon {
    width: 32px;
    height: 32px;
  }

  .cronograma-section__subtitle {
    font-size: 14px;
    line-height: 22px;
  }

  .cronograma-section__item {
    padding: 16px;
  }

  .cronograma-section__time {
    font-size: 14px;
    margin-bottom: 12px;
  }

  .cronograma-section__activity-title {
    font-size: 15px;
    line-height: 22px;
    margin-bottom: 8px;
  }

  .cronograma-section__activity-description {
    font-size: 13px;
    line-height: 20px;
    margin-bottom: 12px;
  }

  .cronograma-section__speaker-name {
    font-size: 14px;
    line-height: 20px;
  }

  .cronograma-section__speaker-title {
    font-size: 13px;
    line-height: 18px;
  }

  .cronograma-section__note {
    margin-top: 32px;
    padding: 16px;
  }

  .cronograma-section__note-title {
    font-size: 14px;
    line-height: 20px;
  }

  .cronograma-section__note-description {
    font-size: 13px;
    line-height: 20px;
  }

  .cronograma-section__item--break .cronograma-section__activity-title::before {
    content: "";
    position: absolute;
    left: 19%;
    top: 70%;
  }
}
