/* CSS PARA PÁGINAS ESPECÍFICAS - DISEÑO PROFESIONAL */

/* HERO DE PÁGINAS */
.page-hero {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--darker) 0%, var(--dark) 50%, var(--purple-dark) 100%);
    position: relative;
    overflow: hidden;
    margin-top: 80px;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 30% 30%, rgba(139, 92, 246, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(168, 85, 247, 0.2) 0%, transparent 50%);
    animation: heroGlow 8s ease-in-out infinite alternate;
}

.page-hero .hero-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.page-hero h1 {
    font-family: 'Orbitron', monospace;
    font-size: clamp(3rem, 8vw, 5rem);
    font-weight: 900;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--white) 0%, var(--accent) 50%, var(--primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* PÁGINAS ESPECÍFICAS */
.scripts-page, .exploits-page, .news-page, .videos-page, .about-page, .terms-page {
    padding: 2rem 0 5rem;
    min-height: 100vh;
}

/* FILTROS AVANZADOS */
.filter-section {
    margin-bottom: 4rem;
}

.filter-bar {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    background: rgba(30, 27, 75, 0.6);
    padding: 2rem;
    border-radius: 20px;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(139, 92, 246, 0.2);
    box-shadow: var(--shadow);
}

.filter-select, .search-input {
    padding: 1rem 1.5rem;
    background: rgba(15, 15, 35, 0.8);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 12px;
    color: var(--white);
    font-size: 1rem;
    outline: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    min-width: 200px;
}

.filter-select:focus, .search-input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 20px rgba(139, 92, 246, 0.3);
    transform: translateY(-2px);
}

.search-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.view-toggle {
    display: flex;
    gap: 0.5rem;
    background: rgba(15, 15, 35, 0.8);
    padding: 0.5rem;
    border-radius: 12px;
    border: 1px solid rgba(139, 92, 246, 0.3);
}

.view-btn {
    padding: 0.75rem 1rem;
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.6);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.view-btn.active, .view-btn:hover {
    background: var(--primary);
    color: var(--white);
    transform: scale(1.1);
}

/* ESTADÍSTICAS */
.scripts-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.stat-card {
    background: linear-gradient(145deg, rgba(30, 27, 75, 0.8), rgba(49, 46, 129, 0.6));
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(139, 92, 246, 0.2);
    backdrop-filter: blur(20px);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.stat-card:hover::before {
    opacity: 1;
}

.stat-card:hover {
    transform: translateY(-10px) scale(1.05);
    border-color: var(--primary);
    box-shadow: var(--shadow-lg);
}

.stat-number {
    font-family: 'Orbitron', monospace;
    font-size: 2.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--accent), var(--primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

/* GRID DE SCRIPTS/EXPLOITS */
.scripts-grid, .exploits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2.5rem;
    transition: all 0.4s ease;
}

.scripts-grid.list-view {
    grid-template-columns: 1fr;
}

.script-card, .exploit-card {
    background: linear-gradient(145deg, rgba(30, 27, 75, 0.8), rgba(49, 46, 129, 0.6));
    border-radius: 25px;
    overflow: hidden;
    border: 1px solid rgba(139, 92, 246, 0.2);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    backdrop-filter: blur(20px);
    box-shadow: var(--shadow);
}

.script-card::before, .exploit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(168, 85, 247, 0.05));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.script-card:hover::before, .exploit-card:hover::before {
    opacity: 1;
}

.script-card:hover, .exploit-card:hover {
    transform: translateY(-15px) scale(1.02);
    border-color: var(--primary);
    box-shadow: var(--shadow-lg);
}

.card-header {
    position: relative;
    overflow: hidden;
}

.card-header img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: all 0.4s ease;
}

.script-card:hover .card-header img, .exploit-card:hover .card-header img {
    transform: scale(1.1);
}

