/* ============================================
   COMPONENTS.CSS - Componentes Reutilizables
   ============================================ */

/* Logo */
.logo-section {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-lila);
    border-radius: var(--border-radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.5rem;
    position: relative;
    overflow: hidden;
}

.logo-icon::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.3), transparent);
    transform: rotate(45deg);
    animation: shimmer 3s infinite;
}

.logo-text {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.2rem;
    line-height: 1.2;
}

.logo-text span {
    display: block;
    font-size: 0.75rem;
    color: var(--lila-light);
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* Botones */
.btn-primary {
    background: var(--gradient-lila);
    color: white;
    padding: 1rem 2.5rem;
    border-radius: var(--border-radius-xl);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    position: relative;
    overflow: hidden;
    font-family: inherit;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 40px rgba(124, 58, 237, 0.4);
}

.btn-secondary {
    background: transparent;
    color: white;
    padding: 1rem 2.5rem;
    border-radius: var(--border-radius-xl);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border: 2px solid rgba(124, 58, 237, 0.5);
    transition: all 0.3s ease;
    cursor: pointer;
    font-size: 1rem;
    font-family: inherit;
}

.btn-secondary:hover {
    background: rgba(124, 58, 237, 0.1);
    border-color: var(--lila-light);
    transform: translateY(-3px);
}

/* Cards base */
.card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(124, 58, 237, 0.1);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    transition: all 0.4s ease;
}

.card:hover {
    transform: translateY(-5px);
    border-color: rgba(124, 58, 237, 0.3);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

/* Progress bars */
.progress-bars {
    space-y: 1rem;
}

.progress-item {
    margin-bottom: 1rem;
}

.progress-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.progress-bar {
    height: 8px;
    background: rgba(255,255,255,0.1);
    border-radius: 4px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: var(--gradient-lila);
    border-radius: 4px;
    width: 0;
    transition: width 1.5s ease;
}

/* Nav actions helper */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

/* ============================================
   NEWS TICKER - Barra informativa de noticias
   ============================================ */

.news-ticker {
    background: linear-gradient(90deg, var(--lila-dark) 0%, var(--lila-primary) 100%);
    padding: 0.75rem 0;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid rgba(124, 58, 237, 0.3);
}

.ticker-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 5%;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.ticker-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(0, 0, 0, 0.3);
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius-sm);
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    white-space: nowrap;
    flex-shrink: 0;
    color: white;
}

.ticker-label i {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.ticker-wrapper {
    flex: 1;
    overflow: hidden;
    position: relative;
    mask-image: linear-gradient(90deg, transparent, black 5%, black 95%, transparent);
    -webkit-mask-image: linear-gradient(90deg, transparent, black 5%, black 95%, transparent);
}

.ticker-content {
    display: flex;
    align-items: center;
    gap: 2rem;
    white-space: nowrap;
    animation: ticker 40s linear infinite;
}

.ticker-content.paused {
    animation-play-state: paused;
}

@keyframes ticker {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.ticker-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.95);
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.ticker-item:hover {
    color: white;
    cursor: pointer;
}

.ticker-item i {
    color: var(--lila-pale);
    flex-shrink: 0;
}

.ticker-separator {
    color: rgba(255, 255, 255, 0.4);
    font-size: 1.2rem;
    line-height: 1;
}

.ticker-pause {
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.ticker-pause:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

/* Responsive */
@media (max-width: 768px) {
    .news-ticker {
        padding: 0.5rem 0;
    }
    
    .ticker-container {
        padding: 0 3%;
    }
    
    .ticker-label {
        font-size: 0.75rem;
        padding: 0.4rem 0.75rem;
    }
    
    .ticker-label span {
        display: none;
    }
    
    .ticker-item {
        font-size: 0.8rem;
    }
    
    .ticker-content {
        gap: 1.5rem;
        animation-duration: 30s;
    }
    
    .ticker-pause {
        width: 

.logo-icon {
    width: 50px;
    height: 50px;
    background-color: var(--lila-primary);
    background: var(--gradient-lila);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
}

.logo-icon::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.3), transparent);
    transform: rotate(45deg);
    animation: shimmer 3s infinite;
    z-index: 1;
}

/* ============================================
   LOGO FOOTER - Versión minimalista
   ============================================ */

.footer-logo-icon {
    width: 18px !important;
    height: 18px !important;
    background: var(--gradient-lila) !important;
    border-radius: 4px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    position: relative !important;
    overflow: hidden !important;
    vertical-align: middle !important;
    margin-right: 0.3rem !important;
}

.footer-logo-icon img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center !important;
    display: block !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    z-index: 2 !important;
}

/* Botón Social Instagram Mejorado */
.social-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.social-btn svg {
    width: 20px;
    height: 20px;
}

/* Instagram Button con gradiente */
.instagram-btn {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: white;
    border: 2px solid transparent;
}

.instagram-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(220, 39, 67, 0.4);
    filter: brightness(1.1);
}

.instagram-btn:active {
    transform: translateY(-1px) scale(1.02);
}

/* Contenedor de social links */
.social-links {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

