@charset "UTF-8";
/* CSS AGENDA */
/*=========================================
 SECCIÓN PRINCIPAL
=========================================*/
.agenda-section {
  position: relative;
  padding: 90px 0 110px;
  background:
    linear-gradient(180deg, #172653 0%, #0B1630 100%);
  overflow: hidden;
}
.agenda-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 90px;
  background:
    linear-gradient(180deg, rgba(0, 164, 228, .15), transparent);
  pointer-events: none;
}
.container-site {
  width: min(90%, var(--container-width));
  margin: auto;
}
/*=========================================
 FONDOS TECNOLÓGICOS
=========================================*/
.agenda-background {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.agenda-radar {
  position: absolute;
  width: 650px;
  right: -180px;
  top: -120px;
  opacity: .08;
  filter:
    drop-shadow(0 0 40px rgba(0, 164, 228, .45));
  animation:
    radar-spin 60s linear infinite;
}
.agenda-grid {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: .03;
}
.radar-scan {
  position: absolute;
  width: 650px;
  height: 3px;
  right: -180px;
  top: 200px;
  background:
    linear-gradient(90deg, transparent, var(--isaca-blue), transparent);
  opacity: .4;
  animation:
    scan-move 6s infinite ease-in-out;
}
@keyframes scan-move {
  0% {
    transform:
      translateY(-200px);
  }
  50% {
    transform:
      translateY(200px);
  }
  100% {
    transform:
      translateY(-200px);
  }
}
@keyframes radar-spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
/*=========================================
 HEADER
=========================================*/
.agenda-header {
  position: relative;
  z-index: 2;
  max-width: 850px;
  margin: 0 auto 45px;
}
.agenda-label {
  display: inline-block;
  color: var(--isaca-blue);
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 15px;
}
.agenda-header h2 {
  font-family: var(--font-title);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  color: var(--isaca-white);
  margin-bottom: 20px;
}
.agenda-header p {
  color: var(--text-secondary);
  font-size: 1.15rem;
}
/*=========================================
 BOTÓN PDF
=========================================*/
.agenda-download {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 30px;
  padding: 14px 32px;
  border-radius: 50px;
  background:
    var(--isaca-red);
  color: white;
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition);
  box-shadow: 0 15px 35px rgba(227, 24, 55, .35);
}
.agenda-download:hover {
  background: #ff2948;
  transform: translateY(-5px);
  color: white;
  box-shadow:
    0 20px 50px rgba(0, 164, 228, .4);
}
/*=========================================
 FILTROS
=========================================*/
.agenda-filters {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 70px;
}
.agenda-filter {
  border: 1px solid rgba(255, 255, 255, .2);
  background: transparent;
  color: white;
  padding: 10px 25px;
  border-radius: 50px;
  cursor: pointer;
  transition: .3s ease;
}
.agenda-filter:hover, .agenda-filter.active {
  background: var(--isaca-blue);
  border-color: var(--isaca-blue);
  box-shadow:
    0 10px 25px rgba(0, 164, 228, .25);
}
/*=========================================
 TIMELINE
=========================================*/
.agenda-timeline {
  position: relative;
  max-width: 1100px;
  margin: auto;
}
/*
 Línea central
*/
.agenda-timeline::before {
  content: "";
  position: absolute;
  left: 130px;
  top: 0;
  bottom: 0;
  width: 3px;
  background:
    linear-gradient(180deg, transparent, rgba(0, 164, 228, .7), rgba(101, 88, 177, .7), transparent);
}
/*=========================================
 ITEM
=========================================*/
.agenda-item {
  position: relative;
  display: grid;
  grid-template-columns: 100px 60px 1fr;
  gap: 25px;
  margin-bottom: 55px;
}
/* HORA */
.agenda-time {
  color: white;
  font-size: 1.25rem;
  font-weight: 700;
  text-align: right;
  padding-top: 25px;
}
/* PUNTO */
.agenda-point {
  display: flex;
  justify-content: center;
  padding-top: 30px;
}
.agenda-point span {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--isaca-blue);
  border:
    4px solid var(--bg-dark);
  box-shadow:
    0 0 25px var(--isaca-blue);
  z-index: 2;
}
/*=========================================
 TARJETAS
=========================================*/
.agenda-card {
  position: relative;
  display: flex;
  gap: 20px;
  padding: 30px;
  border-radius: var(--radius-md);
  background:
    rgba(255, 255, 255, .06);
  border:
    1px solid rgba(255, 255, 255, .14);
  backdrop-filter: blur(10px);
  transition: var(--transition);
}
.agenda-card:hover {
  transform: translateY(-8px);
  border-color:
    var(--isaca-blue);
  box-shadow:
    var(--shadow-blue);
}
.agenda-icon {
  width: 55px;
  height: 55px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background:
    rgba(0, 164, 228, .15);
  color: var(--isaca-blue);
  font-size: 1.3rem;
}
.agenda-info h3 {
  color: white;
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 15px;
}
.agenda-info p {
  color: var(--text-secondary);
  margin-bottom: 5px;
}
/*=========================================
 KEYNOTE
=========================================*/
.keynote .agenda-card {
  border-left:
    4px solid var(--isaca-purple);
}
/*=========================================
 BREAK
=========================================*/
.break .agenda-card {
  border-left:
    4px solid var(--isaca-green);
}
/*=========================================
 SALONES
=========================================*/
.rooms-card {
  display: block;
}
.agenda-card-title {
  color: white;
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 25px;
}
.rooms-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.room-card {
  padding: 25px;
  border-radius: 20px;
  background:
    rgba(255, 255, 255, .06);
  border:
    1px solid rgba(255, 255, 255, .1);
}
.room-name {
  color: var(--isaca-blue);
  font-weight: 700;
  text-transform: uppercase;
  font-size: .8rem;
  letter-spacing: 1px;
}
.room-card h4 {
  color: white;
  font-size: 1.1rem;
  margin: 15px 0;
}
.room-card p, .room-card small {
  color: var(--text-secondary);
}
/*=========================================
 ALMUERZO
=========================================*/
.almuerzo .agenda-card {
  border-left:
    4px solid var(--isaca-purple);
}
/*=========================================
 COCKTAIL
=========================================*/
.cocktail .agenda-card {
  border-left:
    4px solid var(--isaca-red);
}
/*=========================================
 RESPONSIVE
=========================================*/
@media(max-width:768px) {
  .agenda-timeline::before {
    left: 20px;
  }
  .agenda-item {
    grid-template-columns: 40px 1fr;
    gap: 20px;
  }
  .agenda-time {
    grid-column: 1 / 3;
    text-align: left;
    padding-left: 50px;
  }
  .agenda-point {
    position: absolute;
    left: 10px;
    top: 55px;
  }
  .agenda-content {
    grid-column: 2;
  }
  .rooms-grid {
    grid-template-columns: 1fr;
  }
  .agenda-card {
    padding: 20px;
  }
}
/*=========================================
 ANIMACIÓN ENTRADA
=========================================*/
.agenda-item {
  opacity: 0;
  transform:
    translateY(40px);
  transition:
    .7s ease;
}
.agenda-item.visible {
  opacity: 1;
  transform:
    translateY(0);
}
/*=========================================
 SVG ICONS
=========================================*/
.agenda-svg-icon {
  width: 38px;
  height: 38px;
  object-fit: contain;
}
.agenda-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background:
    rgba(0, 164, 228, .12);
  border:
    1px solid rgba(0, 164, 228, .25);
}