.card-badges {
    position: absolute;
    top: 1rem;
    right: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.badge {
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.badge.premium {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #000;
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

.badge.free {
    background: linear-gradient(135deg, var(--success), #059669);
    color: var(--white);
    box-shadow: 0 5px 15px rgba(16, 185, 129, 0.4);
}

.badge.updated {
    background: rgba(139, 92, 246, 0.8);
    color: var(--white);
    box-shadow: 0 5px 15px rgba(139, 92, 246, 0.4);
}

.card-content {
    padding: 2rem;
}

.card-content h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--white);
    line-height: 1.3;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    word-break: break-word;
}

.card-content p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
    line-height: 1.6;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    word-break: break-word;
}

.features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.feature-tag {
    padding: 0.3rem 0.8rem;
    background: rgba(139, 92, 246, 0.2);
    border: 1px solid rgba(139, 92, 246, 0.4);
    border-radius: 15px;
    font-size: 0.8rem;
    color: var(--accent);
    font-weight: 500;
    transition: all 0.3s ease;
}

.feature-tag:hover {
    background: rgba(139, 92, 246, 0.4);
    transform: scale(1.1);
}

.stats {
    display: flex;
    justify-content: space-between;
    margin-bottom: 2rem;
    padding: 1rem;
    background: rgba(15, 15, 35, 0.6);
    border-radius: 12px;
    border: 1px solid rgba(139, 92, 246, 0.2);
}

.stat {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.stat-icon {
    font-size: 1.1rem;
}

.stat-value {
    color: var(--accent);
    font-weight: 600;
}

.card-actions {
    display: flex;
    gap: 1rem;
}

.card-actions .btn {
    flex: 1;
    justify-content: center;
    padding: 1rem;
    font-size: 0.9rem;
}

/* GUÍA DE INSTALACIÓN */
.installation-guide {
    background: linear-gradient(135deg, rgba(30, 27, 75, 0.4), rgba(49, 46, 129, 0.2));
    padding: 5rem 0;
    margin-top: 5rem;
    border-top: 1px solid rgba(139, 92, 246, 0.3);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.step-card {
    background: linear-gradient(145deg, rgba(30, 27, 75, 0.8), rgba(49, 46, 129, 0.6));
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(139, 92, 246, 0.2);
    backdrop-filter: blur(20px);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.step-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.step-card:hover::before {
    opacity: 1;
}

.step-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: var(--shadow-lg);
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--white);
    margin: 0 auto 1.5rem;
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.4);
}

.step-content h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--white);
}

.step-content p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

/* EXPLOITS ESPECÍFICOS */
.exploit-info {
    background: rgba(15, 15, 35, 0.6);
    padding: 1rem;
    margin: 1rem 0;
    border-radius: 12px;
    border: 1px solid rgba(139, 92, 246, 0.2);
}

.info-item {
    margin-bottom: 0.5rem;
    color: rgba(255, 255, 255, 0.8);
}

.info-item strong {
    color: var(--accent);
}

.status-badge {
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    position: absolute;
    top: 1rem;
    right: 1rem;
}

.status-badge.actualizado {
    background: linear-gradient(135deg, var(--success), #059669);
    color: var(--white);
}

.status-badge.beta {
    background: linear-gradient(135deg, var(--warning), #D97706);
    color: var(--white);
}

.warning-banner {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.2), rgba(217, 119, 6, 0.1));
    border: 2px solid var(--warning);
    border-radius: 15px;
    padding: 1.5rem;
    margin-bottom: 3rem;
    text-align: center;
}

.warning-banner p {
    color: var(--white);
    font-weight: 600;
    font-size: 1.1rem;
}

/* CARGAR MÁS */
.load-more-section {
    text-align: center;
    margin-top: 4rem;
}

