/* Estilos para la sección hero */
.about-hero {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

/* Timeline */
.timeline {
    position: relative;
    padding-left: 30px;
}

.timeline-item {
    position: relative;
    padding-bottom: 20px;
}

.timeline-badge {
    position: absolute;
    left: -30px;
    top: 0;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #ddd;
}

.timeline-content {
    padding: 10px 15px;
    background: white;
    border-radius: 5px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

/* Equipo */
.about-team .card {
    background: rgba(255, 255, 255, 0.1);
    transition: transform 0.3s;
}

.about-team .card:hover {
    transform: translateY(-10px);
}

/* Responsive */
@media (max-width: 768px) {
    .about-hero .display-4 {
        font-size: 2.5rem;
    }

    .about-stats .display-4 {
        font-size: 2rem;
    }
}

/* Estilos para los iconos */
.icon-wrapper {
    width: 60px;
    height: 60px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(13, 110, 253, 0.1);
    border-radius: 50%;
    margin: 0 auto;
}

/* Asegurar que los iconos tengan tamaño consistente */
.icon-wrapper box-icon {
    width: 24px;
    height: 24px;
}