/* ==========================================================================
   IDEAS AMAI 2026 - ESTILO MINIMALISTA PREMIUM (Ref: ChatGPT Design)
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700;800&display=swap');

:root {
    --bg-dark: #070714; /* Azul muy oscuro para Hero y Footer */
    --bg-light: #F8F9FA; /* Gris muy claro para secciones de descanso */
    --text-dark: #212529;
    --text-muted: #6c757d;
    --gradient-brand: linear-gradient(90deg, #F47C36 0%, #D82195 100%);
    --brand-pink: #D82195;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--text-dark);
    background-color: #FFFFFF;
}

/* --- NAVBAR --- */
.navbar-amai {
    background-color: var(--bg-dark);
    padding: 15px 0;
}
.navbar-amai .nav-link {
    color: #FFFFFF !important;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    margin: 0 10px;
    transition: color 0.3s ease;
}
.navbar-amai .nav-link:hover {
    color: var(--brand-pink) !important;
}

/* --- BOTONES --- */
.btn-gradient {
    background: var(--gradient-brand);
    color: #FFF !important;
    border: none;
    border-radius: 30px;
    padding: 10px 25px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.85rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.btn-gradient:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(216, 33, 149, 0.3);
}
.btn-outline-light-custom {
    border: 2px solid #FFF;
    color: #FFF;
    border-radius: 30px;
    padding: 10px 25px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.85rem;
    background: transparent;
    transition: all 0.3s ease;
}
.btn-outline-light-custom:hover {
    background: #FFF;
    color: var(--bg-dark);
}