.load-more-btn {
    padding: 1.5rem 3rem;
    font-size: 1.1rem;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .page-hero {
        min-height: 40vh;
        margin-top: 70px;
    }
    
    .page-hero h1 {
        font-size: 2.5rem;
    }
    
    .filter-bar {
        flex-direction: column;
        gap: 1rem;
    }
    
    .filter-select, .search-input {
        width: 100%;
        min-width: auto;
    }
    
    .scripts-grid, .exploits-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .scripts-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .stat-card {
        padding: 1.5rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .card-actions {
        flex-direction: column;
    }
}


/* NOVEDADES */
.news-page {
    padding-top: 100px;
}

.featured-news {
    margin-bottom: 5rem;
}

.featured-article {
    background: linear-gradient(145deg, rgba(30, 27, 75, 0.8), rgba(49, 46, 129, 0.6));
    border-radius: 25px;
    overflow: hidden;
    border: 1px solid rgba(139, 92, 246, 0.3);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    transition: all 0.4s ease;
}

.featured-article:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.featured-article img {
    width: 100%;
    height: 100%;
    min-height: 400px;
    object-fit: cover;
}

.featured-content {
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.category {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: var(--white);
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.featured-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--white);
}

.date {
    color: var(--accent);
    font-weight: 600;
    margin-bottom: 1rem;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
}

.news-card {
    background: linear-gradient(145deg, rgba(30, 27, 75, 0.8), rgba(49, 46, 129, 0.6));
    border-radius: 25px;
    overflow: hidden;
    border: 1px solid rgba(139, 92, 246, 0.2);
    transition: all 0.4s ease;
}

.news-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: var(--shadow-lg);
}

.news-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: all 0.4s ease;
}

.news-card:hover img {
    transform: scale(1.1);
}

.news-content {
    padding: 2rem;
}

.news-content h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--white);
}

.excerpt {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.news-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}

.author {
    color: var(--accent);
    font-weight: 600;
}

.read-more {
    color: var(--accent);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.read-more:hover {
    color: var(--primary);
    transform: translateX(5px);
}

.newsletter {
    background: linear-gradient(145deg, rgba(30, 27, 75, 0.8), rgba(49, 46, 129, 0.6));
    border-radius: 25px;
    padding: 4rem;
    margin-top: 5rem;
    text-align: center;
    border: 1px solid rgba(139, 92, 246, 0.3);
}

.newsletter h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--accent), var(--primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    max-width: 600px;
    margin: 2rem auto 0;
}

.newsletter-form input {
    flex: 1;
    padding: 1rem 1.5rem;
    background: rgba(15, 15, 35, 0.8);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 12px;
    color: var(--white);
    font-size: 1rem;
    outline: none;
}

/* VIDEOS */
.videos-page {
    padding-top: 100px;
}

.video-categories {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.category-btn {
    padding: 0.75rem 1.5rem;
    background: rgba(30, 27, 75, 0.6);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 12px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.category-btn.active, .category-btn:hover {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: var(--white);
    border-color: var(--accent);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(139, 92, 246, 0.4);
}

.featured-video {
    background: linear-gradient(145deg, rgba(30, 27, 75, 0.8), rgba(49, 46, 129, 0.6));
    border-radius: 25px;
    overflow: hidden;
    border: 1px solid rgba(139, 92, 246, 0.3);
    margin-bottom: 4rem;
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 2rem;
}

.video-player {
    position: relative;
    overflow: hidden;
}

.video-player img {
    width: 100%;
    height: 100%;
    min-height: 400px;
    object-fit: cover;
}

.play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.play-overlay:hover {
    background: rgba(0, 0, 0, 0.7);
}

.play-btn-large {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--white);
    transition: all 0.3s ease;
}

.play-overlay:hover .play-btn-large {
    transform: scale(1.2);
    box-shadow: 0 0 40px rgba(139, 92, 246, 0.6);
}

.video-info {
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.video-info h2 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--white);
}

.video-stats {
    display: flex;
    gap: 2rem;
    margin-top: 1.5rem;
    color: rgba(255, 255, 255, 0.7);
}

.videos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.video-card {
    background: linear-gradient(145deg, rgba(30, 27, 75, 0.8), rgba(49, 46, 129, 0.6));
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(139, 92, 246, 0.2);
    transition: all 0.4s ease;
}

.video-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: var(--shadow-lg);
}

.video-thumbnail {
    position: relative;
    overflow: hidden;
}

.video-thumbnail img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: all 0.4s ease;
}

.video-card:hover .video-thumbnail img {
    transform: scale(1.1);
}

.video-duration {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.8);
    padding: 0.3rem 0.6rem;
    border-radius: 5px;
    font-size: 0.8rem;
    font-weight: 600;
}

.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--white);
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 0;
}

.video-card:hover .play-btn {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.2);
}

.video-card .video-info {
    padding: 1.5rem;
}

.video-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--white);
}

.video-meta {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
}

