.about-hero {
    background-color: #050505;
    background-image: radial-gradient(circle at 50% 50%, #1a1a1a 0%, #050505 100%);
    padding: 120px 0;
    color: #fff;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 60px;
}

.hero-visual img {
    width: 100%;
    border-radius: 12px;
    filter: grayscale(30%) blur(5px); /* Inicia borrosa */
    transition: all 1.5s cubic-bezier(0.19, 1, 0.22, 1);
}

.hero-visual.loaded img {
    filter: grayscale(0%) blur(0px); /* Se enfoca al cargar */
    transform: scale(1.05);
}

/***************************************************/
.about-manifesto {
    padding: 100px 0;
    background: #ffffff;
    color: #1a1a1a;
}

.manifesto-grid {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 80px;
    align-items: start;
}

.lead {
    font-size: 1.5rem;
    color: #0088cc;
    font-weight: 600;
    margin-bottom: 20px;
}

.stat-box {
    border-left: 2px solid #0088cc;
    padding-left: 20px;
    margin-bottom: 40px;
}

.stat-box span {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: #000000;
}

/*****************************skill**********************/
.skills-section {
    padding: 100px 0;
    background: #0a0a0a;
    color: #e0e0e0;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
    font-size: 2.5rem;
    color: #fff;
}

.skills-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.skill-category h3 {
    color: #00ffcc;
    margin-bottom: 20px;
    border-bottom: 2px solid #00ffcc;
    padding-bottom: 10px;
}

.skill-category ul {
    list-style: none;
    padding: 0;
}

.skill-category ul li {
    padding: 8px 0;
    border-bottom: 1px solid #333;
}
/* Estado inicial oculto */
.skill-category {
    opacity: 0;
    transform: translateY(40px);
    filter: blur(10px);
    transition: all 0.8s cubic-bezier(0.19, 1, 0.22, 1);
}

/* Estado final visible */
.skill-category.is-visible {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0px);
}

/*******Equipi **************/
.team-section {
    padding: 100px 0;
    background-color: #ffffff;
    color: #1a1a1a;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr); /* 5 columnas para 5 miembros */
    gap: 20px;
    margin-top: 50px;
}

.team-member {
    text-align: center;
    padding: 20px;
    border: 1px solid #eeeeee;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.team-member img {
    width: 100%;
    border-radius: 50%;
    margin-bottom: 15px;
}

.team-member h3 {
    margin: 10px 0 5px;
    font-size: 1.2rem;
}

.team-member .role {
    display: block;
    color: #0088cc;
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 10px;
}
@media (max-width: 768px) {
    .team-grid { grid-template-columns: 1fr; }
}
/* Estado inicial: invisible y ligeramente desplazado hacia abajo */
.team-member {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease, box-shadow 0.3s ease;
}

/* Clase que aplicará el jQuery para mostrarlo */
.team-member.is-visible {
    opacity: 1;
    transform: translateY(0);
}