/* ==========================================================================
   MIZTON PRESENTATION - ESTILOS ESPECÍFICOS
   Extiende ../css/presentation.css
   ========================================================================== */

/* --------------------------------------------------------------------------
   0. TRANSICIONES FADE ENTRE SLIDES
   -------------------------------------------------------------------------- */
.slide {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.6s ease-in-out, visibility 0.6s ease-in-out;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.slide.active {
    opacity: 1;
    visibility: visible;
    position: relative;
}

/* Fade específico para contenido dentro de slides */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.slide.active .fade-in {
    opacity: 1;
    transform: translateY(0);
}

.slide.active .fade-in.delay-1 { transition-delay: 0.1s; }
.slide.active .fade-in.delay-2 { transition-delay: 0.3s; }
.slide.active .fade-in.delay-3 { transition-delay: 0.5s; }

/* --------------------------------------------------------------------------
   1. LOGO Y ENCABEZADO
   -------------------------------------------------------------------------- */
.logo-container {
    margin-bottom: 20px;
}

.logo-icon {
    font-size: 4rem;
    display: block;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

.intro-tagline {
    margin: 20px 0;
    text-align: center;
}

.intro-tagline p {
    font-size: 1.3rem;
    margin: 10px 0;
}

.highlight-text {
    color: #00e5ff;
    font-weight: 700;
    font-size: 1.5rem !important;
    text-shadow: 0 0 20px rgba(0, 229, 255, 0.5);
}

/* --------------------------------------------------------------------------
   2. DISCLAIMER
   -------------------------------------------------------------------------- */
.warning-box {
    background: rgba(239, 68, 68, 0.1);
    border: 2px solid rgba(239, 68, 68, 0.5);
    border-radius: 16px;
    padding: 20px;
    margin-top: 20px;
}

.warning-box h3 {
    color: #ef4444;
    text-align: center;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.disclaimer-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.disclaimer-list li {
    padding: 8px 0;
    border-bottom: 1px solid rgba(239, 68, 68, 0.2);
    font-size: 0.95rem;
}

.disclaimer-list li:last-child {
    border-bottom: none;
}

/* --------------------------------------------------------------------------
   3. VISUAL RWA
   -------------------------------------------------------------------------- */
.rwa-visual {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin: 20px 0;
}

.rwa-center {
    text-align: center;
}

.rwa-icon {
    font-size: 3.5rem;
    display: block;
    margin-bottom: 10px;
}

.rwa-label {
    font-size: 1.3rem;
    font-weight: 700;
    color: #00e5ff;
}

.rwa-arrows {
    display: flex;
    gap: 30px;
}

.arrow {
    font-size: 1.5rem;
    color: #00e5ff;
    animation: bounce 1s ease-in-out infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.rwa-tokens {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.token-item {
    background: rgba(0, 229, 255, 0.1);
    border: 2px solid rgba(0, 229, 255, 0.3);
    border-radius: 12px;
    padding: 15px 25px;
    text-align: center;
    transition: all 0.3s ease;
}

.token-item:hover {
    transform: translateY(-5px);
    border-color: #00e5ff;
    box-shadow: 0 10px 30px rgba(0, 229, 255, 0.3);
}

.token-icon {
    font-size: 2rem;
    display: block;
    margin-bottom: 8px;
}

/* --------------------------------------------------------------------------
   4. PROYECCIÓN BCG
   -------------------------------------------------------------------------- */
.projection-visual {
    margin: 30px 0;
    text-align: center;
}

.projection-year {
    background: linear-gradient(135deg, rgba(0, 229, 255, 0.1) 0%, rgba(224, 64, 251, 0.1) 100%);
    border: 2px solid rgba(0, 229, 255, 0.5);
    border-radius: 20px;
    padding: 30px;
}

.year {
    font-size: 3rem;
    font-weight: 700;
    color: #00e5ff;
    text-shadow: 0 0 30px rgba(0, 229, 255, 0.5);
}

.projection-bar {
    width: 100%;
    height: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    margin: 20px 0;
    overflow: hidden;
}

.bar-fill {
    height: 100%;
    width: 80%;
    background: linear-gradient(90deg, #00e5ff 0%, #e040fb 100%);
    border-radius: 10px;
    animation: fillBar 2s ease-out;
}

@keyframes fillBar {
    from { width: 0; }
    to { width: 80%; }
}

.amount {
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
}

.actors-grid {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    margin: 20px 0;
}

.actor-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 15px 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.actor-card:hover {
    background: rgba(0, 229, 255, 0.1);
    border-color: rgba(0, 229, 255, 0.3);
}

.actor-icon {
    font-size: 1.8rem;
}

/* --------------------------------------------------------------------------
   5. VISIÓN GRID
   -------------------------------------------------------------------------- */
.vision-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin: 20px 0;
}

.vision-card {
    background: rgba(0, 229, 255, 0.05);
    border: 1px solid rgba(0, 229, 255, 0.2);
    border-radius: 16px;
    padding: 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.vision-card:hover {
    transform: translateY(-5px);
    border-color: #00e5ff;
    box-shadow: 0 10px 30px rgba(0, 229, 255, 0.2);
}

.vision-icon {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.vision-card h3 {
    color: #00e5ff;
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.vision-card p {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* --------------------------------------------------------------------------
   6. MODELO DIAGRAMA
   -------------------------------------------------------------------------- */
.model-diagram {
    position: relative;
    width: 300px;
    height: 300px;
    margin: 20px auto;
}

.model-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 15;
    background: linear-gradient(135deg, #00e5ff 0%, #e040fb 100%);
    border-radius: 50%;
    width: 100px;
    height: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 40px rgba(0, 229, 255, 0.5);
}

.model-icon {
    font-size: 2rem;
}

.model-label {
    font-size: 0.8rem;
    font-weight: 700;
    color: #fff;
}

.model-ring {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.model-point {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 90px;
    height: 90px;
    margin: -45px 0 0 -45px;
    transform: rotate(calc(var(--i) * 90deg)) translateX(120px) rotate(calc(var(--i) * -90deg));
    text-align: center;
    background: rgba(10, 10, 26, 0.95);
    border: 2px solid rgba(0, 229, 255, 0.5);
    border-radius: 12px;
    padding: 8px 12px;
    font-size: 0.75rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 1;
    box-sizing: border-box;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.model-point span:first-child {
    font-size: 1.5rem;
    display: block;
    margin-bottom: 4px;
}

/* --------------------------------------------------------------------------
   7. PAQUETE VISUAL
   -------------------------------------------------------------------------- */
.package-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin: 30px 0;
    flex-wrap: wrap;
}

.package-box {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 30px 40px;
    text-align: center;
    transition: all 0.3s ease;
}

.package-box.highlight {
    background: rgba(0, 229, 255, 0.1);
    border-color: #00e5ff;
    box-shadow: 0 0 30px rgba(0, 229, 255, 0.3);
}

.package-price {
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
}

.package-tokens {
    font-size: 1.3rem;
    color: #00e5ff;
    margin: 10px 0;
}

.package-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
}

.package-arrow {
    font-size: 2rem;
    color: #00e5ff;
}

.fast-active-info {
    background: rgba(0, 229, 255, 0.1);
    border: 1px solid rgba(0, 229, 255, 0.3);
    border-radius: 16px;
    padding: 20px;
    margin: 20px 0;
}

.fast-active-info h4 {
    color: #00e5ff;
    margin-bottom: 15px;
    text-align: center;
}

.fast-active-info ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.fast-active-info li {
    padding: 8px 0;
    border-bottom: 1px solid rgba(0, 229, 255, 0.1);
}

.fast-active-info li:last-child {
    border-bottom: none;
}

.warning-text {
    text-align: center;
    color: #fbbf24;
    font-size: 0.95rem;
    margin-top: 20px;
    font-style: italic;
}

/* --------------------------------------------------------------------------
   8. POOL VISUAL
   -------------------------------------------------------------------------- */
.pool-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    margin: 30px 0;
    flex-wrap: wrap;
}

.pool-container {
    position: relative;
    width: 200px;
    height: 200px;
    background: linear-gradient(180deg, rgba(0, 229, 255, 0.3) 0%, rgba(0, 229, 255, 0.6) 100%);
    border: 3px solid #00e5ff;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 40px rgba(0, 229, 255, 0.4);
    overflow: hidden;
}

.pool-liquid {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 70%;
    background: linear-gradient(180deg, rgba(0, 229, 255, 0.6) 0%, #00e5ff 100%);
    animation: liquidWave 3s ease-in-out infinite;
}

@keyframes liquidWave {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

.pool-label {
    position: relative;
    z-index: 10;
    font-size: 1.3rem;
    font-weight: 700;
    color: #fff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.pool-sublabel {
    position: relative;
    z-index: 10;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
}

.pool-tokens {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.pool-token-flow {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 15px 20px;
}

.pool-token-flow span:first-child {
    font-size: 1.5rem;
}

.flow-arrow {
    font-size: 1.2rem;
    color: #00e5ff;
}

.pool-strategy {
    background: rgba(0, 229, 255, 0.1);
    border: 1px solid rgba(0, 229, 255, 0.3);
    border-radius: 16px;
    padding: 20px;
    text-align: center;
    margin-top: 20px;
}

.pool-strategy h4 {
    color: #00e5ff;
    margin-bottom: 10px;
}

/* --------------------------------------------------------------------------
   9. FORMACIÓN POOL
   -------------------------------------------------------------------------- */
.pool-formation {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    margin: 20px 0;
}

.formation-step {
    display: flex;
    align-items: center;
    gap: 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 20px 30px;
    width: 100%;
    max-width: 500px;
    transition: all 0.3s ease;
}

.formation-step.highlight {
    background: rgba(0, 229, 255, 0.1);
    border-color: #00e5ff;
    box-shadow: 0 0 20px rgba(0, 229, 255, 0.2);
}

.step-icon {
    font-size: 2rem;
}

.step-content h4 {
    color: #00e5ff;
    margin-bottom: 5px;
}

.formation-arrow {
    font-size: 1.5rem;
    color: #00e5ff;
}

/* --------------------------------------------------------------------------
   10. TIMELINE
   -------------------------------------------------------------------------- */
.summary-timeline {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin: 20px 0;
}

.timeline-item {
    display: flex;
    align-items: center;
    gap: 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 15px 20px;
    transition: all 0.3s ease;
}

.timeline-item:hover {
    background: rgba(0, 229, 255, 0.05);
    border-color: rgba(0, 229, 255, 0.3);
}

.timeline-number {
    width: 35px;
    height: 35px;
    background: linear-gradient(135deg, #00e5ff 0%, #e040fb 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.timeline-content {
    display: flex;
    align-items: center;
    gap: 15px;
}

.timeline-icon {
    font-size: 1.5rem;
}

/* --------------------------------------------------------------------------
   11. PROJECTOS GRID
   -------------------------------------------------------------------------- */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 20px 0;
}

.project-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 20px;
    transition: all 0.3s ease;
}

.project-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.project-card.kimen {
    border-color: rgba(0, 229, 255, 0.3);
}

.project-card.kimen:hover {
    border-color: #00e5ff;
    box-shadow: 0 10px 30px rgba(0, 229, 255, 0.2);
}

.project-card.dxip {
    border-color: rgba(224, 64, 251, 0.3);
}

.project-card.dxip:hover {
    border-color: #e040fb;
    box-shadow: 0 10px 30px rgba(224, 64, 251, 0.2);
}

.project-card.dmx {
    border-color: rgba(16, 185, 129, 0.3);
}

.project-card.dmx:hover {
    border-color: #10b981;
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.2);
}

.project-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.project-icon {
    font-size: 1.5rem;
}

.project-header h3 {
    color: #00e5ff;
    font-size: 1.2rem;
}

.project-desc {
    font-size: 0.9rem;
    opacity: 0.9;
    margin-bottom: 10px;
}

.project-features {
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 0.8rem;
}

.project-features li {
    padding: 4px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.project-features li:last-child {
    border-bottom: none;
}

/* --------------------------------------------------------------------------
   12. PARTICIPACIÓN DUAL
   -------------------------------------------------------------------------- */
.dual-participation {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin: 30px 0;
    flex-wrap: wrap;
}

.participation-card {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 25px;
    text-align: center;
    max-width: 280px;
    transition: all 0.3s ease;
}

.participation-card:hover {
    transform: translateY(-5px);
}

.participation-card.global {
    border-color: rgba(0, 229, 255, 0.5);
}

.participation-card.global:hover {
    border-color: #00e5ff;
    box-shadow: 0 10px 30px rgba(0, 229, 255, 0.2);
}

.participation-card.direct {
    border-color: rgba(224, 64, 251, 0.5);
}

.participation-card.direct:hover {
    border-color: #e040fb;
    box-shadow: 0 10px 30px rgba(224, 64, 251, 0.2);
}

.participation-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 15px;
}

.participation-header span {
    font-size: 2rem;
}

.participation-header h3 {
    color: #00e5ff;
    font-size: 1.3rem;
}

.participation-scope {
    font-size: 0.85rem;
    opacity: 0.8;
    margin-top: 10px;
}

.highlight-perpetual {
    color: #00e5ff;
    font-weight: 700;
}

.path-divider {
    font-size: 2rem;
    color: #00e5ff;
    font-weight: 700;
}

/* --------------------------------------------------------------------------
   13. PROCESO TIMELINE
   -------------------------------------------------------------------------- */
.process-timeline {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin: 30px 0;
    flex-wrap: wrap;
}

.process-phase {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 20px;
    text-align: center;
    min-width: 120px;
    transition: all 0.3s ease;
}

.process-phase:hover {
    transform: translateY(-3px);
}

.process-phase.highlight {
    background: rgba(0, 229, 255, 0.1);
    border-color: #00e5ff;
    box-shadow: 0 0 20px rgba(0, 229, 255, 0.2);
}

.phase-icon {
    font-size: 2rem;
}

.phase-content h4 {
    color: #00e5ff;
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.phase-content p {
    font-size: 0.75rem;
    opacity: 0.9;
}

.process-arrow {
    font-size: 1.5rem;
    color: #00e5ff;
}

.time-indicator {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    background: rgba(251, 191, 36, 0.1);
    border: 1px solid rgba(251, 191, 36, 0.3);
    border-radius: 30px;
    padding: 15px 30px;
    margin: 20px auto;
    max-width: 200px;
}

.time-icon {
    font-size: 1.5rem;
}

.time-text {
    font-size: 1.2rem;
    font-weight: 700;
    color: #fbbf24;
}

/* --------------------------------------------------------------------------
   14. MEANWHILE VISUAL
   -------------------------------------------------------------------------- */
.meanwhile-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin: 30px 0;
    flex-wrap: wrap;
}

.meanwhile-box {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    min-width: 150px;
}

.meanwhile-box.highlight {
    background: rgba(0, 229, 255, 0.1);
    border-color: #00e5ff;
    box-shadow: 0 0 30px rgba(0, 229, 255, 0.3);
}

.meanwhile-icon {
    font-size: 3rem;
    display: block;
    margin-bottom: 10px;
}

.meanwhile-box h4 {
    color: #00e5ff;
    margin-bottom: 5px;
}

.meanwhile-parallel {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.parallel-line {
    font-size: 1.5rem;
    color: #00e5ff;
}

.parallel-text {
    background: linear-gradient(135deg, #00e5ff 0%, #e040fb 100%);
    color: #fff;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
}

/* --------------------------------------------------------------------------
   15. REFERIDOS
   -------------------------------------------------------------------------- */
.referral-intro {
    margin: 20px 0;
}

.vigencia-box {
    display: flex;
    align-items: center;
    gap: 20px;
    background: rgba(0, 229, 255, 0.1);
    border: 2px solid rgba(0, 229, 255, 0.3);
    border-radius: 16px;
    padding: 25px;
}

.vigencia-icon {
    font-size: 2.5rem;
}

.vigencia-content h4 {
    color: #00e5ff;
    margin-bottom: 8px;
}

.vigencia-example {
    color: #00e5ff;
    font-weight: 700;
    margin-top: 5px;
}

.benefits-preview {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin: 20px 0;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 15px 20px;
    transition: all 0.3s ease;
}

.benefit-item:hover {
    background: rgba(0, 229, 255, 0.05);
    border-color: rgba(0, 229, 255, 0.3);
}

.benefit-number {
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, #00e5ff 0%, #e040fb 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.benefit-text {
    font-size: 0.95rem;
}

/* --------------------------------------------------------------------------
   16. VESTING REDUCTION
   -------------------------------------------------------------------------- */
.vesting-reduction {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin: 30px 0;
}

.vesting-base {
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 16px;
    padding: 20px 40px;
}

.vesting-days {
    font-size: 3rem;
    font-weight: 700;
    color: #fff;
    display: block;
}

.vesting-label {
    font-size: 1rem;
    opacity: 0.8;
}

.vesting-arrows {
    display: flex;
    gap: 30px;
}

.vesting-arrows span {
    font-size: 1.5rem;
    color: #00e5ff;
}

.vesting-levels {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.vesting-level {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 20px 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.vesting-level:hover {
    transform: translateY(-3px);
}

.vesting-level.highlight {
    background: rgba(0, 229, 255, 0.1);
    border-color: #00e5ff;
    box-shadow: 0 0 20px rgba(0, 229, 255, 0.2);
}

.level-referrals {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #00e5ff 0%, #e040fb 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin: 0 auto 10px;
}

.level-days {
    font-size: 1.3rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 5px;
}

.level-savings {
    font-size: 0.9rem;
    color: #10b981;
}

/* --------------------------------------------------------------------------
   17. BONUS VISUAL
   -------------------------------------------------------------------------- */
.bonus-visual {
    margin: 30px 0;
}

.bonus-flow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.bonus-person {
    text-align: center;
}

.bonus-person span {
    font-size: 3rem;
    display: block;
}

.bonus-person small {
    font-size: 0.9rem;
    font-weight: 700;
}

.bonus-person.you span {
    filter: drop-shadow(0 0 20px rgba(0, 229, 255, 0.5));
}

.bonus-connections {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.connection-level {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(0, 229, 255, 0.1);
    border: 1px solid rgba(0, 229, 255, 0.3);
    border-radius: 12px;
    padding: 15px 20px;
}

.connection-arrow {
    font-size: 1.2rem;
    color: #00e5ff;
}

.connection-label {
    font-size: 0.85rem;
    opacity: 0.9;
}

.connection-percent {
    background: linear-gradient(135deg, #00e5ff 0%, #e040fb 100%);
    color: #fff;
    padding: 5px 12px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.9rem;
}

.bonus-results {
    text-align: center;
}

.bonus-result span {
    font-size: 2.5rem;
    display: block;
}

.bonus-result small {
    font-size: 0.85rem;
    opacity: 0.9;
}

/* --------------------------------------------------------------------------
   18. RED PERSONAL
   -------------------------------------------------------------------------- */
.personal-net-visual {
    margin: 20px 0;
}

.net-structure {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

.net-level {
    display: flex;
    justify-content: center;
}

.net-branches {
    display: flex;
    gap: 60px;
}

.net-branch {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    margin: 5px 0;
    width: 100%;
}

.net-level-num {
    font-size: 0.9rem;
    font-weight: bold;
    color: #00e5ff;
    background: rgba(0, 229, 255, 0.1);
    padding: 4px 8px;
    border-radius: 12px;
    border: 1px solid rgba(0, 229, 255, 0.3);
}

.net-packs {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    justify-content: center;
    max-width: 100%;
    width: 100%;
}

.pack-item {
    font-size: 1.2rem;
    opacity: 0;
    transform: scale(0.5);
    transition: all 0.1s ease;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3));
}

.pack-item.your-pack {
    filter: drop-shadow(0 0 12px rgba(224, 64, 251, 1)) drop-shadow(0 0 8px rgba(224, 64, 251, 0.8));
    transform: scale(1.15);
}

.pack-item.visible {
    opacity: 1;
    transform: scale(1);
}

.net-sub {
    display: flex;
    gap: 20px;
}

.net-node {
    width: 50px;
    height: 50px;
    background: rgba(0, 229, 255, 0.2);
    border: 2px solid rgba(0, 229, 255, 0.5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
}

.net-node.you {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #00e5ff 0%, #e040fb 100%);
    border-color: #fff;
    font-size: 1rem;
    box-shadow: 0 0 30px rgba(0, 229, 255, 0.5);
}

.net-stats {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.stat-box {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 20px 30px;
    text-align: center;
    min-width: 120px;
}

.stat-box.highlight {
    background: rgba(0, 229, 255, 0.1);
    border-color: #00e5ff;
    box-shadow: 0 0 20px rgba(0, 229, 255, 0.2);
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: #00e5ff;
    display: block;
}

.stat-label {
    font-size: 0.85rem;
    opacity: 0.9;
}

/* --------------------------------------------------------------------------
   19. RED GLOBAL
   -------------------------------------------------------------------------- */
.global-net-visual {
    margin: 20px 0;
}

.global-structure {
    margin-bottom: 30px;
}

.global-levels {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
}

.glevel {
    display: flex;
    align-items: center;
    gap: 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 15px 25px;
    width: 100%;
    max-width: 500px;
}

.glevel-num {
    width: 35px;
    height: 35px;
    background: rgba(0, 229, 255, 0.2);
    border: 1px solid rgba(0, 229, 255, 0.5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.glevel-packs {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.pack-icon {
    font-size: 1.2rem;
}

.pack-icon.your-pack {
    filter: drop-shadow(0 0 10px rgba(224, 64, 251, 0.8));
    transform: scale(1.2);
}

.glevel-packs.many {
    font-size: 0.9rem;
    color: #00e5ff;
}

.glevel-dots {
    text-align: center;
    font-size: 1.5rem;
    color: #00e5ff;
    letter-spacing: 5px;
}

.global-stats {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.gstat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 20px 30px;
    min-width: 150px;
}

.gstat.highlight {
    background: rgba(0, 229, 255, 0.1);
    border-color: #00e5ff;
    box-shadow: 0 0 20px rgba(0, 229, 255, 0.2);
}

.gstat-icon {
    font-size: 2rem;
}

.gstat-value {
    font-size: 1.8rem;
    font-weight: 700;
    color: #00e5ff;
}

.gstat-label {
    font-size: 0.8rem;
    opacity: 0.9;
    text-align: center;
}

.strategy-tip {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    background: rgba(251, 191, 36, 0.1);
    border: 1px solid rgba(251, 191, 36, 0.3);
    border-radius: 16px;
    padding: 15px 25px;
    margin-top: 20px;
}

.tip-icon {
    font-size: 1.5rem;
}

/* --------------------------------------------------------------------------
   20. RESUMEN FINAL Y CTA
   -------------------------------------------------------------------------- */
.final-summary {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin: 30px 0;
    flex-wrap: wrap;
}

.summary-path {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 25px;
    min-width: 250px;
    max-width: 300px;
    transition: all 0.3s ease;
}

.summary-path:hover {
    transform: translateY(-5px);
}

.summary-path:first-child {
    border-color: rgba(0, 229, 255, 0.5);
}

.summary-path:first-child:hover {
    border-color: #00e5ff;
    box-shadow: 0 10px 30px rgba(0, 229, 255, 0.2);
}

.summary-path.optional {
    border-color: rgba(224, 64, 251, 0.5);
}

.summary-path.optional:hover {
    border-color: #e040fb;
    box-shadow: 0 10px 30px rgba(224, 64, 251, 0.2);
}

.path-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    position: relative;
}

.path-icon {
    font-size: 1.8rem;
}

.path-header h3 {
    color: #00e5ff;
    font-size: 1.1rem;
}

.optional-badge {
    position: absolute;
    top: -10px;
    right: -10px;
    background: linear-gradient(135deg, #e040fb 0%, #00e5ff 100%);
    color: #fff;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 0.65rem;
    font-weight: 700;
}

.path-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.path-features li {
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.path-features li:before {
    content: "✓";
    color: #00e5ff;
    font-weight: 700;
}

.cta-box {
    background: linear-gradient(135deg, rgba(0, 229, 255, 0.2) 0%, rgba(224, 64, 251, 0.2) 100%);
    border: 2px solid rgba(0, 229, 255, 0.5);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    margin-top: 30px;
}

.cta-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
}

.cta-sub {
    font-size: 1rem;
    opacity: 0.9;
    margin-bottom: 20px;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #00e5ff 0%, #e040fb 100%);
    color: #fff;
    text-decoration: none;
    padding: 15px 40px;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 229, 255, 0.4);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 30px rgba(0, 229, 255, 0.6);
}

/* --------------------------------------------------------------------------
   RESPONSIVE
   -------------------------------------------------------------------------- */
@media (max-width: 768px) {
    .vision-grid,
    .projects-grid {
        grid-template-columns: 1fr;
        gap: 12px;
        margin: 12px 0;
    }
    
    .vision-grid .vision-card {
        grid-column: 1 !important;
        max-width: 100% !important;
        padding: 15px;
    }
    
    .vision-card h3 {
        font-size: 1rem;
    }
    
    .vision-card p {
        font-size: 0.85rem;
    }
    
    .vision-icon {
        font-size: 2rem;
    }
    
    .dual-participation,
    .package-visual,
    .bonus-flow,
    .final-summary {
        flex-direction: column;
    }
    
    .benefits-preview {
        grid-template-columns: 1fr;
    }
    
    .vesting-levels {
        flex-direction: column;
    }
    
    .net-branches {
        flex-direction: column;
        gap: 20px;
    }
    
    .model-diagram {
        transform: scale(0.8);
    }
    
    .pool-visual {
        flex-direction: column;
    }
    
    .process-timeline {
        flex-direction: column;
    }
    
    .meanwhile-visual {
        flex-direction: column;
    }
    
    /* Slide 22: Red Global - scroll horizontal para net-packs */
    .global-structure {
        width: 100%;
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
        padding-bottom: 10px;
    }
    
    .global-structure::-webkit-scrollbar {
        display: none;
    }
    
    .global-net-visual .global-levels {
        align-items: center;
        width: max-content;
        margin: 0 auto;
        min-width: 100%;
    }
    
    .global-net-visual .net-packs {
        flex-wrap: nowrap;
        justify-content: center;
        min-width: max-content;
        padding: 0 10px;
    }
    
    .global-net-visual .net-branch {
        min-width: max-content;
        display: flex;
        justify-content: center;
    }
    
    .global-net-visual .pack-item {
        font-size: 1rem;
        flex-shrink: 0;
    }
}

/* --------------------------------------------------------------------------
   21. DISCLAIMER PROGRESIVO
   -------------------------------------------------------------------------- */
.disclaimer-full {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.disclaimer-step {
    background: rgba(239, 68, 68, 0.1);
    border: 2px solid rgba(239, 68, 68, 0.5);
    border-radius: 16px;
    padding: 25px;
    margin-bottom: 20px;
    font-size: 1.1rem;
    line-height: 1.6;
    animation: fadeInStep 0.5s ease;
}

.disclaimer-step.hidden {
    display: none;
}

@keyframes fadeInStep {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.disclaimer-next-btn {
    background: linear-gradient(135deg, #ef4444 0%, #fbbf24 100%);
    color: #fff;
    border: none;
    padding: 15px 40px;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 20px;
}

.disclaimer-next-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(239, 68, 68, 0.4);
}

/* --------------------------------------------------------------------------
   22. VIDEO CONTAINERS
   -------------------------------------------------------------------------- */
.video-container {
    position: relative;
    width: 100%;
    max-width: 800px;
    margin: 30px auto;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.video-caption {
    text-align: center;
    font-size: 1.2rem;
    margin-top: 20px;
    color: #fff;
}

/* --------------------------------------------------------------------------
   23. CLASE COMÚN BLUR-REVEAL (EFECTO DE BLUR CON REVELADO)
   -------------------------------------------------------------------------- */
.blur-reveal {
    opacity: 0.3;
    filter: grayscale(0.8);
    transition: all 0.4s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.blur-reveal:hover {
    opacity: 0.6;
    transform: translateY(-3px);
}

.blur-reveal.revealed {
    opacity: 1;
    filter: grayscale(0);
}

.blur-reveal.revealed:hover {
    transform: translateY(-5px);
}

/* --------------------------------------------------------------------------
   24. CARDS CLICKEABLES (USANDO CLASE COMÚN)
   -------------------------------------------------------------------------- */
/* Los estilos ahora son manejados por la clase .blur-reveal */

.vision-splash {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(31, 29, 37, 0.9);
    backdrop-filter: blur(90px);
    -webkit-backdrop-filter: blur(90px);
    transition: all 0.5s ease;
    z-index: 1;
    pointer-events: none;
}

.blur-reveal.revealed .vision-splash {
    opacity: 0;
    transform: scale(1.1);
}

/* Los estilos anteriores ahora son manejados por la clase .blur-reveal */

.click-hint {
    font-size: 0.9rem;
    color: #00e5ff;
    text-align: center;
    margin: 15px 0;
    font-style: italic;
}

/* --------------------------------------------------------------------------
   28. LI CLICKEABLES (FAST ACTIVE INFO)
   -------------------------------------------------------------------------- */
.fast-active-info li.clickable {
    opacity: 0.1;
    cursor: pointer;
    transition: all 0.4s ease;
    position: relative;
    margin: 8px 0;
    padding: 8px 12px;
    border-radius: 8px;
    background: rgba(0, 229, 255, 0.05);
    border-left: 3px solid rgba(0, 229, 255, 0.3);
}

.fast-active-info li.clickable:hover {
    opacity: 0.7;
    background: rgba(0, 229, 255, 0.1);
    border-left-color: rgba(0, 229, 255, 0.6);
    transform: translateX(5px);
}

.fast-active-info li.clickable.revealed {
    opacity: 1;
    background: rgba(0, 229, 255, 0.15);
    border-left-color: #00e5ff;
    transform: translateX(8px);
}

.fast-active-info li.clickable.revealed:hover {
    background: rgba(0, 229, 255, 0.2);
    transform: translateX(10px);
}

/* --------------------------------------------------------------------------
   24. TIMELINE CLICKEABLE
   -------------------------------------------------------------------------- */
.timeline-item.clickable {
    cursor: pointer;
    opacity: 0.7;
    transition: all 0.3s ease;
}

.timeline-item.clickable:hover {
    opacity: 0.9;
    background: rgba(0, 229, 255, 0.05);
}

.timeline-item.clickable.revealed {
    opacity: 1;
    background: rgba(0, 229, 255, 0.1);
    border-color: rgba(0, 229, 255, 0.3);
}

.timeline-item.clickable .timeline-content {
    opacity: 0;
    transition: opacity 0.4s ease;
}

.timeline-item.clickable.revealed .timeline-content {
    opacity: 1;
}

.timeline-item.clickable .timeline-number {
    transform: scale(1.2);
    transition: transform 0.3s ease;
}

.timeline-item.clickable.revealed .timeline-number {
    transform: scale(1);
}

/* --------------------------------------------------------------------------
   25. PROJECT CARDS CON FLECHAS E IMÁGENES
   -------------------------------------------------------------------------- */
.project-info-box {
    background: linear-gradient(135deg, rgba(0, 229, 255, 0.1) 0%, rgba(224, 64, 251, 0.1) 100%);
    border: 2px solid rgba(0, 229, 255, 0.3);
    border-radius: 16px;
    padding: 20px 25px;
    margin: 20px 0;
    text-align: center;
    font-size: 1.05rem;
}

.project-info-box strong {
    color: #00e5ff;
}

.project-arrow-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 15px;
}

.project-arrow {
    font-size: 2rem;
    color: #00e5ff;
    cursor: pointer;
    transition: all 0.3s ease;
    animation: arrowBounce 1.5s ease-in-out infinite;
}

@keyframes arrowBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(10px); }
}

.project-arrow:hover {
    color: #e040fb;
    transform: scale(1.2);
}

.project-token-image {
    width: 100px;
    height: 100px;
    object-fit: contain;
    margin-top: 10px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.5s ease;
}

.project-token-image.revealed {
    opacity: 1;
    transform: scale(1);
}

.project-card.clickable .project-header,
.project-card.clickable .project-desc,
.project-card.clickable .project-features {
    opacity: 0.5;
    transition: opacity 0.4s ease;
}

.project-card.clickable.revealed .project-header,
.project-card.clickable.revealed .project-desc,
.project-card.clickable.revealed .project-features {
    opacity: 1;
}

/* --------------------------------------------------------------------------
   26. CORRECCIÓN PAQUETES FAST ACTIVE / NORMAL
   -------------------------------------------------------------------------- */
.package-badge.normal {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
}

.package-badge.fast-active {
    background: #00e5ff;
    color: #0a0a1a;
}

/* --------------------------------------------------------------------------
   27. NAVEGACIÓN LATERAL Y PUNTOS
   -------------------------------------------------------------------------- */
.nav-btn-left,
.nav-btn-right {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.3);
    font-size: 2rem;
    cursor: pointer;
    z-index: 1000;
    padding: 20px 10px;
    transition: all 0.3s ease;
    opacity: 0;
}

.nav-btn-left {
    left: 20px;
}

.nav-btn-right {
    right: 20px;
}

.nav-btn-left:hover,
.nav-btn-right:hover {
    color: rgba(255, 255, 255, 0.8);
    background: rgba(255, 255, 255, 0.05);
    opacity: 1;
}

.presentation-container:hover .nav-btn-left,
.presentation-container:hover .nav-btn-right {
    opacity: 0.7;
}

.slide-dots-container {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 70px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 25px;
    box-sizing: border-box;
    z-index: 9999;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.6) 60%, transparent 100%);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(0, 229, 255, 0.3);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.5);
}

/* Secciones del footer */
.footer-section {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-left,
.footer-right {
    flex: 1;
}

.footer-right {
    justify-content: flex-end;
}

.footer-center {
    flex: 0 0 auto;
    gap: 16px;
}

.footer-label {
    font-size: 11px;
    font-weight: 600;
    color: rgba(0, 229, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 1px;
    user-select: none;
}

/* Botones de navegación del footer */
.footer-nav-btn {
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(0, 229, 255, 0.3);
    color: #00e5ff;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.25s ease;
    flex-shrink: 0;
}

.footer-nav-btn:hover:not(:disabled) {
    background: rgba(0, 229, 255, 0.15);
    border-color: #00e5ff;
    transform: scale(1.1);
    box-shadow: 0 0 12px rgba(0, 229, 255, 0.5);
}

.footer-nav-btn:disabled {
    opacity: 0.25;
    cursor: not-allowed;
    border-color: rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.3);
}

/* Botones de icono (reiniciar, pantalla completa) */
.footer-icon-btn {
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(0, 229, 255, 0.25);
    color: rgba(255, 255, 255, 0.85);
    width: 34px;
    height: 34px;
    border-radius: 8px;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.25s ease;
}

.footer-icon-btn:hover {
    background: rgba(0, 229, 255, 0.15);
    border-color: #00e5ff;
    color: #00e5ff;
    transform: translateY(-2px);
}

.footer-icon-btn.active {
    background: rgba(0, 229, 255, 0.2);
    border-color: #00e5ff;
    color: #00e5ff;
}

/* Switch / toggle */
.switch-control {
    position: relative;
    display: inline-block;
    width: 44px;
    height: 24px;
    cursor: pointer;
    flex-shrink: 0;
}

.switch-control input {
    opacity: 0;
    width: 0;
    height: 0;
}

.switch-slider {
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 24px;
    transition: all 0.3s ease;
}

.switch-slider::before {
    content: "";
    position: absolute;
    height: 16px;
    width: 16px;
    left: 3px;
    bottom: 3px;
    background: #fff;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.switch-control input:checked + .switch-slider {
    background: rgba(0, 229, 255, 0.35);
    border-color: #00e5ff;
    box-shadow: 0 0 10px rgba(0, 229, 255, 0.5);
}

.switch-control input:checked + .switch-slider::before {
    transform: translateX(20px);
    background: #00e5ff;
}


/* Botones manuales de audio */
.manual-audio-btns {
    display: flex;
    gap: 4px;
}

.manual-audio-btn {
    background: rgba(0, 229, 255, 0.15);
    border: 1px solid rgba(0, 229, 255, 0.4);
    color: #00e5ff;
    padding: 3px 10px;
    border-radius: 14px;
    font-size: 12px;
    cursor: pointer;
    transition: all 0.25s ease;
    white-space: nowrap;
}

.manual-audio-btn:hover {
    background: rgba(0, 229, 255, 0.3);
    box-shadow: 0 0 8px rgba(0, 229, 255, 0.4);
}

.manual-audio-btn.playing {
    background: rgba(0, 229, 255, 0.35);
    border-color: #00e5ff;
    box-shadow: 0 0 12px rgba(0, 229, 255, 0.6);
    animation: pulse-glow 1.2s ease-in-out infinite;
}

.manual-audio-btn.done {
    background: rgba(76, 175, 80, 0.25);
    border-color: rgba(76, 175, 80, 0.6);
    color: #81c784;
}

.manual-audio-btn.locked {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.3);
    cursor: not-allowed;
    opacity: 0.5;
}

.manual-audio-btn.locked::after {
    content: "🔒";
    font-size: 8px;
    margin-left: 2px;
    opacity: 0.6;
}

@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 0 8px rgba(0, 229, 255, 0.4); }
    50% { box-shadow: 0 0 18px rgba(0, 229, 255, 0.7); }
}

/* Botón Auto-Play / Pause */
.footer-autorun-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: rgba(255, 255, 255, 0.8);
    padding: 4px 14px;
    border-radius: 16px;
    font-size: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.footer-autorun-btn:hover {
    background: rgba(0, 229, 255, 0.2);
    border-color: rgba(0, 229, 255, 0.5);
    color: #00e5ff;
}

.footer-autorun-btn.active {
    background: rgba(0, 229, 255, 0.3);
    border-color: #00e5ff;
    color: #00e5ff;
    box-shadow: 0 0 12px rgba(0, 229, 255, 0.4);
}

.footer-autorun-btn.disabled {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.3);
    cursor: not-allowed;
    opacity: 0.5;
}

/* Botón cargar video secuencial en slide 7 */
.random-video-btn {
    background: rgba(0, 229, 255, 0.15);
    border: 1px solid rgba(0, 229, 255, 0.4);
    color: #00e5ff;
    padding: 6px 14px;
    border-radius: 16px;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 8px;
    display: inline-block;
}

.random-video-btn:hover {
    background: rgba(0, 229, 255, 0.3);
    border-color: #00e5ff;
    box-shadow: 0 0 12px rgba(0, 229, 255, 0.4);
}

/* Layout compacto para slide 6 - video y caption juntos */
.slide[data-slide="6"] .video-slide-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.slide[data-slide="6"] .video-container {
    margin: 0 auto;
    padding-bottom: 0;
    height: auto;
}

.slide[data-slide="6"] .video-container .presentation-video {
    max-height: 50vh;
}

.slide[data-slide="6"] .video-caption {
    margin-top: 8px;
    margin-bottom: 0;
}

/* Layout compacto para slide 7 - video, botón y caption juntos */
.slide[data-slide="7"] .video-slide-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.slide[data-slide="7"] .video-container {
    margin: 0 auto;
    padding-bottom: 0;
    height: auto;
}

.slide[data-slide="7"] .video-container .presentation-video {
    max-height: 50vh;
}

.slide[data-slide="7"] .video-caption {
    margin-top: 8px;
    margin-bottom: 0;
}

/* Indicador de número de slide (visible solo en mobile) */
.slide-number-indicator {
    display: none;
    min-width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #00e5ff;
    color: #000;
    font-size: 13px;
    font-weight: 700;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 10px rgba(0, 229, 255, 0.6);
}

/* Responsive: mobile - ocultar slide-dots, mostrar < # > */
@media (max-width: 768px) {
    .footer-label { display: none; }
    .footer-section { gap: 8px; }
    .slide-dots-container { padding: 0 12px; }
    .footer-autorun-btn { padding: 3px 10px; font-size: 11px; }
    
    /* Ocultar slide-dots en mobile */
    .slide-dots {
        display: none !important;
    }
    
    /* Mostrar indicador de número en mobile */
    .slide-number-indicator {
        display: flex;
    }
    
    /* Ajustar footer-center */
    .footer-center {
        gap: 8px;
    }
}

.slide-dots {
    display: flex;
    gap: 6px;
    padding: 8px 15px;
    background: rgba(0, 0, 0, 0.4);
    border-radius: 30px;
    border: 1px solid rgba(0, 229, 255, 0.2);
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    max-width: 200px;
}

.slide-dots::-webkit-scrollbar {
    display: none;
}

/* Efecto palpitante para guiar al usuario en modo MANUAL */
@keyframes pulse-hint {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(0, 229, 255, 0.7);
        transform: scale(1);
    }
    50% {
        box-shadow: 0 0 0 8px rgba(0, 229, 255, 0);
        transform: scale(1.05);
    }
}

.hint-pulse {
    animation: pulse-hint 1.5s ease-in-out infinite;
    border-color: #00e5ff !important;
    background: rgba(0, 229, 255, 0.2) !important;
}

.manual-audio-btn.hint-pulse {
    animation: pulse-hint 1.5s ease-in-out infinite;
}

.footer-nav-btn.hint-pulse,
.footer-icon-btn.hint-pulse {
    animation: pulse-hint 1.5s ease-in-out infinite;
}

.slide-number-btn {
    min-width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(0, 229, 255, 0.3);
    color: rgba(255, 255, 255, 0.7);
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    padding: 0;
    font-family: inherit;
}

.slide-number-btn:hover:not(.locked) {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(0, 229, 255, 0.6);
    color: #fff;
    transform: scale(1.1);
}

.slide-number-btn.active {
    background: #00e5ff;
    border-color: #00e5ff;
    color: #000;
    font-weight: 700;
    transform: scale(1.15);
    box-shadow: 0 0 15px rgba(0, 229, 255, 0.6), 0 0 30px rgba(0, 229, 255, 0.3);
}

.slide-number-btn.locked {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.3);
    cursor: not-allowed;
    pointer-events: none;
}

/* ==========================================================================
   SLIDE 0 - PORTADA COMUNIDAD MIZTON
   ========================================================================== */

.cover-slide {
    background: #001a33;
    overflow: hidden;
}

.cover-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 40px;
}

.cover-logo-img {
    max-width: 300px;
    max-height: 300px;
    width: auto;
    height: auto;
    filter: drop-shadow(0 0 30px rgba(0, 229, 255, 0.5));
    animation: logoGlow 3s ease-in-out infinite;
}

@keyframes logoGlow {
    0%, 100% { 
        filter: drop-shadow(0 0 30px rgba(0, 229, 255, 0.5));
        transform: scale(1);
    }
    50% { 
        filter: drop-shadow(0 0 50px rgba(224, 64, 251, 0.8));
        transform: scale(1.05);
    }
}

.cover-title {
    font-size: 4rem;
    font-weight: 700;
    text-align: center;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 4px;
    margin: 0;
    text-shadow: 
        0 0 20px rgba(0, 229, 255, 0.8),
        0 0 40px rgba(224, 64, 251, 0.6),
        0 0 60px rgba(0, 229, 255, 0.4);
    animation: titleNeon 2s ease-in-out infinite alternate;
}

@keyframes titleNeon {
    from {
        text-shadow: 
            0 0 20px rgba(0, 229, 255, 0.8),
            0 0 40px rgba(224, 64, 251, 0.6),
            0 0 60px rgba(0, 229, 255, 0.4);
    }
    to {
        text-shadow: 
            0 0 30px rgba(224, 64, 251, 0.9),
            0 0 50px rgba(0, 229, 255, 0.7),
            0 0 70px rgba(224, 64, 251, 0.5);
    }
}

/* ==========================================================================
   VIDEO SLIDES - REPRODUCCIÓN LIMPIA + CONTROLES AL FINALIZAR
   ========================================================================== */

.video-slide-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    min-height: 100%;
    padding-top: 40px;
}

.video-container {
    position: relative;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.presentation-video {
    width: 100%;
    height: auto;
    max-height: 60vh;
    object-fit: contain;
    background: #000;
    display: block;
}

/* Video sin controles inicialmente - controlado vía JS */
.presentation-video {
    cursor: pointer;
}

/* Overlay de mute/unmute - Posición superior para máxima visibilidad */
.video-mute-overlay {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.85);
    border-radius: 50px;
    padding: 14px 24px;
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 30;
    border: 2px solid rgba(0, 229, 255, 0.5);
    backdrop-filter: blur(8px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.video-mute-overlay:hover {
    background: rgba(0, 229, 255, 0.2);
    border-color: #00e5ff;
    transform: translateX(-50%) scale(1.05);
}

.video-mute-overlay .mute-icon {
    font-size: 24px;
    line-height: 1;
}

.video-mute-overlay .mute-text {
    color: #fff;
    font-size: 13px;
    font-weight: 500;
    white-space: nowrap;
}

/* Al finalizar, mostrar overlay de controles personalizados */
.video-ended-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s ease;
    z-index: 20;
}

.video-ended-overlay.visible {
    opacity: 1;
    visibility: visible;
}

.video-replay-btn {
    background: linear-gradient(135deg, #00e5ff 0%, #e040fb 100%);
    border: none;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 229, 255, 0.5);
}

.video-replay-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(0, 229, 255, 0.8);
}

.video-continue-btn {
    background: transparent;
    border: 2px solid #00e5ff;
    border-radius: 30px;
    padding: 12px 30px;
    color: #00e5ff;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.video-continue-btn:hover {
    background: rgba(0, 229, 255, 0.2);
    box-shadow: 0 0 20px rgba(0, 229, 255, 0.4);
}

/* Indicador de carga */
.video-loading {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #00e5ff;
    font-size: 1.2rem;
    z-index: 10;
}

/* Mensaje de audio reproduciéndose */
.audio-playing-indicator {
    position: fixed;
    bottom: 80px;
    right: 20px;
    background: rgba(0, 229, 255, 0.2);
    border: 1px solid #00e5ff;
    border-radius: 8px;
    padding: 10px 15px;
    color: #00e5ff;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
}

.audio-playing-indicator.visible {
    opacity: 1;
    visibility: visible;
}

.audio-playing-indicator::before {
    content: '🔊';
    animation: pulse 1s ease-in-out infinite;
}

/* Slide 7 - Overlay de carga mientras se reproduce audio intro */
.video-loading-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    z-index: 25;
}

.video-loading-overlay .loading-text {
    color: #00e5ff;
    font-size: 1.1rem;
    font-weight: 500;
    animation: pulse 1.5s ease-in-out infinite;
}

/* Fuente IntroRust para título de portada */
@font-face {
    font-family: 'IntroRust';
    src: url('IntroRust.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

.cover-title {
    font-family: 'IntroRust', sans-serif !important;
    margin: 0 auto;
}

/* Desktop: título limitado al 50% del ancho */
@media (min-width: 769px) {
    .cover-title {
        max-width: 50vw;
        font-size: clamp(2rem, 5vw, 4rem);
    }
}

/* Mobile: título a lo ancho con padding 30px */
@media (max-width: 768px) {
    .cover-title {
        font-size: 2.5rem;
        line-height: 1.1;
        word-break: break-word;
        padding: 0 30px;
        width: 100%;
        box-sizing: border-box;
    }
    .mobile-break::before {
        content: "\A";
        white-space: pre;
    }
}

/* Botón de preguntas - Emoji ❓ Verde Neón */
#question-btn {
    color: #39ff14;
    transition: all 0.3s ease;
    border-color: rgba(57, 255, 20, 0.4) !important;
    /* Cambiar emoji rojo a verde neón */
    filter: hue-rotate(90deg) brightness(1.1) saturate(1.5);
}

#question-btn:hover {
    color: #7fff00;
    border-color: #39ff14 !important;
    transform: scale(1.1);
    filter: hue-rotate(90deg) brightness(1.3) saturate(2);
}

/* Video de noticias - estilo específico */
.news-video {
    width: 100%;
    height: auto;
    max-height: 60vh;
    object-fit: contain;
    background: #000;
    display: block;
}

/* ==========================================================================
   MODAL DE PREGUNTAS - Neon Dark Theme
   ========================================================================== */

.question-modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    z-index: 99999;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.question-modal-overlay.active {
    display: flex;
}

.question-modal {
    background: linear-gradient(145deg, #0a1628 0%, #0d1f3c 50%, #081220 100%);
    border: 1px solid rgba(0, 229, 255, 0.3);
    border-radius: 16px;
    width: 100%;
    max-width: 520px;
    max-height: 85vh;
    display: flex;
    flex-direction: column;
    box-shadow: 0 0 40px rgba(0, 229, 255, 0.15), 0 20px 60px rgba(0, 0, 0, 0.5);
    animation: modalFadeIn 0.3s ease;
}

@keyframes modalFadeIn {
    from { opacity: 0; transform: scale(0.95) translateY(10px); }
    to { opacity: 1; transform: scale(1) translateY(0); }
}

.question-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 24px;
    border-bottom: 1px solid rgba(0, 229, 255, 0.15);
}

.question-modal-header h3 {
    margin: 0;
    color: #00e5ff;
    font-size: 1.35rem;
    font-weight: 600;
}

.question-modal-close {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.6);
    font-size: 2rem;
    cursor: pointer;
    padding: 0 8px;
    line-height: 1;
    transition: color 0.2s;
}

.question-modal-close:hover {
    color: #ff4444;
}

.question-modal-body {
    padding: 20px 24px;
    overflow-y: auto;
    flex: 1;
}

/* Lista de preguntas */
.question-list {
    max-height: 200px;
    overflow-y: auto;
    margin-bottom: 16px;
    scrollbar-width: thin;
    scrollbar-color: rgba(0, 229, 255, 0.3) transparent;
}

.question-list::-webkit-scrollbar {
    width: 4px;
}

.question-list::-webkit-scrollbar-thumb {
    background: rgba(0, 229, 255, 0.3);
    border-radius: 2px;
}

.question-empty {
    color: rgba(255, 255, 255, 0.4);
    text-align: center;
    font-style: italic;
    font-size: 1.05rem;
    padding: 12px 0;
}

.question-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 10px 12px;
    margin-bottom: 8px;
    background: rgba(0, 229, 255, 0.05);
    border: 1px solid rgba(0, 229, 255, 0.12);
    border-radius: 10px;
    transition: border-color 0.2s;
}

.question-item:hover {
    border-color: rgba(0, 229, 255, 0.3);
}

.question-item-text {
    flex: 1;
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.05rem;
    line-height: 1.4;
}

.question-item-meta {
    font-size: 0.9rem;
    color: rgba(0, 229, 255, 0.5);
    margin-top: 4px;
}

.question-item-delete {
    background: none;
    border: none;
    color: rgba(255, 100, 100, 0.6);
    cursor: pointer;
    font-size: 1.1rem;
    padding: 4px;
    transition: color 0.2s, transform 0.2s;
    flex-shrink: 0;
}

.question-item-delete:hover {
    color: #ff4444;
    transform: scale(1.2);
}

/* Formulario */
.question-form {
    margin-bottom: 16px;
}

.question-textarea {
    width: 100%;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(0, 229, 255, 0.25);
    border-radius: 10px;
    color: #fff;
    padding: 14px 16px;
    font-size: 1.1rem;
    font-family: inherit;
    resize: vertical;
    min-height: 80px;
    max-height: 140px;
    transition: border-color 0.3s, box-shadow 0.3s;
    box-sizing: border-box;
}

.question-textarea:focus {
    outline: none;
    border-color: #00e5ff;
    box-shadow: 0 0 15px rgba(0, 229, 255, 0.2);
}

.question-textarea::placeholder {
    color: rgba(255, 255, 255, 0.35);
    font-size: 1.05rem;
}

.question-submit-btn {
    width: 100%;
    margin-top: 10px;
    padding: 14px 20px;
    background: linear-gradient(135deg, rgba(0, 229, 255, 0.2), rgba(0, 229, 255, 0.1));
    border: 1px solid #00e5ff;
    border-radius: 10px;
    color: #00e5ff;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.question-submit-btn:hover {
    background: linear-gradient(135deg, rgba(0, 229, 255, 0.35), rgba(0, 229, 255, 0.2));
    box-shadow: 0 0 20px rgba(0, 229, 255, 0.3);
    transform: translateY(-1px);
}

.question-submit-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

/* WhatsApp section */
.question-whatsapp-section {
    padding-top: 12px;
    border-top: 1px solid rgba(0, 229, 255, 0.1);
}

.question-wa-toggle {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
}

.question-wa-toggle input[type="checkbox"] {
    width: 16px;
    height: 16px;
    accent-color: #00e5ff;
    flex-shrink: 0;
}

.question-wa-field {
    margin-top: 10px;
}

.question-wa-input {
    width: 100%;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(37, 211, 102, 0.3);
    border-radius: 8px;
    color: #fff;
    padding: 10px 14px;
    font-size: 0.9rem;
    font-family: inherit;
    transition: border-color 0.3s, box-shadow 0.3s;
    box-sizing: border-box;
}

.question-wa-input:focus {
    outline: none;
    border-color: #25d366;
    box-shadow: 0 0 10px rgba(37, 211, 102, 0.2);
}

.question-wa-input:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.question-wa-input::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

/* Footer del modal */
.question-modal-footer {
    padding: 14px 24px;
    border-top: 1px solid rgba(0, 229, 255, 0.1);
}

.question-modal-footer p {
    margin: 0;
    color: rgba(255, 255, 255, 0.45);
    font-size: 0.78rem;
    line-height: 1.5;
    text-align: center;
}

/* Texto del checkbox WhatsApp - tamaño aumentado */
.question-wa-text {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
}

/* Texto del footer - tamaño más grande */
.question-footer-text {
    font-size: 1rem !important;
    color: rgba(255, 255, 255, 0.6) !important;
    line-height: 1.6 !important;
}

/* Responsive modal */
@media (max-width: 768px) {
    .question-modal-overlay {
        padding: 10px;
        align-items: flex-end;
    }
    
    .question-modal {
        max-height: 90vh;
        border-radius: 16px 16px 0 0;
    }
}