.video-upload {
    background: linear-gradient(145deg, rgba(30, 27, 75, 0.8), rgba(49, 46, 129, 0.6));
    border-radius: 25px;
    padding: 4rem;
    margin-top: 5rem;
    text-align: center;
    border: 1px solid rgba(139, 92, 246, 0.3);
}

.upload-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--accent), var(--primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* ACERCA DE */
.about-page {
    padding-top: 100px;
}

.hero-about {
    text-align: center;
    margin-bottom: 5rem;
}

.hero-about h1 {
    font-family: 'Orbitron', monospace;
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--white), var(--accent), var(--primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.mission-section {
    margin-bottom: 5rem;
}

.mission-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.mission-text h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--accent), var(--primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.mission-text p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.mission-content img {
    width: 100%;
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    border: 2px solid rgba(139, 92, 246, 0.3);
    box-shadow: var(--shadow);
    display: block;
    object-fit: cover;
}

.stats-section {
    margin-bottom: 5rem;
}

.stats-section h2 {
    text-align: center;
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 3rem;
    background: linear-gradient(135deg, var(--accent), var(--primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.team-section, .values-section {
    margin-bottom: 5rem;
}

.team-section h2, .values-section h2 {
    text-align: center;
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 3rem;
    background: linear-gradient(135deg, var(--accent), var(--primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.team-member {
    background: linear-gradient(145deg, rgba(30, 27, 75, 0.8), rgba(49, 46, 129, 0.6));
    border-radius: 25px;
    padding: 2.5rem;
    text-align: center;
    border: 1px solid rgba(139, 92, 246, 0.2);
    transition: all 0.4s ease;
}

.team-member:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: var(--shadow-lg);
}

.team-member img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 3px solid var(--primary);
    margin-bottom: 1.5rem;
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.4);
    object-fit: cover;
    object-position: center;
}

.team-member h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--white);
}

.role {
    color: var(--accent);
    font-weight: 600;
    margin-bottom: 1rem;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.value-card {
    background: linear-gradient(145deg, rgba(30, 27, 75, 0.8), rgba(49, 46, 129, 0.6));
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    border: 1px solid rgba(139, 92, 246, 0.2);
    transition: all 0.4s ease;
}

.value-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: var(--shadow-lg);
}

.value-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.value-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--white);
}

/* TIMELINE */
.timeline-section {
    margin-bottom: 5rem;
}

.timeline-section h2 {
    text-align: center;
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 3rem;
    background: linear-gradient(135deg, var(--accent), var(--primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.timeline {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--primary), var(--secondary));
    border-radius: 2px;
}

.timeline-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
    position: relative;
}

.timeline-item:nth-child(even) .timeline-year {
    order: 2;
}

.timeline-item:nth-child(even) .timeline-content {
    order: 1;
    text-align: right;
}

.timeline-year {
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Orbitron', monospace;
    font-size: 3rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
}

.timeline-year::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 50%;
    box-shadow: 0 0 20px rgba(139, 92, 246, 0.6);
}

.timeline-item:nth-child(odd) .timeline-year::after {
    right: -62px;
}

.timeline-item:nth-child(even) .timeline-year::after {
    left: -62px;
}

.timeline-content {
    background: linear-gradient(145deg, rgba(30, 27, 75, 0.8), rgba(49, 46, 129, 0.6));
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(139, 92, 246, 0.3);
    transition: all 0.4s ease;
}

.timeline-content:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: var(--shadow-lg);
}

.timeline-content h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--white);
}

.timeline-content p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

/* CONTACTO */
.contact-section {
    margin-bottom: 5rem;
}