/* --- HERO SECTION --- */
.hero-section {
    background-color: var(--bg-dark);
    color: #FFF;
    padding: 80px 0 120px 0; /* Padding inferior extra para la barra sobrepuesta */
    position: relative;
    overflow: hidden;
}
.hero-title {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
}
.text-orange {
    color: #F47C36;
}
.hero-img-container {
    position: relative;
}
.hero-img-container img {
    border-radius: 20px;
    width: 100%;
}
.floating-badge {
    position: absolute;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    color: #00F3FF;
}
.badge-1 { top: 10%; right: -20px; }
.badge-2 { top: 40%; right: -40px; color: #D82195; }
.badge-3 { bottom: 20%; right: -10px; color: #F47C36; }

/* --- STATS BAR (Sobrepuesta) --- */
.stats-bar {
    background: #FFF;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    margin-top: -60px;
    position: relative;
    z-index: 10;
    padding: 30px;
}
.stat-icon {
    font-size: 2rem;
    background: -webkit-linear-gradient(90deg, #9b51e0, #D82195);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.stat-text { font-weight: 700; font-size: 1.1rem; line-height: 1.2; }
.stat-sub { font-size: 0.8rem; color: var(--text-muted); text-transform: uppercase; font-weight: 600;}

/* --- SPEAKERS --- */
.speakers-section {
    background-color: var(--bg-light);
    padding: 80px 0;
}
.section-title {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 40px;
}
.text-purple { color: #9b51e0; }

.speaker-card {
    background: #FFF;
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    border: none;
    transition: transform 0.3s ease;
    height: 100%;
}
.speaker-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}
.speaker-img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 15px auto;
}
.speaker-name { font-weight: 600; font-size: 1.05rem; margin-bottom: 5px; }
.speaker-title { font-size: 0.85rem; color: var(--text-muted); }
.speaker-link {
    font-size: 0.8rem;
    font-weight: 700;
    color: #9b51e0;
    text-decoration: none;
    display: inline-block;
    margin-top: 15px;
}


/* /////////// Estilos card moderadores /////////// */

    .moderator-card {
        border: 2px solid #ccc;
        background-color: #fffcf2; /* Color tenue y armonioso */
    }


/*
    .moderator-card .speaker-name {
        font-size: 1.2rem;
        font-weight: bold;
    }

    .moderator-card .speaker-title {
        font-size: 1rem;
    }
*/

    .moderator-card .speaker-moderator {
        font-size: 0.8rem;
        /*color: #555;*/
        color: #dd881b;
        font-weight: bold;
        margin-top: 5px;
    }

/* /////////// FIN  Estilos card moderadores /////////// */













/* --- TIMELINE PROGRAMA (ADAPTABLE) --- */
.timeline-container {
    position: relative;
}

/* Estilos para Escritorio (Horizontal) */
@media (min-width: 768px) {
    .timeline-container {
        display: flex;
        justify-content: space-between;
        padding: 40px 0;
        position: relative;
    }
    
    /* Línea gris horizontal */
    .timeline-container::before {
        content: '';
        position: absolute;
        top: 50px; /* Centro de los círculos */
        left: 0;
        right: 0;
        height: 2px;
        background: #E9ECEF;
        z-index: 0;
    }
    
    .timeline-step {
        position: relative;
        z-index: 1;
        text-align: center;
        padding: 0 10px;
        flex: 1;
        display: block !important;
        /* SIN background: #FFF; aquí */
    }
    
    .timeline-time-wrapper {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    /* IMPORTANTE: Solo la hora tiene fondo blanco para tapar la línea */
    .timeline-time {
        font-weight: 700;
        color: var(--text-dark);
        margin-bottom: 5px;
        background: #FFF; /* ← AQUÍ está el truco */
        padding: 0 8px; /* Espacio alrededor del texto */
        display: inline-block; /* Para que el fondo solo cubra el texto */
        position: relative;
        z-index: 2; /* Asegura que esté sobre la línea */
    }
    
    .timeline-dot {
        width: 20px;
        height: 20px;
        background: #FFF;
        border: 3px solid #00F3FF;
        border-radius: 50%;
        margin: 0 auto 15px auto;
        position: relative;
        z-index: 2; /* El círculo también sobre la línea */
    }
    
    .timeline-desc {
        font-size: 0.85rem;
        color: var(--text-muted);
        background: #FFF; /* Opcional: si quieres que el texto también tape la línea */
        padding: 0 5px;
        display: inline-block;
    }
}


/* Estilos para Celulares (Vertical: hora arriba, círculo debajo y texto a la derecha) */
@media (max-width: 767.98px) {
    .timeline-container {
        display: flex;
        flex-direction: column;
        padding-left: 5px;
        position: relative;
    }
    /* Línea conectora vertical */
    .timeline-container::before {
        content: '';
        position: absolute;
        top: 10px;
        bottom: 10px;
        left: 32px;
        width: 2px;
        background: #E9ECEF;
        z-index: 1;
    }
    .timeline-step {
        position: relative;
        z-index: 2;
        display: flex;
        align-items: flex-start;
        margin-bottom: 25px;
        background: #FFF;
    }
    .timeline-step:last-child {
        margin-bottom: 0;
    }
    .timeline-time-wrapper {
        display: flex;
        flex-direction: column;
        align-items: center;
        min-width: 55px;
        margin-right: 15px;
    }
    .timeline-time {
        font-weight: 700;
        font-size: 0.85rem;
        color: var(--text-dark);
        margin-bottom: 6px;
        text-align: center;
    }
    .timeline-dot {
        width: 18px;
        height: 18px;
        background: #FFF;
        border: 3px solid #00F3FF;
        border-radius: 50%;
    }
    .timeline-desc {
        font-size: 0.9rem;
        color: var(--text-muted);
        padding-top: 2px;
    }
}

















/* --- TEMÁTICAS --- */
.theme-card {
    border: 1px solid #E9ECEF;
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    transition: all 0.3s ease;
}
.theme-card:hover {
    border-color: #9b51e0;
    box-shadow: 0 5px 15px rgba(155, 81, 224, 0.1);
}
.theme-icon { font-size: 2.5rem; color: #9b51e0; margin-bottom: 15px; }
.theme-title { font-size: 0.85rem; font-weight: 700; text-transform: uppercase; }

/* --- FORMULARIO Y FOOTER --- */
.footer-register {
    background: var(--bg-light);
    padding: 80px 0 0 0;
}
.form-control-custom {
    border: 1px solid #CED4DA;
    border-radius: 8px;
    padding: 12px 15px;
    background-color: #FFF;
    margin-bottom: 15px;
}
.form-control-custom:focus {
    border-color: var(--brand-pink);
    box-shadow: 0 0 0 0.2rem rgba(216, 33, 149, 0.1);
}
.footer-dark {
    background: var(--bg-dark);
    color: #FFF;
    padding: 40px 0;
    margin-top: 50px;
}
.footer-links a { color: #FFF; text-decoration: none; font-size: 0.85rem; margin-right: 15px; }
.social-icons a {
    color: #FFF;
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 50%;
    width: 35px; height: 35px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
}
.social-icons a:hover { background: #FFF; color: var(--bg-dark); }


.banner-vertical-limited {
    max-height: 500px; /* Ajusta este valor según necesites */
    width: auto;
    object-fit: contain;
}



/*-------------------------- COSTOS --------------------------*/


/* ==========================================================================
   COSTOS / PRICING SECTION
   ========================================================================== */

.costos-section {
    /*background: var(--bg-light);*/
    background-color: #efefef;
    padding: 80px 0 30px 0;
}

.price-card {
    background: #FFFFFF;
    border-radius: 16px;
    padding: 30px 25px 25px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
    border: 1px solid #e9ecef;
    transition: all 0.4s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.price-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

/* Tarjeta destacada */
.price-card.featured {
    border: 2px solid #9b51e0;
    box-shadow: 0 10px 30px rgba(155, 81, 224, 0.15);
    background: linear-gradient(145deg, #ffffff, #faf5ff);
}

.price-card.featured:hover {
    box-shadow: 0 20px 50px rgba(155, 81, 224, 0.25);
    transform: translateY(-10px);
}

/* Badge de categoría */
.price-badge {
    display: inline-block;
    background: #f0f0f0;
    padding: 8px 16px;          /* Reducido de 24px a 16px */
    border-radius: 50px;
    font-size: 0.85rem;         /* Reducido ligeramente de 1rem a 0.85rem */
    font-weight: 800;           
    text-transform: uppercase;
    letter-spacing: 1px;        /* Reducido de 2px a 1px para ganar espacio */
    color: #070714;             
    margin-bottom: 18px;
    border: 2px solid #e0e0e0;  
    max-width: 100%;            /* Evita que desborde */
    box-sizing: border-box;     /* Asegura que el padding no rompa el ancho */
}


.price-badge.premium {
    background: linear-gradient(90deg, #9b51e0, #D82195);
    color: #fff;
    border-color: transparent;
    box-shadow: 0 4px 15px rgba(155, 81, 224, 0.3);
}

.price-badge.premium {
    background: linear-gradient(90deg, #9b51e0, #D82195);
    color: #fff;
}

























/* Precio */
.price-amount {
    font-size: 2.6rem;
    font-weight: 800;
    color: #070714;
    line-height: 1;
    margin-bottom: 5px;
}

.price-amount span {
    font-size: 1rem;
    font-weight: 600;
    color: #6c757d;
}

.price-tax {
    font-size: 0.75rem;
    color: #6c757d;
    font-weight: 600;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #f0f0f0;
}

/* Características */
.price-features {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
    text-align: left;
    flex: 1;
}

.price-features li {
    padding: 5px 0;
    font-size: 0.85rem;
    color: #495057;
    display: flex;
    align-items: center;
    gap: 10px;
}

.price-features li i {
    font-size: 0.9rem;
    width: 18px;
    text-align: center;
    flex-shrink: 0;
}

.text-orange {
    color: #F47C36;
}

.text-purple {
    color: #9b51e0;
}

/* Botón */
.price-btn {
    display: inline-block;
    background: transparent;
    border: 2px solid #9b51e0;
    color: #9b51e0;
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-top: 5px;
    width: 100%;
}

.price-btn:hover {
    background: #9b51e0;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(155, 81, 224, 0.3);
}

.price-btn.premium-btn {
    background: linear-gradient(90deg, #9b51e0, #D82195);
    border-color: transparent;
    color: #fff;
}

.price-btn.premium-btn:hover {
    background: linear-gradient(90deg, #D82195, #9b51e0);
    box-shadow: 0 8px 25px rgba(216, 33, 149, 0.4);
}

/* Categoría debajo del botón */
.price-category {
    font-size: 0.7rem;
    color: #6c757d;
    margin-top: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Badge "MEJOR OPCIÓN" */
.featured-badge {
    position: absolute;
    top: 12px;
    right: -30px;
    background: linear-gradient(90deg, #F47C36, #D82195);
    color: #fff;
    font-size: 0.6rem;
    font-weight: 700;
    padding: 4px 30px;
    transform: rotate(45deg);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.featured-badge i {
    margin-right: 4px;
}

/* Responsive */
@media (max-width: 992px) {
    .price-card {
        padding: 25px 20px;
    }
    
    .price-amount {
        font-size: 2.2rem;
    }
    
    .price-features li {
        font-size: 0.8rem;
    }
}

@media (max-width: 576px) {
    .costos-section {
        padding: 60px 0;
    }
    
    .price-card {
        padding: 20px 15px;
    }
    
    .price-amount {
        font-size: 2rem;
    }
    
    .price-features li {
        font-size: 0.75rem;
        padding: 4px 0;
    }
    
    .price-btn {
        font-size: 0.75rem;
        padding: 8px 20px;
    }
    
    .featured-badge {
        font-size: 0.5rem;
        padding: 3px 25px;
        top: 10px;
        right: -25px;
    }
}


/*-------------------------- FIN COSTOS --------------------------*/









/*-------------------------- FUNCIONAMIENTO Panel derecho PONENTES  --------------------------*/

/* Overlay con efecto blur */
.panel-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(1px); /* efecto moderno */
  -webkit-backdrop-filter: blur(4px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
  z-index: 9998;
}

.panel-overlay.show {
  opacity: 1;
  visibility: visible;
}

/* Panel lateral base (desktop) */
.info-panel {
  position: fixed;
  top: 0;
  right: -100%;
  width: 400px;
  max-width: 100%;
  height: 100%;
  background: #fff;
  box-shadow: -2px 0 12px rgba(0, 0, 0, 0.25);
  transition: right 0.4s ease;
  z-index: 9999;
}

/* Contenido desplazable dentro del panel */
.info-panel-content {
  height: 100%;
  overflow-y: auto;
  padding: 20px;
  position: relative;
}

/* BotÃ³n de cerrar */
.close-panel {
  position: absolute;
  top: 12px;
  right: 14px;
  border: none;
  background: transparent;
  font-size: 28px;
  cursor: pointer;
  color: #333;
  z-index: 9999;
}

/* Panel visible */
.info-panel.open {
  right: 0;
}

/* En pantallas mÃ³viles: deslizamiento desde abajo */
@media (max-width: 768px) {
  .info-panel {
    top: 100%;
    right: 0;
    width: 100%;
    height: 100%;
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
    transition: top 0.4s ease;
  }

  .info-panel.open {
    top: 0;
  }
}

.panel-grabber {
  width: 40px;
  height: 5px;
  background-color: #ccc;
  border-radius: 10px;
  margin: 10px auto 0 auto;
  cursor: grab;
}

@media (min-width: 769px) {
  .panel-grabber {
    display: none;
  }
}


.add-buttonConta {
  position: fixed;
  bottom: 30px;          /* 30px desde abajo */
  left: 50%;             /* Centrar horizontalmente */
  transform: translateX(-50%);
  
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  
  background: none;
  border: none;
  font-family: sans-serif;
  font-size: 16px;
  color: #333;
  z-index: 1000;         /* Para que quede encima del contenido */
}

.circle-iconConta {
  width: 48px; /* un poco mÃ¡s grande para mejor visibilidad */
  height: 48px;
  border-radius: 50%;
  background-color: #007bff;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 22px;
  transition: background-color 0.3s, box-shadow 0.3s;
  
  /* Sombra + contorno blanco */
  box-shadow: 0 4px 8px rgba(0,0,0,0.25);
  border: 2px solid rgba(255,255,255,0.9);
}
.add-buttonConta:hover .circle-iconConta {
  background-color: #0056b3;
  box-shadow: 0 6px 12px rgba(0,0,0,0.35);
}

/*----------------------------------------------------*/




/*-------------------------- FUNCIONAMIENTO Panel derecho PROGRAMA --------------------------*/

/* Overlay con efecto blur para PROGRAMA */
.panel-overlay-programa {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(1px);
  -webkit-backdrop-filter: blur(4px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
  z-index: 9998;
}

.panel-overlay-programa.show {
  opacity: 1;
  visibility: visible;
}

/* Panel lateral base (desktop) para PROGRAMA */
.info-panel-programa {
  position: fixed;
  top: 0;
  right: -100%;
  width: 400px;
  max-width: 100%;
  height: 100%;
  background: #fff;
  box-shadow: -2px 0 12px rgba(0, 0, 0, 0.25);
  transition: right 0.4s ease;
  z-index: 9999;
}

/* Contenido desplazable dentro del panel PROGRAMA */
.info-panel-content-programa {
  height: 100%;
  overflow-y: auto;
  padding: 20px;
  position: relative;
}

/* Botón de cerrar para PROGRAMA */
.closeProg-panel {
  position: absolute;
  top: 12px;
  right: 14px;
  border: none;
  background: transparent;
  font-size: 28px;
  cursor: pointer;
  color: #333;
  z-index: 9999;
}

/* Panel visible para PROGRAMA */
.info-panel-programa.open {
  right: 0;
}

/* En pantallas móviles: deslizamiento desde abajo para PROGRAMA */
@media (max-width: 768px) {
  .info-panel-programa {
    top: 100%;
    right: 0;
    width: 100%;
    height: 100%;
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
    transition: top 0.4s ease;
  }

  .info-panel-programa.open {
    top: 0;
  }
}

/* Grabber para móvil PROGRAMA */
.panel-grabber-programa {
  width: 40px;
  height: 5px;
  background-color: #ccc;
  border-radius: 10px;
  margin: 10px auto 0 auto;
  cursor: grab;
}

@media (min-width: 769px) {
  .panel-grabber-programa {
    display: none;
  }
}


























/*-------------------------- Panel derecho / Ponentes --------------------------*/
    /* ===== ESTILOS DEL PERFIL DEL PONENTE ===== */
    .ponente-profile {
        padding: 10px 0;
        color: #212529;
    }

    /* CABECERA */
    .profile-header {
        display: flex;
        align-items: center;
        gap: 20px;
        padding: 20px 0 25px 0;
        border-bottom: 2px solid #f0f0f0;
        margin-bottom: 25px;
    }


    .profile-header-Programa {
        display: flex;
        align-items: center;
        gap: 20px;
        padding: 20px 0 25px 0;
        border-bottom: 2px solid #f0f0f0;
        margin-bottom: 6px;
    }


    .profile-avatar-wrapper {
        flex-shrink: 0;
    }

    .profile-avatar {
        width: 100px;
        height: 100px;
        border-radius: 50%;
        object-fit: cover;
        border: 4px solid #9b51e0;
        box-shadow: 0 8px 20px rgba(155, 81, 224, 0.2);
    }

    .profile-avatar-placeholder {
        width: 100px;
        height: 100px;
        border-radius: 50%;
        background: linear-gradient(135deg, #9b51e0, #D82195);
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        font-size: 40px;
        border: 4px solid #9b51e0;
        box-shadow: 0 8px 20px rgba(155, 81, 224, 0.2);
    }

    .profile-name-wrapper {
        flex: 1;
        min-width: 0;
    }

    .profile-name {
        font-size: 1.6rem;
        font-weight: 800;
        color: #070714;
        margin: 0 0 5px 0;
        line-height: 1.2;
    }

    .profile-company {
        font-size: 0.95rem;
        color: #6c757d;
        margin: 0;
        font-weight: 600;
    }

    .profile-company i {
        color: #9b51e0;
    }

    /* SECCIONES */
    .profile-section {
        margin-bottom: 25px;
    }

    .profile-section-title {
        font-size: 1rem;
        font-weight: 700;
        color: #070714;
        margin-bottom: 12px;
        display: flex;
        align-items: center;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

    .profile-section-title .text-purple {
        color: #9b51e0;
    }

    .profile-biography {
        font-size: 1.05rem;        /* Aumentado de 0.95rem a 1.05rem */
        line-height: 1.8;          /* Aumentado ligeramente para mejor legibilidad */
        text-align: justify;       /* Texto justificado a los lados */
        color: #495057;
        background: #f8f9fa;
        padding: 20px 24px;        /* Aumentado el padding para mejor respiración */
        border-radius: 12px;
        border-left: 4px solid #9b51e0;
        word-spacing: 0.5px;       /* Pequeño espacio entre palabras para mejor justificación */
        hyphens: auto;             /* Permite guiones automáticos para mejor justificación */
    }

    /* ===== REDES SOCIALES - ESTILOS CORREGIDOS ===== */
    .profile-social {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
        margin-top: 5px;
    }

    .social-link {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        padding: 8px 16px;
        background: #f8f9fa;
        border-radius: 50px;
        color: #212529;
        text-decoration: none;
        font-size: 0.85rem;
        font-weight: 600;
        transition: all 0.3s ease;
        border: 1px solid #e9ecef;
    }

    .social-link:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 15px rgba(0,0,0,0.1);
        color: white !important;
        border-color: transparent;
    }

    .social-link i {
        font-size: 1rem;
        transition: transform 0.3s ease;
    }

    .social-link:hover i {
        transform: scale(1.1);
    }

    /* Colores específicos para cada red social */
    .twitter-link:hover {
        background: #1DA1F2;
    }

    .linkedin-link:hover {
        background: #0A66C2;
    }

    .instagram-link:hover {
        background: #E4405F;
    }

    .tiktok-link:hover {
        background: #000000;
    }

    /* Responsive */
    @media (max-width: 576px) {
        .profile-header {
            flex-direction: column;
            text-align: center;
            gap: 15px;
        }


        .profile-header-Programa {
            flex-direction: column;
            text-align: center;
            gap: 15px;
        }

        .profile-name {
            font-size: 1.4rem;
        }

        .profile-avatar,
        .profile-avatar-placeholder {
            width: 80px;
            height: 80px;
        }

        .profile-social {
            justify-content: center;
        }

        .social-link {
            padding: 6px 14px;
            font-size: 0.8rem;
        }

        .profile-biography {
            font-size: 0.9rem;
            padding: 15px;
        }
    }

    /* Ajustes para el panel */
    .info-panel-content {
        padding: 20px;
    }

    /* Scrollbar personalizado */
    .info-panel-content::-webkit-scrollbar {
        width: 6px;
    }

    .info-panel-content::-webkit-scrollbar-track {
        background: #f1f1f1;
        border-radius: 10px;
    }

    .info-panel-content::-webkit-scrollbar-thumb {
        background: #9b51e0;
        border-radius: 10px;
    }

    .info-panel-content::-webkit-scrollbar-thumb:hover {
        background: #D82195;
    }







/*----------------------------------------------------*/










/* ////////////////////// Estilos FORMAS DE PAGO ///////////////////// */


/* BOTÓN FORMAS DE PAGO */ 

/* --- Contenedor (Mantiene el centrado) --- */
.btn-formas-pago-container {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 50px; /* Un poco más de espacio arriba */
  margin-bottom: 30px;
  width: 100%;
}

/* --- EL NUEVO BOTÓN LLAMATIVO Y GRANDE --- */
.btn-amai-destacado {
  /* Degradado con los morados del sitio */
  background: linear-gradient(135deg, #9D4EDD 0%, #7B2CBF 100%);
  color: #FFFFFF; /* Texto blanco para contraste */
  
  /* Más grande y robusto */
  border: none; /* Quitamos el borde simple */
  border-radius: 50px; /* Bordes muy redondeados */
  padding: 18px 45px; /* Más 'aire' interno (padding) */
  font-size: 1.15rem; /* Fuente un poco más grande */
  font-weight: 700; /* Texto en negrita */
  text-transform: uppercase; /* Todo en mayúsculas para más fuerza */
  letter-spacing: 1px; /* Espaciado entre letras moderno */
  
  /* Efectos y Sombra */
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(123, 44, 191, 0.4); /* Sombra lila/morada suave */
  transition: all 0.3s ease-in-out; /* Animación suave */
  outline: none;
  
  /* Para asegurar que se comporte como bloque centrado */
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* --- Efecto Hover (Al pasar el mouse) --- */
.btn-amai-destacado:hover {
  /* Oscurecemos un poco el degradado */
  background: linear-gradient(135deg, #7B2CBF 0%, #5A189A 100%);
  
  /* Aumentamos la sombra para efecto de elevación */
  box-shadow: 0 8px 25px rgba(90, 24, 154, 0.5);
  
  /* Pequeño efecto de escala */
  transform: translateY(-2px);
}

/* --- Estado Activo (Cuando el panel está abierto) --- */
.btn-amai-destacado.activo {
  background: #5A189A; /* Un morado más oscuro fijo */
  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.2); /* Sombra interna presionado */
  transform: translateY(1px); /* Baja un píxel */
}

/* FIN BOTÓN FORMAS DE PAGO */ 









/* Contenedor general (Ahora con fondo blanco y sombras suaves) */
  .formas-pago-container {
    max-width: 850px;
    margin: 0 auto;
    padding: 25px;
    background-color: #ffffff;
    color: #444444; /* Gris oscuro para lectura cómoda */
    /*font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;*/
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08); /* Sombra más sutil y moderna */
    border: 1px solid #eaeaea;
  }

  /* Título alineado al color morado/morado oscuro del botón */
  .titulo-FormasPago {
    text-align: center;
    color: #000; /* Casi negro para el título principal */
    /*font-size: 1.8rem;
    font-weight: 700;*/
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-bottom: 2px solid #7B2CBF; /* Línea morada acorde al diseño */
    padding-bottom: 10px;
  }

  /* Tabla de Pago Limpia */
  .tabla-responsive {
    overflow-x: auto;
    margin-bottom: 15px;
  }

  .tabla-pago {
    width: 100%;
    border-collapse: collapse;
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #e9ecef;
  }

  .tabla-pago td {
    padding: 14px 18px;
    border-bottom: 1px solid #e9ecef;
    font-size: 0.95rem;
  }

  .tabla-pago tr:last-child td {
    border-bottom: none;
  }

  /* Columna izquierda con un sutil fondo gris para separar */
  .tabla-pago .metodo {
    width: 30%;
    color: #212529;
    background-color: #f8f9fa;
    font-weight: 700;
  }

  .tabla-pago .detalle {
    color: #495057;
  }

  /* Estilo para los números de cuenta y CLABE */
  .tabla-pago code {
    background: #f1f3f5;
    padding: 3px 8px;
    border-radius: 4px;
    color: #7B2CBF; /* Resaltado en el morado de la identidad */
    font-family: monospace;
    font-size: 1rem;
    font-weight: bold;
  }

  /* Nota del Comprobante (Fondo azul claro muy sutil con texto oscuro) */
  .nota-comprobante {
    background-color: #e7f5ff;
    border-left: 4px solid #228be6;
    padding: 14px 16px;
    border-radius: 4px;
    font-size: 0.95rem;
    color: #1c7ed6;
    margin-bottom: 25px;
    font-weight: 500;
  }

  .nota-comprobante a {
    color: #1c7ed6;
    text-decoration: underline;
    font-weight: 700;
  }

  .nota-comprobante a:hover {
    color: #102a43;
  }

  /* Tarjeta de Políticas en gris claro */
  .card-politicas {
    background-color: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    padding: 24px;
    font-size: 0.95rem;
    line-height: 1.6;
  }

  .card-politicas h3 {
    color: #c92a2a; /* Rojo oscuro elegante para alertas/políticas */
    margin-top: 0;
    margin-bottom: 14px;
    font-size: 1.25rem;
    font-weight: 700;
  }

  .card-politicas ul {
    margin: 10px 0 15px 20px;
    padding: 0;
  }

  .card-politicas li {
    margin-bottom: 8px;
    color: #495057;
  }
  
  .card-politicas a {
    color: #7B2CBF;
    text-decoration: none;
    font-weight: 600;
  }
  
  .card-politicas a:hover {
    text-decoration: underline;
  }

  /* Cuadro de aviso (Fondo amarillo/ocre claro con bordes definidos) */
  .alert-info {
    background-color: #fff9db;
    border: 1px solid #ffe066;
    color: #92400e; /* Texto marrón/oscuro para contraste seguro y accesible */
    padding: 12px 16px;
    border-radius: 6px;
    margin: 18px 0;
    font-size: 0.9rem;
  }

  .alert-info p {
    margin: 6px 0;
  }

  /* Texto de penalización por cancelación */
  .cancelacion-no {
    color: #c92a2a;
    margin-top: 15px;
  }

  .modalidad-nota {
    display: block;
    margin-top: 15px;
    color: #868e96;
    font-style: italic;
    text-align: center;
  }

/* ////////////////////// FIN Estilos FORMAS DE PAGO ///////////////////// */



/* ////////////////////////////// Estilos Registro ///////////////////// */
.DiVerifico {
    background-color: #d1f0ff;
    padding: 20px;
}

.SubTitRegistro {
    color: #001149;
    font-weight: bold;
    font-size: 22px;
}

@media (max-width: 800px)  {
    .SubTitRegistro {
        font-size: 20px;
    }
}



.divAvisosReg {
    background-color: #f1f1f1;
    padding: 15px;
}



.divAvisosReg2 {
    background-color: #dfeaef;
    padding: 15px;
}

.RegTextCh {
    font-size: 13px !important;
    line-height: 1.5;
}

.divAvisosNota {
    background-color: #ffdbdb;
    padding: 15px;
    color: #9e1616;
}



/* ////////////////////////////// FIN Estilos Registro ///////////////////// */









/* Notas 
-------------------------------------------------- */


/* Notification box */
.cm-notification-container {
    position: fixed;
    top: 0;
    right: 50px;
    width: 40%;
    z-index: 4000;
    min-width: 300px;
}
.notification-content {
    position: relative;
    z-index: 10;
}
.notification-w, .notification-n, .notification-e {
    position: relative;
    margin: 7px 0 7px 0;
    padding: 14px 0;
    border: 1px solid;
    background-position: 16px 12px !important;
    background-repeat: no-repeat !important;
    font-size: 100%; /* Con este tamaño le cambie el tamaño del aviso amarillo, estaba en 100 */
    width: 100%;
    line-height: 25px;
    opacity: 0.96;
    -moz-border-radius: 6px;
    -webkit-border-radius: 6px;
    border-radius: 6px;
}
.notification-w div, .notification-n div, .notification-e div {
    display: block;
    padding-left: 50px;
    padding-right: 20px;
}
.notification-header-w, .notification-header-n, .notification-header-e {
    font-size: 110%;
    font-weight: bold;
    line-height: 25px;
    float: left;
    margin: 0 10px 0 0;
    padding-right: 0 !important;
    color: #c52a01;
}
.notification-w img, .notification-n img, .notification-e img {
    outline: 0;
    border: 0;
}
.notification-w p, .notification-n p, .notification-e p {
    margin: 0;
    color: #8c8531;
}
.notification-n p {
    color: #496e16;
}
.notification-e p {
    color: #9c3535;
}
.notification-body a, .notification-body a:visited, .notification-body a:hover, .notification-body a:active {
    font-size: 85%;
}
.notification-n {
    background: #d0eaae url('../images/notice.png');
    border-color: #8bc045;
    min-height: 15px;
}
.notification-n div {
    color: #496e16;
}
.notification-w {
    background: #fffbcc url('../images/warning.png');
    border-color: #e6db55;
    min-height: 15px;
}
.notification-w div {
    color: #8c8531;
}
.notification-e {
    background: #ffcece url('../images/error.png');
    border-color: #df8f8f;
    min-height: 15px;
}
.notification-e div {
    color: #9c3535;
}
.notification-header-n {
    color: #668c34;
}
.notification-header-w {
    color: #bfa615;
}
.cm-notification-close {
    font-size: 50%;
    position: absolute;
    right: 5px;
    top: 5px;
}

/* /Notification box */






/* ///////////////////////////////// Estilos del programa ///////////////////////////// */

    
    :root {
      --primary: #bd1865;
      --primary-gradient: linear-gradient(135deg, #a01353 0%, #d81b76 100%);
      --accent: #f47820;
      --bg-light: #f8f9fa;
      --card-bg: #ffffff;
      --text-main: #222222;
      --text-muted: #666666;
      --border-color: #eee;
    }
/*
    body {
      font-family: 'Montserrat', sans-serif;
      background-color: var(--bg-light);
      color: var(--text-main);
      margin: 0;
      padding: 40px 20px;
    }
*/
    .program-container {
      max-width: 900px;
      margin: 0 auto;
    }

    .program-header {
      text-align: center;
      margin-bottom: 40px;
    }

    .program-title {
      font-size: 2.5rem;
      font-weight: 800;
      color: var(--primary);
      text-transform: uppercase;
      letter-spacing: 1px;
      margin-bottom: 10px;
    }

    .btn-pdf {
      display: inline-block;
      background: var(--accent);
      color: #fff;
      padding: 10px 24px;
      border-radius: 30px;
      text-decoration: none;
      font-weight: 600;
      font-size: 0.9rem;
      transition: transform 0.2s, background 0.2s;
      box-shadow: 0 4px 12px rgba(244, 120, 32, 0.3);
    }

    .btn-pdf:hover {
      transform: translateY(-2px);
      background: #e06712;
    }

    /* Bloques conceptuales */
    .section-banner {
      background: var(--primary-gradient);
      color: white;
      padding: 16px 24px;
      border-radius: 12px;
      font-size: 1.2rem;
      font-weight: 700;
      margin: 40px 0 20px 0;
      text-transform: uppercase;
      letter-spacing: 0.5px;
      box-shadow: 0 4px 15px rgba(189, 24, 101, 0.2);
    }

    /* Tarjetas de eventos */
    .timeline-card {
      background: var(--card-bg);
      border-radius: 12px;
      padding: 20px;
      margin-bottom: 16px;
      display: grid;
      grid-template-columns: 100px 1fr 220px;
      align-items: center;
      gap: 20px;
      border-left: 5px solid var(--primary);
      box-shadow: 0 2px 8px rgba(0,0,0,0.04);
      transition: transform 0.2s, box-shadow 0.2s;
    }

    .timeline-card:hover {
      transform: translateY(-2px);
      box-shadow: 0 6px 16px rgba(0,0,0,0.08);
    }

    .timeline-card.break {
      border-left-color: var(--accent);
      background: #fff8f3;
    }

    .time {
      font-weight: 700;
      font-size: 1.1rem;
      color: var(--primary);
      white-space: nowrap;
    }

    .timeline-card.break .time {
      color: var(--accent);
    }

    .link-prog {
      font-size: 1.05rem;
      font-weight: 600;
      color: var(--text-main);
      text-decoration: none;
      line-height: 1.4;
    }

    .link-prog:hover {
      color: var(--primary);
    }







    .speaker-box {
      display: flex;
      align-items: center;
      gap: 12px;
      border-left: 1px solid var(--border-color);
      padding-left: 15px;
    }

    .speaker-avatar {
      width: 48px;
      height: 48px;
      border-radius: 50%;
      object-fit: cover;
      border: 2px solid var(--primary);
      flex-shrink: 0;
    }

    .speaker-info {
      font-size: 0.85rem;
    }

    .speaker-name {
      font-weight: 600;
      color: var(--text-main);
      display: block;
    }

    .speaker-company {
      color: var(--text-muted);
    }

    /* Soporte para múltiples ponentes (3 o 4) */
    .timeline-card.multi-speaker {
      grid-template-columns: 100px 1fr 320px;
    }

    .speakers-grid {
      display: flex;
      flex-wrap: wrap;
      gap: 10px 14px;
      border-left: 1px solid var(--border-color);
      padding-left: 15px;
      justify-content: flex-start;
    }

    .speaker-item {
      display: flex;
      align-items: center;
      gap: 8px;
      width: calc(50% - 7px);
      box-sizing: border-box;
    }

    .speaker-item .speaker-avatar {
      width: 36px;
      height: 36px;
    }

    .speaker-item .speaker-info {
      font-size: 0.78rem;
    }

    /* Mobile Responsive */
    @media (max-width: 768px) {
      .timeline-card, .timeline-card.multi-speaker {
        grid-template-columns: 1fr;
        gap: 12px;
      }
      .speaker-box, .speakers-grid {
        border-left: none;
        padding-left: 0;
        border-top: 1px solid var(--border-color);
        padding-top: 12px;
      }
      .speaker-item {
        width: 100%;
      }
    }

/* ///////////////////////////////// FIN Estilos del programa ///////////////////////////// */



/* ///////////////////////////////// Estilos de Sinopsis ///////////////////////////// */

/*-------------------------- Estilos corregidos para Sinopsis de Ponencia --------------------------*/

    .ponencia-header {
        padding: 10px 0 10px 0;
        border-bottom: 2px solid #f0f0f0;
        margin-bottom: 5px;  /* Margen reducido */
        text-align: left;
    }

    .ponencia-main-title {
        font-size: 1.5rem;
        font-weight: 800;
        color: #070714;
        margin: 0;
        line-height: 1.3;
    }

    /* Sección de ponentes sin fondo y separada por borde gris al fondo */
    .ponencia-speakers-section {
        margin-bottom: 15px; /* Reducido para acortar distancia con el link de retorno */
        padding-bottom: 15px;
        border-bottom: 2px solid #f0f0f0;
    }

    .ponencia-speakers-row {
        display: flex;
        flex-wrap: wrap;
        gap: 15px;
        justify-content: flex-start;
    }

    .ponencia-speaker-card {
        display: flex;
        align-items: center;
        gap: 12px;
        flex: 1;
        min-width: 150px;
        background: transparent; 
        padding: 4px 0;
    }

    .ponencia-avatar-wrapper {
        flex-shrink: 0;
    }

    /* Fotos estrictamente circulares */
    .ponencia-avatar {
        width: 44px;
        height: 44px;
        aspect-ratio: 1 / 1;
        border-radius: 50%;
        object-fit: cover;
        border: 2px solid #9b51e0;
        box-shadow: 0 4px 10px rgba(155, 81, 224, 0.15);
        display: block;
    }

    .ponencia-speaker-info {
        font-size: 0.8rem;
        min-width: 0;
    }

    .ponencia-speaker-name {
        font-weight: 600;
        color: #070714;
        display: block;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .ponencia-speaker-company {
        color: #6c757d;
        font-size: 0.75rem;
        display: block;
        font-weight: 600;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    /* Subtítulos dentro de la caja de sinopsis/biografía (sin iconos) */
    .biography-subtitle {
        font-size: 1rem;
        font-weight: 700;
        color: #070714;
        margin-top: 15px;
        margin-bottom: 8px;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

    .biography-subtitle:first-child {
        margin-top: 0;
    }

    /* Responsivo para móviles */
    @media (max-width: 768px) {
        .ponencia-speakers-row {
            flex-direction: column;
            gap: 12px;
        }
        .ponencia-speaker-card {
            width: 100%;
        }
        .ponencia-main-title {
            font-size: 1.3rem;
        }
    }
/* ///////////////////////////////// Fin Estilos de Sinopsis ///////////////////////////// */





/* ////////////////////////////// --- Sección Manifiesto (Fondo Claro) ---  ////////////////// */
.manifesto-section-light {
  padding-top: 50px;
  padding-right: 20px;
  padding-bottom: 20px;
  padding-left: 20px;
  background-color: #FFF; /* Fondo general limpio y claro para la sección */
  display: flex;
  justify-content: center;
  align-items: center;
}

.manifesto-card-light {
  max-width: 900px;
  margin: 0 auto;
  padding: 40px;
  background: #f3f3f3; /* Fondo completamente blanco para la tarjeta */
  border: 1px solid #e2e8f0; /* Borde gris claro elegante */
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04); /* Sombra sutil y difuminada */
  text-align: center;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.manifesto-card-light:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.manifesto-text-light {
  color: #2d3748; /* Gris oscuro con alta legibilidad sobre fondo blanco */
  font-size: 1.3rem;
  line-height: 1.7;
  font-weight: 400;
  margin: 0;
}

/* Énfasis en la frase clave ajustado para fondos claros */
.highlight-text-light {
  color: #F47C36;
  font-weight: 700;

}

/* --- Adaptabilidad Responsiva --- */
@media (max-width: 768px) {
  .manifesto-section-light {
    padding: 35px 15px;
  }

  .manifesto-card-light {
    padding: 25px 20px;
  }

  .manifesto-text-light {
    font-size: 1.1rem;
    line-height: 1.6;
  }
}


/* ////////////////////////////// --- Sección Manifiesto (Fondo Claro) ---  ////////////////// */