.contact-section h2 {
    text-align: center;
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 3rem;
    background: linear-gradient(135deg, var(--accent), var(--primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-info {
    background: linear-gradient(145deg, rgba(30, 27, 75, 0.8), rgba(49, 46, 129, 0.6));
    border-radius: 25px;
    padding: 3rem;
    border: 1px solid rgba(139, 92, 246, 0.3);
}

.contact-info h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--white);
}

.contact-item {
    padding: 1.5rem;
    background: rgba(15, 15, 35, 0.6);
    border-radius: 15px;
    margin-bottom: 1rem;
    border: 1px solid rgba(139, 92, 246, 0.2);
    transition: all 0.3s ease;
}

.contact-item:hover {
    background: rgba(139, 92, 246, 0.15);
    transform: translateX(10px);
}

.contact-item strong {
    color: var(--accent);
    display: block;
    margin-bottom: 0.5rem;
}

.contact-form {
    background: linear-gradient(145deg, rgba(30, 27, 75, 0.8), rgba(49, 46, 129, 0.6));
    border-radius: 25px;
    padding: 3rem;
    border: 1px solid rgba(139, 92, 246, 0.3);
}

.contact-form h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--white);
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 1rem 1.5rem;
    background: rgba(15, 15, 35, 0.8);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 12px;
    color: var(--white);
    font-size: 1rem;
    margin-bottom: 1.5rem;
    outline: none;
    transition: all 0.3s ease;
    font-family: inherit;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 20px rgba(139, 92, 246, 0.3);
}

.contact-form textarea {
    resize: vertical;
    min-height: 150px;
}

.contact-form button {
    width: 100%;
    padding: 1.25rem;
    font-size: 1.1rem;
}

/* TÉRMINOS */
.terms-page {
    padding-top: 100px;
}

.terms-header {
    text-align: center;
    margin-bottom: 4rem;
}

.terms-header h1 {
    font-family: 'Orbitron', monospace;
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--white), var(--accent), var(--primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.last-updated {
    color: var(--accent);
    font-weight: 600;
}

.terms-content {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 3rem;
}

.terms-nav {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.terms-nav ul {
    list-style: none;
    background: linear-gradient(145deg, rgba(30, 27, 75, 0.8), rgba(49, 46, 129, 0.6));
    border-radius: 20px;
    padding: 1.5rem;
    border: 1px solid rgba(139, 92, 246, 0.2);
}

.terms-nav li {
    margin-bottom: 0.75rem;
}

.terms-nav a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    display: block;
    padding: 0.5rem;
    border-radius: 8px;
}

.terms-nav a:hover, .terms-nav a.active {
    color: var(--accent);
    background: rgba(139, 92, 246, 0.15);
    transform: translateX(5px);
}

.terms-text {
    background: linear-gradient(145deg, rgba(30, 27, 75, 0.8), rgba(49, 46, 129, 0.6));
    border-radius: 25px;
    padding: 3rem;
    border: 1px solid rgba(139, 92, 246, 0.2);
}

.term-section {
    margin-bottom: 3rem;
}

.term-section h2 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.term-section h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 1.5rem 0 1rem;
    color: var(--accent);
}

.term-section p, .term-section li {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.term-section ul {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

.warning-box, .disclaimer-box {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.2), rgba(217, 119, 6, 0.1));
    border: 2px solid var(--warning);
    border-radius: 15px;
    padding: 2rem;
    margin: 2rem 0;
}

.warning-box h3, .disclaimer-box h3 {
    color: var(--warning);
    margin-bottom: 1rem;
}

.acceptance-section {
    margin-top: 4rem;
}

.acceptance-box {
    background: linear-gradient(145deg, rgba(30, 27, 75, 0.8), rgba(49, 46, 129, 0.6));
    border-radius: 25px;
    padding: 3rem;
    text-align: center;
    border: 2px solid var(--primary);
}

.acceptance-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 2rem;
}

/* RESPONSIVE ADICIONAL */
@media (max-width: 768px) {
    .featured-article, .featured-video, .mission-content {
        grid-template-columns: 1fr;
    }
    
    .terms-content {
        grid-template-columns: 1fr;
    }
    
    .terms-nav {
        position: static;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .acceptance-buttons {
        flex-direction: column;
    }
    
    .timeline::before {
        left: 20px;
    }
    
    .timeline-item {
        grid-template-columns: 1fr;
        padding-left: 50px;
    }
    
    .timeline-item:nth-child(even) .timeline-year,
    .timeline-item:nth-child(even) .timeline-content {
        order: initial;
    }
    
    .timeline-item:nth-child(even) .timeline-content {
        text-align: left;
    }
    
    .timeline-year {
        justify-content: flex-start;
        font-size: 2rem;
    }
    
    .timeline-year::after {
        left: -42px !important;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
}
